UNPKG

@f5i23q999d/cow-sdk

Version:

<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>

55 lines 1.63 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.arbitrumOne = void 0; const types_1 = require("../types.js"); const tokens_1 = require("../../common/consts/tokens.js"); const path_1 = require("../const/path.js"); const arbitrumOneLogoLight = `${path_1.RAW_CHAINS_FILES_PATH}/images/arbitrum-one-logo-light.svg`; const arbitrumOneLogoDark = `${path_1.RAW_CHAINS_FILES_PATH}/images/arbitrum-one-logo-dark.svg`; /** * Arbitrum chain info. * * See also https://github.com/wevm/viem/blob/main/src/chains/definitions/arbitrum.ts */ exports.arbitrumOne = { id: types_1.SupportedChainId.ARBITRUM_ONE, label: 'Arbitrum One', nativeCurrency: { ...tokens_1.nativeCurrencyTemplate, chainId: types_1.SupportedChainId.ARBITRUM_ONE, }, addressPrefix: 'arb1', isTestnet: false, contracts: { multicall3: { address: '0xca11bde05977b3631167028862be2a173976ca11', blockCreated: 7654707, }, }, rpcUrls: { default: { http: ['https://arb1.arbitrum.io/rpc'], }, }, color: '#1B4ADD', logo: { light: arbitrumOneLogoLight, dark: arbitrumOneLogoDark }, website: { name: 'Arbitrum', url: 'https://arbitrum.io', }, docs: { name: 'Arbitrum Docs', url: 'https://docs.arbitrum.io', }, blockExplorer: { name: 'Arbiscan', url: 'https://arbiscan.io', }, bridges: [ { name: 'Arbitrum Bridge', url: 'https://bridge.arbitrum.io', }, ], }; //# sourceMappingURL=arbitrum.js.map