2022-09-29 19:21:31 +00:00
|
|
|
export const chainsInfo = {
|
|
|
|
Injective: {
|
|
|
|
chainId: 'injective-1',
|
|
|
|
rpc: 'https://tm.injective.network',
|
|
|
|
rest: 'https://lcd.injective.network',
|
|
|
|
stakeCurrency: {
|
|
|
|
coinDenom: 'INJ',
|
|
|
|
coinMinimalDenom: 'inj',
|
|
|
|
coinDecimals: 18,
|
|
|
|
coinGeckoId: 'injective-protocol',
|
|
|
|
coinImageUrl: '/tokens/injective.svg',
|
|
|
|
},
|
|
|
|
// works
|
|
|
|
// rest: "https://lcd.injective.network",
|
|
|
|
},
|
|
|
|
InjectiveTestnet: {
|
|
|
|
chainId: 'injective-888',
|
|
|
|
// need to check
|
|
|
|
rpc: 'https://testnet.tm.injective.dev',
|
|
|
|
rest: 'https://testnet.lcd.injective.dev',
|
|
|
|
stakeCurrency: {
|
|
|
|
coinDenom: 'INJ',
|
|
|
|
coinMinimalDenom: 'inj',
|
|
|
|
coinDecimals: 18,
|
|
|
|
coinGeckoId: 'injective-protocol',
|
|
|
|
coinImageUrl: '/tokens/injective.svg',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Osmosis: {
|
|
|
|
chainId: 'osmosis-1',
|
|
|
|
rpc: 'https://rpc.osmosis.zone',
|
|
|
|
rest: 'https://lcd.osmosis.zone',
|
|
|
|
stakeCurrency: {
|
|
|
|
coinDenom: 'OSMO',
|
|
|
|
coinMinimalDenom: 'uosmo',
|
|
|
|
coinDecimals: 6,
|
|
|
|
coinGeckoId: 'osmosis',
|
|
|
|
coinImageUrl: '/tokens/osmo.svg',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
OsmosisTestnet: {
|
|
|
|
chainId: 'osmo-test-4',
|
2022-10-12 15:41:03 +00:00
|
|
|
rpc: 'https://osmosis-delphi-testnet-1.simply-vc.com.mt/XF32UOOU55CX/osmosis-rpc',
|
|
|
|
rest: 'https://osmosis-delphi-testnet-1.simply-vc.com.mt/XF32UOOU55CX/osmosis-lcd',
|
2022-10-24 15:15:26 +00:00
|
|
|
hive: 'https://osmosis-delphi-testnet-1.simply-vc.com.mt/XF32UOOU55CX/osmosis-hive/graphql',
|
2022-09-29 19:21:31 +00:00
|
|
|
stakeCurrency: {
|
|
|
|
coinDenom: 'OSMO',
|
|
|
|
coinMinimalDenom: 'uosmo',
|
|
|
|
coinDecimals: 6,
|
|
|
|
coinGeckoId: 'osmosis',
|
|
|
|
coinImageUrl: '/tokens/osmo.svg',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export const chain = chainsInfo.OsmosisTestnet
|