defi-blockchain-addressbook 1.0.17 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/address-book/ethereum/index.d.ts +26 -0
- package/build/address-book/ethereum/platforms/bimfinance.d.ts +31 -0
- package/build/address-book/ethereum/platforms/bimfinance.js +38 -0
- package/build/address-book/ethereum/platforms/index.d.ts +1 -0
- package/build/address-book/ethereum/platforms/index.js +3 -1
- package/build/address-book/ethereum/tokens/tokens.d.ts +13 -0
- package/build/address-book/ethereum/tokens/tokens.js +13 -0
- package/build/address-book/index.js +9 -9
- package/build/types/chainid.d.ts +1 -0
- package/build/types/chainid.js +1 -1
- package/build/util/chainIdMap.d.ts +1 -0
- package/build/util/chainIdMap.js +1 -1
- package/build-esm/address-book/ethereum/index.d.ts +4620 -0
- package/build-esm/address-book/ethereum/index.js +8 -0
- package/build-esm/address-book/ethereum/platforms/aura.d.ts +4 -0
- package/build-esm/address-book/ethereum/platforms/aura.js +4 -0
- package/build-esm/address-book/ethereum/platforms/balancer.d.ts +3 -0
- package/build-esm/address-book/ethereum/platforms/balancer.js +3 -0
- package/build-esm/address-book/ethereum/platforms/beefyfinance.d.ts +35 -0
- package/build-esm/address-book/ethereum/platforms/beefyfinance.js +38 -0
- package/build-esm/address-book/ethereum/platforms/bimfinance.d.ts +31 -0
- package/build-esm/address-book/ethereum/platforms/bimfinance.js +35 -0
- package/build-esm/address-book/ethereum/platforms/gamma.d.ts +3 -0
- package/build-esm/address-book/ethereum/platforms/gamma.js +3 -0
- package/build-esm/address-book/ethereum/platforms/index.d.ts +9 -0
- package/build-esm/address-book/ethereum/platforms/index.js +9 -0
- package/build-esm/address-book/ethereum/platforms/solidly.d.ts +5 -0
- package/build-esm/address-book/ethereum/platforms/solidly.js +5 -0
- package/build-esm/address-book/ethereum/platforms/sushi.d.ts +5 -0
- package/build-esm/address-book/ethereum/platforms/sushi.js +5 -0
- package/build-esm/address-book/ethereum/platforms/synapse.d.ts +3 -0
- package/build-esm/address-book/ethereum/platforms/synapse.js +3 -0
- package/build-esm/address-book/ethereum/platforms/verse.d.ts +3 -0
- package/build-esm/address-book/ethereum/platforms/verse.js +3 -0
- package/build-esm/address-book/ethereum/tokens/tokens.d.ts +2308 -0
- package/build-esm/address-book/ethereum/tokens/tokens.js +2286 -0
- package/build-esm/address-book/index.js +3 -3
- package/build-esm/types/chainid.d.ts +1 -0
- package/build-esm/types/chainid.js +1 -1
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ import { polygon } from './polygon/index.js';
|
|
|
16
16
|
// import { emerald } from './emerald/index.js';
|
|
17
17
|
import { optimism } from './optimism/index.js';
|
|
18
18
|
// import { kava } from './kava/index.js';
|
|
19
|
-
|
|
19
|
+
import { ethereum } from './ethereum/index.js';
|
|
20
20
|
// import { canto } from './canto/index.js';
|
|
21
21
|
// import { zksync } from './zksync/index.js';
|
|
22
22
|
// import { zkevm } from './zkevm/index.js';
|
|
@@ -53,7 +53,7 @@ export const addressBook = {
|
|
|
53
53
|
// emerald,
|
|
54
54
|
optimism,
|
|
55
55
|
// kava,
|
|
56
|
-
|
|
56
|
+
ethereum,
|
|
57
57
|
// canto,
|
|
58
58
|
// zksync,
|
|
59
59
|
// zkevm,
|
|
@@ -90,7 +90,7 @@ export const addressBookByChainId = {
|
|
|
90
90
|
// [ChainId.emerald]: emerald,
|
|
91
91
|
[ChainId.optimism]: optimism,
|
|
92
92
|
// [ChainId.kava]: kava,
|
|
93
|
-
|
|
93
|
+
[ChainId.ethereum]: ethereum,
|
|
94
94
|
// [ChainId.canto]: canto,
|
|
95
95
|
// [ChainId.zksync]: zksync,
|
|
96
96
|
// [ChainId.zkevm]: zkevm,
|