UNPKG

@swingby-protocol/sdk

Version:

An implementation of the Swingby standard development kit for NodeJS and JavaScript.

79 lines (77 loc) 1.89 kB
import { ABI_SKYBRIDGE, ABI_SKYBRIDGE_V2, ABI_TOKEN } from './abis'; export const CONTRACTS = { coins: { BTC: { test: { address: '0x0000000000000000000000000000000000000000', abi: [], }, production: { address: '0x0000000000000000000000000000000000000000', abi: [], }, }, sbBTC: { test: { address: '0x179d9a39841cf3ad6a69648b6e45b11158fde79d', abi: ABI_TOKEN, }, production: { address: '0x22883a3dB06737eCe21F479A8009B8B9f22b6cC9', abi: ABI_TOKEN, }, }, WBTC: { test: { address: '0x7cb2eac36b4bb7c36640f32e806d33e474d1d427', abi: ABI_TOKEN, }, production: { address: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599', abi: ABI_TOKEN, }, }, 'sbBTC.BEP20': { test: { address: '0x89B16adb7A48a3A7b69f3C741baFCe7D00f98794', abi: ABI_TOKEN, }, production: { address: '0xdBa68BeF9b541999Fd9650FF72C19d5E1ceeCd10', abi: ABI_TOKEN, }, }, 'BTCB.BEP20': { test: { address: '0xa88921dc290f888b5ee574cf2cd1599f412f1534', abi: ABI_TOKEN, }, production: { address: '0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c', abi: ABI_TOKEN, }, }, }, bridges: { btc_erc: { test: { address: '0x7dfbf7E38F188Da1BD337A128ce7A5D758957621', abi: ABI_SKYBRIDGE_V2, }, production: { address: '0xbe83f11d3900F3a13d8D12fB62F5e85646cDA45e', abi: ABI_SKYBRIDGE, }, }, btc_bep20: { test: { address: '0xC217994720062d2E8340852c58DfFcDbB66bbfA3', abi: ABI_SKYBRIDGE, }, production: { address: '0xad22900062e4cd766102a1f33e530f5303fe1adf', abi: ABI_SKYBRIDGE, }, }, }, } as const;