Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding imversed testnet assets and pools to osmosis testnet frontend #391

Merged
merged 5 commits into from
Apr 19, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -822,6 +822,12 @@ export const IBCAssetInfos: {
destChannelId: 'channel-0',
coinMinimalDenom: 'usaage',
},
{
counterpartyChainId: 'imversed-test-1',
sourceChannelId: 'channel-221',
destChannelId: 'channel-1',
coinMinimalDenom: 'nimv',
},
{
counterpartyChainId: 'sentinelhub-2',
sourceChannelId: 'channel-2',
Expand Down Expand Up @@ -1376,6 +1382,47 @@ export const EmbedChainInfos: ChainInfoWithExplorer[] = [
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
explorerUrlToTx: 'http://blockexplorer-1.testnet.saage.io/transactions/{txHash}',
},

{
rpc: 'https://tx-endpoint-test.imversed.com:443',
rest: 'https://query-endpoint-test.imversed.com:443',
chainId: 'imversed-test-1',
chainName: 'imversedtestnet',
stakeCurrency: {
coinDenom: 'IMV',
coinMinimalDenom: 'nimv',
coinDecimals: 6,
coinImageUrl: window.location.origin + '/public/assets/tokens/imversed.png',
JeremyParish69 marked this conversation as resolved.
Show resolved Hide resolved
coinGeckoId: 'imversedtest',
},
bip44: { coinType: 118 },
bech32Config: Bech32Address.defaultBech32Config('imv'),
JeremyParish69 marked this conversation as resolved.
Show resolved Hide resolved
currencies: [
{
coinDenom: 'IMV',
coinMinimalDenom: 'nimv',
coinDecimals: 6,
coinImageUrl: window.location.origin + '/public/assets/tokens/imversed.png',
coinGeckoId: 'imversedtest',
JeremyParish69 marked this conversation as resolved.
Show resolved Hide resolved
},
],
feeCurrencies: [
{
coinDenom: 'IMV',
coinMinimalDenom: 'nimv',
coinDecimals: 6,
coinImageUrl: window.location.origin + '/public/assets/tokens/imversed.png',
coinGeckoId: 'imversedtest',
},
],
gasPriceStep: {
low: 0.00025,
average: 0.0025,
high: 0.025,
},
features: ['stargate', 'ibc-transfer', 'no-legacy-stdTx', 'ibc-go'],
explorerUrlToTx: 'https://tex-t.imversed.com/transactions/${txHash}',
JeremyParish69 marked this conversation as resolved.
Show resolved Hide resolved
},
{
rpc: 'https://rpc-sentinel.keplr.app',
rest: 'https://lcd-sentinel.keplr.app',
Expand Down
7 changes: 7 additions & 0 deletions src/stores/root.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,13 @@ export class RootStore {
spotPriceDestDenom: 'uosmo',
destCoinId: 'osmosis',
},
{
alternativeCoinId: 'pool:nimv',
poolId: '650',
spotPriceSourceDenom: DenomHelper.ibcDenom([{ portId: 'transfer', channelId: 'channel-221' }], 'nimv'),
spotPriceDestDenom: 'uosmo',
destCoinId: 'osmosis',
},
]
);

Expand Down