@f5i23q999d/cow-sdk
Version:
<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>
54 lines • 1.42 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.base = void 0;
const types_1 = require("../types.js");
const tokens_1 = require("../../common/consts/tokens.js");
const path_1 = require("../const/path.js");
const baseLogo = `${path_1.RAW_CHAINS_FILES_PATH}/images/base-logo.svg`;
/**
* Base chain info.
*
* See also https://github.com/wevm/viem/blob/main/src/chains/definitions/base.ts
*/
exports.base = {
id: types_1.SupportedChainId.BASE,
label: 'Base',
nativeCurrency: {
...tokens_1.nativeCurrencyTemplate,
chainId: types_1.SupportedChainId.BASE,
},
addressPrefix: 'base',
isTestnet: false,
contracts: {
multicall3: {
address: '0xca11bde05977b3631167028862be2a173976ca11',
blockCreated: 5022,
},
},
rpcUrls: {
default: {
http: ['https://mainnet.base.org'],
},
},
color: '#0052FF',
logo: { light: baseLogo, dark: baseLogo },
website: {
name: 'Base',
url: 'https://base.org',
},
docs: {
name: 'Base Docs',
url: 'https://docs.base.org',
},
blockExplorer: {
name: 'BaseScan',
url: 'https://basescan.org',
},
bridges: [
{
name: 'Superchain Bridges',
url: 'https://bridge.base.org/deposit',
},
],
};
//# sourceMappingURL=base.js.map