caip-api
Version:
CAIP Blockchain API and JSON-RPC Config
92 lines • 2.39 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ETH = {
symbol: 'ETH',
name: 'Ether',
decimals: '18',
};
exports.xDAI = {
symbol: 'xDAI',
name: 'xDAI',
decimals: '18',
};
exports.MATIC = {
symbol: 'MATIC',
name: 'Matic',
decimals: '18',
};
exports.EIP155Config = {
'1': {
name: 'Ethereum Mainnet',
chainId: 'eip155:1',
rpcUrl: 'api.mycryptoapi.com/eth',
testNet: false,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.ETH,
},
'5': {
name: 'Ethereum Goerli',
chainId: 'eip155:5',
rpcUrl: 'rpc.goerli.mudit.blog',
testNet: true,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.ETH,
},
'10': {
name: 'Optimism Mainnet',
chainId: 'eip155:10',
rpcUrl: 'mainnet.optimism.io',
testNet: false,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.ETH,
},
'69': {
name: 'Optimism Kovan',
chainId: 'eip155:69',
rpcUrl: 'kovan.optimism.io',
testNet: true,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.ETH,
},
'100': {
name: 'xDAI',
chainId: 'eip155:100',
rpcUrl: 'dai.poa.network',
testNet: false,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.xDAI,
},
'137': {
name: 'Matic Mainnet',
chainId: 'eip155:137',
rpcUrl: 'rpc-mainnet.matic.network',
testNet: false,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.MATIC,
},
'420': {
name: 'Optimism Goerli',
chainId: 'eip155:420',
rpcUrl: 'goerli.optimism.io',
testNet: true,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.ETH,
},
'80001': {
name: 'Matic Mumbai',
chainId: 'eip155:80001',
rpcUrl: 'rpc-mumbai.matic.today',
testNet: true,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.MATIC,
},
'79377087078960': {
name: 'Arbitrum Kovan',
chainId: 'eip155:79377087078960',
rpcUrl: 'kovan3.arbitrum.io/rpc',
testNet: true,
derivationPath: "m/44'/60'/0'/0",
nativeAsset: exports.ETH,
},
};
//# sourceMappingURL=eip155.js.map