@pontem/coins-registry
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -35,2 +35,17 @@ export type CoinSource = | ||
export type StakingPool = { | ||
address: string; | ||
pool: { | ||
coinX: string; | ||
coinY: string; | ||
curve: string; | ||
networkId: number; | ||
}; | ||
reward: string; | ||
order?: number; | ||
nftInfo?: { | ||
url: string; | ||
}; | ||
}; | ||
export type NetworkType = 'mainnet' | 'testnet'; | ||
@@ -41,5 +56,7 @@ | ||
pools: Pool[]; | ||
staking: Staking[]; | ||
getCoinsFor: (NetworkType) => Coin[]; | ||
getPoolsFor: (NetworkType) => Pool[]; | ||
getStakingPoolsFor: (NetworkType) => StakingPool[]; | ||
}; | ||
@@ -46,0 +63,0 @@ |
{ | ||
"name": "@pontem/coins-registry", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Liquidswap coins & pools registry", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
933031
713