fix: fixed metamask snap (#467)

This commit is contained in:
Linkie Link 2023-09-13 20:27:43 +02:00 committed by GitHub
parent 433fa717a0
commit 976d76a7f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 14 deletions

View File

@ -10,10 +10,6 @@ export const CHAINS: ChainInfos = {
explorerName: 'Mintscan',
chainId: ChainInfoID.Osmosis1,
name: 'Osmosis',
bip44: {
coinType: 118,
},
alternativeBIP44s: [{ coinType: 330 }],
gasPrice: '0.025uosmo',
bech32Config: Bech32Address.defaultBech32Config('osmo'),
defaultCurrency: {
@ -36,10 +32,6 @@ export const CHAINS: ChainInfos = {
explorerName: 'Mintscan',
chainId: ChainInfoID.OsmosisDevnet,
name: 'Osmosis Devnet',
bip44: {
coinType: 118,
},
alternativeBIP44s: [{ coinType: 330 }],
gasPrice: '0.025uosmo',
bech32Config: Bech32Address.defaultBech32Config('osmo'),
defaultCurrency: {
@ -62,10 +54,6 @@ export const CHAINS: ChainInfos = {
explorerName: 'Mintscan',
chainId: ChainInfoID.OsmosisTestnet,
name: 'Osmosis Testnet',
bip44: {
coinType: 118,
},
alternativeBIP44s: [{ coinType: 330 }],
gasPrice: '0.025uosmo',
bech32Config: Bech32Address.defaultBech32Config('osmo'),
defaultCurrency: {

View File

@ -51,7 +51,7 @@ export const WALLETS: WalletInfos = {
install: 'Install MetaMask',
installURL: 'https://metamask.io/download/',
imageURL: '/images/wallets/leap-snap.png',
supportedChains: [ChainInfoID.Osmosis1],
supportedChains: [ChainInfoID.Osmosis1, ChainInfoID.OsmosisDevnet],
},
[WalletID.Station]: {
name: 'Station Wallet',

View File

@ -16,7 +16,6 @@ type Network = import('@delphi-labs/shuttle-react').Network
interface ChainInfo extends Network {
explorer: string
explorerName: string
alternativeBIP44s: BIP44[]
}
interface WalletClient {