UNPKG

@georgeroman/wyvern-v2-sdk

Version:

Wyvern V2 SDK

51 lines 1.55 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Address { static eth(chainId) { switch (chainId) { case 1: return "0x0000000000000000000000000000000000000000"; case 4: return "0x0000000000000000000000000000000000000000"; } return undefined; } static weth(chainId) { switch (chainId) { case 1: return "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"; case 4: return "0xc778417e063141139fce010982780140aa0cd5ab"; } return undefined; } static exchange(chainId) { switch (chainId) { case 1: return "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b"; case 4: return "0x5206e78b21ce315ce284fb24cf05e0585a93b1d9"; } return undefined; } static tokenTransferProxy(chainId) { switch (chainId) { case 1: return "0xe5c783ee536cf5e63e792988335c4255169be4e1"; case 4: return "0x82d102457854c985221249f86659c9d6cf12aa72"; } return undefined; } static proxyRegistry(chainId) { switch (chainId) { case 1: return "0xa5409ec958c83c3f309868babaca7c86dcb077c1"; case 4: return "0xf57b2c51ded3a29e6891aba85459d600256cf317"; } return undefined; } } exports.default = Address; //# sourceMappingURL=address.js.map