defi-blockchain-addressbook 1.0.17 → 1.0.18

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.
Files changed (40) hide show
  1. package/build/address-book/ethereum/index.d.ts +26 -0
  2. package/build/address-book/ethereum/platforms/bimfinance.d.ts +30 -0
  3. package/build/address-book/ethereum/platforms/bimfinance.js +37 -0
  4. package/build/address-book/ethereum/platforms/index.d.ts +1 -0
  5. package/build/address-book/ethereum/platforms/index.js +3 -1
  6. package/build/address-book/ethereum/tokens/tokens.d.ts +13 -0
  7. package/build/address-book/ethereum/tokens/tokens.js +13 -0
  8. package/build/address-book/index.js +9 -9
  9. package/build/types/chainid.d.ts +1 -0
  10. package/build/types/chainid.js +1 -1
  11. package/build/util/chainIdMap.d.ts +1 -0
  12. package/build/util/chainIdMap.js +1 -1
  13. package/build-esm/address-book/ethereum/index.d.ts +4620 -0
  14. package/build-esm/address-book/ethereum/index.js +8 -0
  15. package/build-esm/address-book/ethereum/platforms/aura.d.ts +4 -0
  16. package/build-esm/address-book/ethereum/platforms/aura.js +4 -0
  17. package/build-esm/address-book/ethereum/platforms/balancer.d.ts +3 -0
  18. package/build-esm/address-book/ethereum/platforms/balancer.js +3 -0
  19. package/build-esm/address-book/ethereum/platforms/beefyfinance.d.ts +35 -0
  20. package/build-esm/address-book/ethereum/platforms/beefyfinance.js +38 -0
  21. package/build-esm/address-book/ethereum/platforms/bimfinance.d.ts +30 -0
  22. package/build-esm/address-book/ethereum/platforms/bimfinance.js +34 -0
  23. package/build-esm/address-book/ethereum/platforms/gamma.d.ts +3 -0
  24. package/build-esm/address-book/ethereum/platforms/gamma.js +3 -0
  25. package/build-esm/address-book/ethereum/platforms/index.d.ts +9 -0
  26. package/build-esm/address-book/ethereum/platforms/index.js +9 -0
  27. package/build-esm/address-book/ethereum/platforms/solidly.d.ts +5 -0
  28. package/build-esm/address-book/ethereum/platforms/solidly.js +5 -0
  29. package/build-esm/address-book/ethereum/platforms/sushi.d.ts +5 -0
  30. package/build-esm/address-book/ethereum/platforms/sushi.js +5 -0
  31. package/build-esm/address-book/ethereum/platforms/synapse.d.ts +3 -0
  32. package/build-esm/address-book/ethereum/platforms/synapse.js +3 -0
  33. package/build-esm/address-book/ethereum/platforms/verse.d.ts +3 -0
  34. package/build-esm/address-book/ethereum/platforms/verse.js +3 -0
  35. package/build-esm/address-book/ethereum/tokens/tokens.d.ts +2308 -0
  36. package/build-esm/address-book/ethereum/tokens/tokens.js +2286 -0
  37. package/build-esm/address-book/index.js +3 -3
  38. package/build-esm/types/chainid.d.ts +1 -0
  39. package/build-esm/types/chainid.js +1 -1
  40. 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
- // import { ethereum } from './ethereum/index.js';
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
- // ethereum,
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
- // [ChainId.ethereum]: ethereum,
93
+ [ChainId.ethereum]: ethereum,
94
94
  // [ChainId.canto]: canto,
95
95
  // [ChainId.zksync]: zksync,
96
96
  // [ChainId.zkevm]: zkevm,
@@ -1,6 +1,7 @@
1
1
  export declare enum ChainId {
2
2
  polygon = 137,
3
3
  optimism = 10,
4
+ ethereum = 1,
4
5
  base = 8453,
5
6
  gnosis = 100
6
7
  }
@@ -17,7 +17,7 @@ export var ChainId;
17
17
  // emerald = 42262,
18
18
  ChainId[ChainId["optimism"] = 10] = "optimism";
19
19
  // kava = 2222,
20
- // ethereum = 1,
20
+ ChainId[ChainId["ethereum"] = 1] = "ethereum";
21
21
  // canto = 7700,
22
22
  // zksync = 324,
23
23
  // zkevm = 1101,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "defi-blockchain-addressbook",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "Address book for defi",
5
5
  "type": "commonjs",
6
6
  "types": "./build/address-book/index.d.ts",