@bitgo-beta/statics 15.1.1-beta.17 → 15.1.1-beta.1700

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 (132) hide show
  1. package/dist/src/account.d.ts +1086 -73
  2. package/dist/src/account.d.ts.map +1 -1
  3. package/dist/src/account.js +1716 -162
  4. package/dist/src/ada.d.ts.map +1 -1
  5. package/dist/src/ada.js +9 -3
  6. package/dist/src/allCoinsAndTokens.d.ts +2 -0
  7. package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
  8. package/dist/src/allCoinsAndTokens.js +1505 -0
  9. package/dist/src/avaxp.d.ts.map +1 -1
  10. package/dist/src/avaxp.js +11 -3
  11. package/dist/src/base.d.ts +2463 -40
  12. package/dist/src/base.d.ts.map +1 -1
  13. package/dist/src/base.js +2575 -57
  14. package/dist/src/canton.d.ts +34 -0
  15. package/dist/src/canton.d.ts.map +1 -0
  16. package/dist/src/canton.js +51 -0
  17. package/dist/src/coinFeatures.d.ts +114 -0
  18. package/dist/src/coinFeatures.d.ts.map +1 -0
  19. package/dist/src/coinFeatures.js +743 -0
  20. package/dist/src/coins/adaTokens.d.ts +2 -0
  21. package/dist/src/coins/adaTokens.d.ts.map +1 -0
  22. package/dist/src/coins/adaTokens.js +22 -0
  23. package/dist/src/coins/avaxTokens.d.ts +2 -0
  24. package/dist/src/coins/avaxTokens.d.ts.map +1 -0
  25. package/dist/src/coins/avaxTokens.js +128 -0
  26. package/dist/src/coins/botOfcTokens.d.ts +3 -0
  27. package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
  28. package/dist/src/coins/botOfcTokens.js +106 -0
  29. package/dist/src/coins/botTokens.d.ts +3 -0
  30. package/dist/src/coins/botTokens.d.ts.map +1 -0
  31. package/dist/src/coins/botTokens.js +108 -0
  32. package/dist/src/coins/bscTokens.d.ts +2 -0
  33. package/dist/src/coins/bscTokens.d.ts.map +1 -0
  34. package/dist/src/coins/bscTokens.js +204 -0
  35. package/dist/src/coins/cantonTokens.d.ts +2 -0
  36. package/dist/src/coins/cantonTokens.d.ts.map +1 -0
  37. package/dist/src/coins/cantonTokens.js +18 -0
  38. package/dist/src/coins/cosmosTokens.d.ts +2 -0
  39. package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
  40. package/dist/src/coins/cosmosTokens.js +14 -0
  41. package/dist/src/coins/erc20Coins.d.ts +2 -0
  42. package/dist/src/coins/erc20Coins.d.ts.map +1 -0
  43. package/dist/src/coins/erc20Coins.js +2024 -0
  44. package/dist/src/coins/generateERC20.d.ts +36 -0
  45. package/dist/src/coins/generateERC20.d.ts.map +1 -0
  46. package/dist/src/coins/generateERC20.js +46 -0
  47. package/dist/src/coins/jettonTokens.d.ts +2 -0
  48. package/dist/src/coins/jettonTokens.d.ts.map +1 -0
  49. package/dist/src/coins/jettonTokens.js +19 -0
  50. package/dist/src/coins/nep141Tokens.d.ts +2 -0
  51. package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
  52. package/dist/src/coins/nep141Tokens.js +17 -0
  53. package/dist/src/coins/ofcCoins.d.ts +2 -0
  54. package/dist/src/coins/ofcCoins.d.ts.map +1 -0
  55. package/dist/src/coins/ofcCoins.js +987 -0
  56. package/dist/src/coins/ofcErc20Coins.d.ts +4 -0
  57. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
  58. package/dist/src/coins/ofcErc20Coins.js +1778 -0
  59. package/dist/src/coins/polygonTokens.d.ts +2 -0
  60. package/dist/src/coins/polygonTokens.d.ts.map +1 -0
  61. package/dist/src/coins/polygonTokens.js +165 -0
  62. package/dist/src/coins/polyxTokens.d.ts +2 -0
  63. package/dist/src/coins/polyxTokens.d.ts.map +1 -0
  64. package/dist/src/coins/polyxTokens.js +22 -0
  65. package/dist/src/coins/sip10Tokens.d.ts +2 -0
  66. package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
  67. package/dist/src/coins/sip10Tokens.js +25 -0
  68. package/dist/src/coins/solTokens.d.ts +3 -0
  69. package/dist/src/coins/solTokens.d.ts.map +1 -0
  70. package/dist/src/coins/solTokens.js +474 -0
  71. package/dist/src/coins/vetTokens.d.ts +2 -0
  72. package/dist/src/coins/vetTokens.d.ts.map +1 -0
  73. package/dist/src/coins/vetTokens.js +11 -0
  74. package/dist/src/coins.d.ts +22 -1
  75. package/dist/src/coins.d.ts.map +1 -1
  76. package/dist/src/coins.js +433 -1412
  77. package/dist/src/constants.d.ts +1 -0
  78. package/dist/src/constants.d.ts.map +1 -1
  79. package/dist/src/constants.js +3 -2
  80. package/dist/src/errors.d.ts +3 -0
  81. package/dist/src/errors.d.ts.map +1 -1
  82. package/dist/src/errors.js +9 -2
  83. package/dist/src/flrp.d.ts +40 -0
  84. package/dist/src/flrp.d.ts.map +1 -0
  85. package/dist/src/flrp.js +65 -0
  86. package/dist/src/hypeevm.d.ts +28 -0
  87. package/dist/src/hypeevm.d.ts.map +1 -0
  88. package/dist/src/hypeevm.js +60 -0
  89. package/dist/src/index.d.ts +5 -1
  90. package/dist/src/index.d.ts.map +1 -1
  91. package/dist/src/index.js +34 -3
  92. package/dist/src/kaspa.d.ts +35 -0
  93. package/dist/src/kaspa.d.ts.map +1 -0
  94. package/dist/src/kaspa.js +63 -0
  95. package/dist/src/lightning.d.ts +43 -0
  96. package/dist/src/lightning.d.ts.map +1 -0
  97. package/dist/src/lightning.js +60 -0
  98. package/dist/src/map.d.ts +16 -0
  99. package/dist/src/map.d.ts.map +1 -1
  100. package/dist/src/map.js +194 -17
  101. package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
  102. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
  103. package/dist/src/networkFeatureMapForTokens.js +31 -0
  104. package/dist/src/networks.d.ts +2076 -80
  105. package/dist/src/networks.d.ts.map +1 -1
  106. package/dist/src/networks.js +2610 -149
  107. package/dist/src/ofc.d.ts +695 -3
  108. package/dist/src/ofc.d.ts.map +1 -1
  109. package/dist/src/ofc.js +1652 -28
  110. package/dist/src/tokenConfig.d.ts +667 -102
  111. package/dist/src/tokenConfig.d.ts.map +1 -1
  112. package/dist/src/tokenConfig.js +1018 -205
  113. package/dist/src/utxo.d.ts +3 -1
  114. package/dist/src/utxo.d.ts.map +1 -1
  115. package/dist/src/utxo.js +85 -3
  116. package/dist/tsconfig.tsbuildinfo +1 -2744
  117. package/package.json +6 -3
  118. package/.mocharc.js +0 -10
  119. package/.prettierignore +0 -2
  120. package/CHANGELOG.md +0 -552
  121. package/dist/resources/dot/index.d.ts +0 -3
  122. package/dist/resources/dot/index.d.ts.map +0 -1
  123. package/dist/resources/dot/index.js +0 -15
  124. package/dist/resources/dot/mainnet.d.ts +0 -2
  125. package/dist/resources/dot/mainnet.d.ts.map +0 -1
  126. package/dist/resources/dot/mainnet.js +0 -5
  127. package/dist/resources/dot/westend.d.ts +0 -2
  128. package/dist/resources/dot/westend.d.ts.map +0 -1
  129. package/dist/resources/dot/westend.js +0 -5
  130. package/resources/dot/index.ts +0 -2
  131. package/resources/dot/mainnet.ts +0 -2
  132. package/resources/dot/westend.ts +0 -2
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "@bitgo-beta/statics",
3
- "version": "15.1.1-beta.17",
3
+ "version": "15.1.1-beta.1700",
4
4
  "description": "dependency-free static configuration for the bitgo platform",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
7
10
  "scripts": {
8
11
  "test": "yarn unit-test",
9
12
  "unit-test": "nyc -- mocha",
10
13
  "build": "yarn tsc --build --incremental --verbose .",
11
14
  "fmt": "prettier --write .",
12
- "check-fmt": "prettier --check .",
15
+ "check-fmt": "prettier --check '**/*.{ts,js,json}'",
13
16
  "clean": "rm -r ./dist",
14
17
  "prepare": "npm run build"
15
18
  },
@@ -37,5 +40,5 @@
37
40
  ".ts"
38
41
  ]
39
42
  },
40
- "gitHead": "21da74f151aa64b7604b2f324901586957080c2e"
43
+ "gitHead": "1f25e9eb662f17dad99fbb8671fa4e8b8183eeea"
41
44
  }
package/.mocharc.js DELETED
@@ -1,10 +0,0 @@
1
- 'use strict';
2
-
3
- module.exports = {
4
- require: 'ts-node/register',
5
- timeout: '20000',
6
- reporter: 'min',
7
- 'reporter-option': ['cdn=true', 'json=false'],
8
- exit: true,
9
- spec: ['test/unit/*.ts'],
10
- };
package/.prettierignore DELETED
@@ -1,2 +0,0 @@
1
- .nyc_output/
2
- dist/
package/CHANGELOG.md DELETED
@@ -1,552 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [15.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@15.0.0...@bitgo/statics@15.1.0) (2023-04-20)
7
-
8
- ### Features
9
-
10
- - **sdk-coin-sui:** add sui staking coin feature ([9d711c4](https://github.com/BitGo/BitGoJS/commit/9d711c4879f079b869ea3695a0f0755b83c93674))
11
-
12
- # [15.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.4.0...@bitgo/statics@15.0.0) (2023-04-13)
13
-
14
- ### Bug Fixes
15
-
16
- - **bitgo:** add argument to create address on ofc wallets ([b1a212d](https://github.com/BitGo/BitGoJS/commit/b1a212d05962719822c8420acf4f01dc6e012d16))
17
- - **statics:** add tsol valid usdc for devnet token data ([462ada8](https://github.com/BitGo/BitGoJS/commit/462ada828755576dc2dfd02cba8d6d1930fc3654))
18
- - **statics:** update explorer urls for bsc ([a40c4d7](https://github.com/BitGo/BitGoJS/commit/a40c4d77c90993870ac2913f8f71bb94ba1f7c0e))
19
- - **statics:** update tbsc:busd contract ([24eeba5](https://github.com/BitGo/BitGoJS/commit/24eeba5600afc1fddd4d666b789f52ccadf65f7a))
20
- - update cspr testnet explorer to reference integration cluster ([5d92804](https://github.com/BitGo/BitGoJS/commit/5d928045cedcda4c48dd9c2370b322c0cf44b147))
21
-
22
- ### Features
23
-
24
- - onboard new sol tokens ([9079fb8](https://github.com/BitGo/BitGoJS/commit/9079fb8e2123574eed9b038b62a61f629063f3cd))
25
- - **sdk-coin-polygon:** support evm based cross chain recovery ([a88681f](https://github.com/BitGo/BitGoJS/commit/a88681f8428bcb6617ee2c7cfe5e8294b603af9f))
26
- - **statics:** add custodial coin feature to poly ([3287d9d](https://github.com/BitGo/BitGoJS/commit/3287d9d5b9a18bc457336295a0607626bd03a285))
27
- - **statics:** add custody coin features ([fcb28a5](https://github.com/BitGo/BitGoJS/commit/fcb28a5156fb4183c824239136953c7bcc495199))
28
- - **statics:** add expiring tx CoinFeature ([d264c4a](https://github.com/BitGo/BitGoJS/commit/d264c4ac9dea02a0de77e05f6517ada6bfcc3a4a))
29
- - **statics:** add token support for trx ([b473732](https://github.com/BitGo/BitGoJS/commit/b473732cc3bba357c9a7b95160f94ed6d84c6bdf))
30
- - **statics:** add xrp token config and test token ([76da61b](https://github.com/BitGo/BitGoJS/commit/76da61b54b62825116b102a3fd50377356a9f0be))
31
- - **statics:** set addressCoin to gteth for new tofcerc20 tokens ([5ecc4f4](https://github.com/BitGo/BitGoJS/commit/5ecc4f4e0192a627504955986484de8b0aafe17e))
32
-
33
- ### BREAKING CHANGES
34
-
35
- - **statics:** overrode address coin from deprecated teth to gteth for tofcerc20s
36
- Ticket: BG-69417
37
- - **statics:** updated contract address for tbsc:busd
38
- TICKET: BG-69321
39
-
40
- # [14.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.3.0...@bitgo/statics@14.4.0) (2023-02-17)
41
-
42
- ### Features
43
-
44
- - **statics:** add ofc erc20 tokens ([d05e69f](https://github.com/BitGo/BitGoJS/commit/d05e69fb6d47dc629286b2815ecd9435e3854db0))
45
- - **statics:** enable getting asset by id ([b96fbaf](https://github.com/BitGo/BitGoJS/commit/b96fbaf36f676400ed2ec2fa66d2a3931aabdf42))
46
-
47
- # [14.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.0.0...@bitgo/statics@14.3.0) (2023-02-16)
48
-
49
- ### Features
50
-
51
- - **statics:** add a unique id to every asset ([f96e4d3](https://github.com/BitGo/BitGoJS/commit/f96e4d3bb5515ca52a78387c5c75811abd39c802))
52
- - **statics:** add custody coin features for avaxc ([d67a9d9](https://github.com/BitGo/BitGoJS/commit/d67a9d932f30d48853ad7e4c20388b60ae269529))
53
- - **statics:** add ofc algorand usdc token ([9450360](https://github.com/BitGo/BitGoJS/commit/9450360e828253ee633acaae8cc0ec57d386a7dc))
54
- - **statics:** add ofc hedera usdc token ([67f1c5d](https://github.com/BitGo/BitGoJS/commit/67f1c5da5b92f228e02451071bacdcbe482c06fd))
55
-
56
- # [14.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.0.0...@bitgo/statics@14.2.0) (2023-02-08)
57
-
58
- ### Features
59
-
60
- - **statics:** add custody coin features for avaxc ([d67a9d9](https://github.com/BitGo/BitGoJS/commit/d67a9d932f30d48853ad7e4c20388b60ae269529))
61
- - **statics:** add ofc algorand usdc token ([9450360](https://github.com/BitGo/BitGoJS/commit/9450360e828253ee633acaae8cc0ec57d386a7dc))
62
-
63
- # [14.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.0.0...@bitgo/statics@14.1.0) (2023-01-30)
64
-
65
- ### Features
66
-
67
- - **statics:** add ofc algorand usdc token ([9450360](https://github.com/BitGo/BitGoJS/commit/9450360e828253ee633acaae8cc0ec57d386a7dc))
68
-
69
- # [14.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@13.1.0...@bitgo/statics@14.0.0) (2023-01-25)
70
-
71
- ### Bug Fixes
72
-
73
- - **statics:** fix mismatched erc20 token config ([8875873](https://github.com/BitGo/BitGoJS/commit/8875873aaf5a7dbc8b2117c5ea29ac0141c9310b))
74
-
75
- - Revert "fix(statics)!: Fix mismatched erc20 token config" ([b84b273](https://github.com/BitGo/BitGoJS/commit/b84b273a1d9cdd5140c05299bb2416d46806454c))
76
-
77
- ### Features
78
-
79
- - **statics:** add ATOM coin config ([c3a5282](https://github.com/BitGo/BitGoJS/commit/c3a52823f7a2750ebf3e5c2e0f35925d09704087))
80
- - **statics:** add EVM_WALLET coin feature ([c31332c](https://github.com/BitGo/BitGoJS/commit/c31332c5ee085fafca47dcd47b0c10c108cb9686))
81
- - **statics:** add new batch of tokens ([19b584d](https://github.com/BitGo/BitGoJS/commit/19b584ddf90d38aad5ff30e867f1c83ea462d930))
82
- - **statics:** add new coin features for custody ([59a7fde](https://github.com/BitGo/BitGoJS/commit/59a7fde734af0fdb863f6b730cd0702e7c863615))
83
- - **statics:** add ofc stellar usdc token ([2c2735d](https://github.com/BitGo/BitGoJS/commit/2c2735d602c09cbbbeda78ef27a050ca08d3dc42))
84
-
85
- ### BREAKING CHANGES
86
-
87
- - changes existing config for TUSD and REEF
88
- - **statics:** changes existing config for TUSD and REEF
89
-
90
- # [13.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@13.0.0...@bitgo/statics@13.1.0) (2022-12-23)
91
-
92
- ### Features
93
-
94
- - **sdk-coin-trx:** export TronErc20Coin class ([0528cb0](https://github.com/BitGo/BitGoJS/commit/0528cb0939047b5fd38a8a3baa494bafba76d0ed))
95
-
96
- # [13.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@12.1.1...@bitgo/statics@13.0.0) (2022-12-20)
97
-
98
- ### Bug Fixes
99
-
100
- - **sdk-coin-trx:** fix tron tokens in statics ([79459c9](https://github.com/BitGo/BitGoJS/commit/79459c982e07d7ec6b9e720b0ad325a00ed59e8f))
101
- - **statics:** add missing backing erc20 for fil ([8bea5bf](https://github.com/BitGo/BitGoJS/commit/8bea5bf02b51856e6c65ce55cca657c7246f1562))
102
-
103
- ### BREAKING CHANGES
104
-
105
- - **sdk-coin-trx:** TrxCoin & factory methods removed from statics due to existing class TronErc20Coin
106
-
107
- ## [12.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@12.1.0...@bitgo/statics@12.1.1) (2022-12-09)
108
-
109
- **Note:** Version bump only for package @bitgo/statics
110
-
111
- # [12.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@12.0.0...@bitgo/statics@12.1.0) (2022-12-01)
112
-
113
- ### Features
114
-
115
- - **statics:** add TSS feature flag to ETH ([9226ca9](https://github.com/BitGo/BitGoJS/commit/9226ca9ebf23b2171bffaf05b5090d8189110d56))
116
-
117
- # [12.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@8.2.0...@bitgo/statics@12.0.0) (2022-11-29)
118
-
119
- ### Bug Fixes
120
-
121
- - fix typo in Everscale, add Everscale as Offchain / Prime token ([21bf769](https://github.com/BitGo/BitGoJS/commit/21bf769fa6e2165797d3d9562955b7bd371ad0e6))
122
- - **statics:** change cardano testnet url to preprod testnet ([6bc09c4](https://github.com/BitGo/BitGoJS/commit/6bc09c4c2306d792e1ed522c3e828a34597c842d))
123
- - update explorer url for test mysten ([3d21e88](https://github.com/BitGo/BitGoJS/commit/3d21e885e5883e3cf8259a1142ef4a31de1408a9))
124
- - update XLM USD token name ([62c8d37](https://github.com/BitGo/BitGoJS/commit/62c8d37bb52620f11d3ff5a7cc73f7a9cca07ffe))
125
-
126
- ### Features
127
-
128
- - add new erc20s and sol tokens ([354a429](https://github.com/BitGo/BitGoJS/commit/354a4296c682f6d3a787309ddb7d196b1cbf9e11))
129
- - add tokens to trading ([8105e05](https://github.com/BitGo/BitGoJS/commit/8105e052bbdf914bcd749c87bd78e5db4e1bf4ce))
130
- - onboard new sol tokens ([0ada8c4](https://github.com/BitGo/BitGoJS/commit/0ada8c4caa1e97b6f46557af3676c32ea531b55d))
131
- - **sdk-coin-dot:** add support for staking transactions ([b67eaa0](https://github.com/BitGo/BitGoJS/commit/b67eaa06723b1a235cb2c6f948ece34cc42a9256))
132
- - **sdk-coin-trx:** add tron token skeleton ([03198b0](https://github.com/BitGo/BitGoJS/commit/03198b0e23e6c87ce2d34d08973abca301f88252))
133
- - **statics:** add base unit for coins ([b2950e9](https://github.com/BitGo/BitGoJS/commit/b2950e9f5fd71d1f8e29189fd1fa5193c4afc76f))
134
- - **statics:** add erc20 tokens to ofc support ([7ac56af](https://github.com/BitGo/BitGoJS/commit/7ac56af6b842e81d3c0bc0ee80889efcd4dc8385))
135
- - **statics:** add ofc coins for dogecoin ([8052caf](https://github.com/BitGo/BitGoJS/commit/8052caf2ab7aeff9610d59473efe1859678870ca))
136
- - **statics:** add polygon tokens ([ea32562](https://github.com/BitGo/BitGoJS/commit/ea32562ed4ae553418a8e75eb2e63a47415e047e))
137
- - **statics:** add SOLEND (SLND) Solana token to statics ([e39edb4](https://github.com/BitGo/BitGoJS/commit/e39edb4fcb6694bf9b75710d4434e7a0d35f0d62))
138
- - **statics:** add twdoge ([bc7a68a](https://github.com/BitGo/BitGoJS/commit/bc7a68aac9eb1a41b59c0eccff0412bbd9d3cfa0))
139
- - **statics:** add wdoge ([842a8da](https://github.com/BitGo/BitGoJS/commit/842a8da1bac398606a3b4ee00861885e3a8748d3))
140
- - **statics:** onboard select erc20 and sol tokens ([640e273](https://github.com/BitGo/BitGoJS/commit/640e273e9c264ea9b515cb6e6123c9ae103e18dd))
141
- - **statics:** use eCash instead of BitcoinABC in networks ([cf9cdbb](https://github.com/BitGo/BitGoJS/commit/cf9cdbbe76da587ba7c3c8d7d85faa640fac1000))
142
-
143
- ### BREAKING CHANGES
144
-
145
- - updated name of XLM USD token
146
- - **sdk-coin-dot:** Uddate the 'westendMetadataRpc' constant to
147
- spec version 9320. Update PolkadotTestnet.specVersion to
148
- 9320 and PolkadotTestnet.txVersion to 14.
149
- Ticket: BOS-469
150
- - **statics:** new fields are all required, so needs to be filled in
151
- Ticket: BG-53493
152
- - **statics:** Removing Bitcoin ABC terminology because it has
153
- been rebranded to eCash. Updating its network here so that it's
154
- consistent with the terms used in other modules.
155
- - Adds Everscale as Offchain / Prime token
156
- BG-59397
157
-
158
- # [11.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@8.2.0...@bitgo/statics@11.0.0) (2022-11-04)
159
-
160
- ### Bug Fixes
161
-
162
- - fix typo in Everscale, add Everscale as Offchain / Prime token ([21bf769](https://github.com/BitGo/BitGoJS/commit/21bf769fa6e2165797d3d9562955b7bd371ad0e6))
163
- - **statics:** change cardano testnet url to preprod testnet ([6bc09c4](https://github.com/BitGo/BitGoJS/commit/6bc09c4c2306d792e1ed522c3e828a34597c842d))
164
- - update explorer url for test mysten ([3d21e88](https://github.com/BitGo/BitGoJS/commit/3d21e885e5883e3cf8259a1142ef4a31de1408a9))
165
-
166
- ### Features
167
-
168
- - add tokens to trading ([8105e05](https://github.com/BitGo/BitGoJS/commit/8105e052bbdf914bcd749c87bd78e5db4e1bf4ce))
169
- - **statics:** add ofc coins for dogecoin ([8052caf](https://github.com/BitGo/BitGoJS/commit/8052caf2ab7aeff9610d59473efe1859678870ca))
170
- - **statics:** add polygon tokens ([ea32562](https://github.com/BitGo/BitGoJS/commit/ea32562ed4ae553418a8e75eb2e63a47415e047e))
171
- - **statics:** add SOLEND (SLND) Solana token to statics ([e39edb4](https://github.com/BitGo/BitGoJS/commit/e39edb4fcb6694bf9b75710d4434e7a0d35f0d62))
172
- - **statics:** add wdoge ([842a8da](https://github.com/BitGo/BitGoJS/commit/842a8da1bac398606a3b4ee00861885e3a8748d3))
173
-
174
- ### BREAKING CHANGES
175
-
176
- - Adds Everscale as Offchain / Prime token
177
- BG-59397
178
-
179
- # [10.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@8.2.0...@bitgo/statics@10.0.0) (2022-10-27)
180
-
181
- ### Bug Fixes
182
-
183
- - fix typo in Everscale, add Everscale as Offchain / Prime token ([21bf769](https://github.com/BitGo/BitGoJS/commit/21bf769fa6e2165797d3d9562955b7bd371ad0e6))
184
-
185
- ### Features
186
-
187
- - add tokens to trading ([8105e05](https://github.com/BitGo/BitGoJS/commit/8105e052bbdf914bcd749c87bd78e5db4e1bf4ce))
188
- - **statics:** add SOLEND (SLND) Solana token to statics ([e39edb4](https://github.com/BitGo/BitGoJS/commit/e39edb4fcb6694bf9b75710d4434e7a0d35f0d62))
189
-
190
- ### BREAKING CHANGES
191
-
192
- - Adds Everscale as Offchain / Prime token
193
- BG-59397
194
-
195
- # [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@8.2.0...@bitgo/statics@9.0.0) (2022-10-25)
196
-
197
- ### Bug Fixes
198
-
199
- - fix typo in Everscale, add Everscale as Offchain / Prime token ([21bf769](https://github.com/BitGo/BitGoJS/commit/21bf769fa6e2165797d3d9562955b7bd371ad0e6))
200
-
201
- ### Features
202
-
203
- - **statics:** add SOLEND (SLND) Solana token to statics ([e39edb4](https://github.com/BitGo/BitGoJS/commit/e39edb4fcb6694bf9b75710d4434e7a0d35f0d62))
204
-
205
- ### BREAKING CHANGES
206
-
207
- - Adds Everscale as Offchain / Prime token
208
- BG-59397
209
-
210
- # [8.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@7.0.0-rc.4...@bitgo/statics@8.2.0) (2022-10-18)
211
-
212
- ### Bug Fixes
213
-
214
- - fix test issues for BG-57708 ([65f672d](https://github.com/BitGo/BitGoJS/commit/65f672d6647dc2de94bb893d6b548deaf22af70c))
215
- - move constants to statics for BG-57708 ([73f986a](https://github.com/BitGo/BitGoJS/commit/73f986aaca53a41b056739d5933b6b3259d2493c))
216
- - **sdk-coin-ethw:** update chainid for EthW ([4b5339c](https://github.com/BitGo/BitGoJS/commit/4b5339c19bb17f11b9453b188e5afd35f619e749))
217
- - **sdk-coin-polygon:** staking features ([41a3959](https://github.com/BitGo/BitGoJS/commit/41a3959ab737155a7c06a499fd19e9182e06863e))
218
- - **sdk-coin-polygon:** update polygon token names ([8bb61cf](https://github.com/BitGo/BitGoJS/commit/8bb61cf2112a668255746366a32f8e5c8105a481))
219
- - **statics:** contract address of tpolygon name NFT BG-58416 ([f8ca06c](https://github.com/BitGo/BitGoJS/commit/f8ca06caeb1b893c4082a73959a9be62c8d99664))
220
- - **statics:** fix terc tokens to use goerli network ([024483d](https://github.com/BitGo/BitGoJS/commit/024483d3892d6ea05b11e63bb86dfdd0a1fe715a))
221
- - **statics:** format polygon token if its an NFT BG-59021 ([275f743](https://github.com/BitGo/BitGoJS/commit/275f7435c9cc3f8d708b6416ad2aa2287f411ac0))
222
- - **statics:** update contract address of name NFT BG-58416 ([0e66440](https://github.com/BitGo/BitGoJS/commit/0e66440cda0ba2a6b265e8e80da9505bbb536717))
223
- - **statics:** update tokenAddress for tsol:orca ([3d1da19](https://github.com/BitGo/BitGoJS/commit/3d1da197036ad3d5f9daf3ed7d282b9d6ce35206))
224
- - **statics:** update underlying asset of GTETH to ETH ([6bf3a5b](https://github.com/BitGo/BitGoJS/commit/6bf3a5bdae3db085ab57e65dd872c5626d293cc1))
225
-
226
- ### chore
227
-
228
- - **statics:** update fullname for ada coin ([39ec376](https://github.com/BitGo/BitGoJS/commit/39ec3761d013bcfec718535a6f86039a42651205))
229
- - **statics:** update Sol coin name to Solana BG-52979 ([f7c36bf](https://github.com/BitGo/BitGoJS/commit/f7c36bf206330d317d39c11fa22fbdf638870d60))
230
-
231
- ### Code Refactoring
232
-
233
- - **statics:** update sol token asset ([47260f9](https://github.com/BitGo/BitGoJS/commit/47260f9dd768ee29ce96df3abce58c3abbdb0e1b))
234
-
235
- ### Features
236
-
237
- - add new tokens ([971251a](https://github.com/BitGo/BitGoJS/commit/971251a1a2aa693a761820fdbc821972a96f90a2))
238
- - add new tokens ([3427c53](https://github.com/BitGo/BitGoJS/commit/3427c5380ffaf2b1bfd906898eee029825ed9387))
239
- - add new tokens ([78a8b15](https://github.com/BitGo/BitGoJS/commit/78a8b154f4ad6c1c3b11a1e4a9c6ec9917aedcd7))
240
- - add sui coin to statics ([fd12785](https://github.com/BitGo/BitGoJS/commit/fd127850d1cb9bad3bc149204aa6a0074a743951))
241
- - add tokens to trading ([33887f7](https://github.com/BitGo/BitGoJS/commit/33887f73ca40136edaa02a2cf8bf346be63339a8))
242
- - adds new tokens ([078851d](https://github.com/BitGo/BitGoJS/commit/078851dadacf9d0e18539e7757ce189ba090969d))
243
- - **bitgo:** expose Ethw in core bitgo module ([183cda4](https://github.com/BitGo/BitGoJS/commit/183cda433f8c683722843e2c30bf46101a1cd677))
244
- - **sdk-coin-ada:** add cardano token config ([00fcd72](https://github.com/BitGo/BitGoJS/commit/00fcd72d5feed500d69f208254c6b61815f51a16))
245
- - **sdk-coin-avaxp:** implement export tx builder ([483d9ce](https://github.com/BitGo/BitGoJS/commit/483d9ce67b75ca5eb4c1330f59820b18043cdb6c))
246
- - **sdk-coin-bsc:** create bsc module ([b55ca71](https://github.com/BitGo/BitGoJS/commit/b55ca7173e27ee2d75d342b6706698769f11734f))
247
- - **sdk-coin-bsc:** support tokens for bsc ([44d2af8](https://github.com/BitGo/BitGoJS/commit/44d2af8f3f14bc61d31e6a0b8482a68db2a7d23e))
248
- - **sdk-coin-dot:** enable DOT staking ([0e9209b](https://github.com/BitGo/BitGoJS/commit/0e9209bd9c6f855cbc11e5d602253509fd0099c3))
249
- - **sdk-coin-eth:** add v1 wallet init code ([b1c983d](https://github.com/BitGo/BitGoJS/commit/b1c983d2f0723aa6647fca3d01a4c814639624b4))
250
- - **sdk-coin-polygon:** support tokens ([8870307](https://github.com/BitGo/BitGoJS/commit/8870307b63f460031019aecf30c60df4f2c0a112))
251
- - **statics:** add coin feature for NEAR ([cf1a2f2](https://github.com/BitGo/BitGoJS/commit/cf1a2f278124813bcae33c6e141ceba6920e823e))
252
- - **statics:** add ERC20 tokens ([7d800f0](https://github.com/BitGo/BitGoJS/commit/7d800f0fe6e7a5da6e8e71030f5584e7df2965d5))
253
- - **statics:** add ETHw statics ([f49ef42](https://github.com/BitGo/BitGoJS/commit/f49ef4233ffb788765eac5b5d20232334fbd6203))
254
- - **statics:** add mainnet polygon contracts ([912d5d9](https://github.com/BitGo/BitGoJS/commit/912d5d9b49a58cd47c92fcf251406e9a661c1d5b))
255
- - **statics:** add new prime tokens ([2963e96](https://github.com/BitGo/BitGoJS/commit/2963e96dbf0973863f8c7423fe168f5c181ee101))
256
- - **statics:** add new tokens ([db11934](https://github.com/BitGo/BitGoJS/commit/db119349da8385784074b6cbf56879c0899e2471))
257
- - **statics:** add ofc for near ([4ecde82](https://github.com/BitGo/BitGoJS/commit/4ecde82919019aa8bdacbe7958acb8ec6a5bf50f))
258
- - **statics:** add ORCA and GARI to SOL token list ([0781281](https://github.com/BitGo/BitGoJS/commit/07812816da2221a7ae00241980b2dba539f3042d))
259
- - **statics:** add polygon tokens to statics ([82cf43f](https://github.com/BitGo/BitGoJS/commit/82cf43fbe65008a9eb53824c5102399fc46f781b))
260
- - **statics:** add prime tokens ofc ([308bdab](https://github.com/BitGo/BitGoJS/commit/308bdab2cd9ad0738b3dac173dabaa1cd9b3b74c))
261
- - **statics:** add solana ([b46780e](https://github.com/BitGo/BitGoJS/commit/b46780ef7188b0f4451632c2fe2c3be86cdef9a7))
262
- - **statics:** add testnet Polygon as ERC20 ([b0b4160](https://github.com/BitGo/BitGoJS/commit/b0b4160e2669171d65c7f589ce09f920d16e1442))
263
- - **statics:** add trading tokens ([4ca3558](https://github.com/BitGo/BitGoJS/commit/4ca35584ee1429d510a5bd708e3985ec5e23bda1))
264
- - **statics:** added offchain tokens DAO, DENT, DEP, DFI ([c0257cf](https://github.com/BitGo/BitGoJS/commit/c0257cf86c5369f0db936acb990b3235b69dafcf))
265
- - **statics:** adding tokens for trading ([1241a66](https://github.com/BitGo/BitGoJS/commit/1241a66a9cc280399ac8f28a5bb840c52bb0009f))
266
- - **statics:** adds new tokens ([83ebf4a](https://github.com/BitGo/BitGoJS/commit/83ebf4a65962afed6c071300d80610645f3f0be8))
267
- - **statics:** adds test polygon as erc20 token for goerli ([ec5ea83](https://github.com/BitGo/BitGoJS/commit/ec5ea83bb1cef8bbf045dd5c2d42bb8e17c90ff8))
268
- - **statics:** adds test polygon as erc20 token for goerli and staking feature ([629cd1b](https://github.com/BitGo/BitGoJS/commit/629cd1b7d6889f2cda0112f6a7d7e317941ca5a9))
269
- - **statics:** bg-55026 enable sol staking flag ([f8b21a3](https://github.com/BitGo/BitGoJS/commit/f8b21a36a476750fc11205ffb9913bcb819e3452))
270
- - **statics:** fix bpt, seth-h and reth-h tokens ([d864033](https://github.com/BitGo/BitGoJS/commit/d864033d745ba81e33efcc64b80520ab13954ca4))
271
- - **statics:** fix decimals token CHO ([e7bb6fb](https://github.com/BitGo/BitGoJS/commit/e7bb6fba337dfe58354c535c2dc65964248d8cd7))
272
- - **statics:** fix erc20 token ([27edf13](https://github.com/BitGo/BitGoJS/commit/27edf13dfe66962f61014821a74ed52d0922c3d3))
273
- - **statics:** fix name husd for trading ([517c70a](https://github.com/BitGo/BitGoJS/commit/517c70a95df437cf81f382eb128f6c98da108725))
274
- - **statics:** introduce deprecation coin feature ([918b47e](https://github.com/BitGo/BitGoJS/commit/918b47edd351be4f7720fbfeeb2340ffd5f934b4))
275
- - **statics:** support NAME NFT on tpolygon BG-58416 ([dba1b90](https://github.com/BitGo/BitGoJS/commit/dba1b9087b59336292c51215785ff366bbd262be))
276
-
277
- ### Reverts
278
-
279
- - Revert "feat(statics): add acala to statics" ([5f54097](https://github.com/BitGo/BitGoJS/commit/5f54097ffab8dd614b5ffb76c2287f2d41681e8a))
280
- - Revert "chore: export AcaCoin in statics" ([a4d573e](https://github.com/BitGo/BitGoJS/commit/a4d573e816813280cf37b6b984bd2dd782c2e84d))
281
-
282
- ### BREAKING CHANGES
283
-
284
- - **statics:** Changing underlying asset for GTETH.
285
- the underlying asset for GTETH should
286
- be ETH similar to that of 'TETH'.
287
- TICKET: BG-59194
288
- - **statics:** adds test polygon as erc20 token for goerli because we are deprecating kovan
289
- BOS-556
290
-
291
- staking feature for matic
292
-
293
- - **statics:** updates coin names from `ADA`to `Cardano ADA`
294
- Ticket: BG-56343
295
- .
296
- - **statics:** modfiy symbol 'seth-h' to 'Staked ETH Harbour' and ofcholo to ocfhot
297
- BG-53319
298
- - **sdk-coin-eth:** Changes the return for exported method
299
- decodeWalletCreationData() in sdk-coin-eth
300
- BG-53733
301
- - **statics:** This breaks the provided token asset used for wp in bitgo-ms,
302
- will require to change available solana token asset in wp once this merged.
303
- BG-52918
304
- - **statics:** updates coin names from `Sol` and `Testnet Sol` to `Solana` and `Testnet Solana`.
305
- TICKET: BG-52979
306
-
307
- # [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@7.0.0-rc.4...@bitgo/statics@7.0.0) (2022-07-19)
308
-
309
- **Note:** Version bump only for package @bitgo/statics
310
-
311
- # [7.0.0-rc.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@7.0.0-rc.2...@bitgo/statics@7.0.0-rc.4) (2022-07-19)
312
-
313
- ### Features
314
-
315
- - **statics:** add toekn MWT ([1bd223d](https://github.com/BitGo/BitGoJS/commit/1bd223d4e0bf24544c57b8f7023a46135f46a632))
316
- - **statics:** remove 'kind' parameter from FIAT factory and FiatCoin class ([ace31ac](https://github.com/BitGo/BitGoJS/commit/ace31acbb43e1e1f04798f398af28ca8e8aadfc6))
317
-
318
- # [7.0.0-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@7.0.0-rc.2...@bitgo/statics@7.0.0-rc.3) (2022-07-18)
319
-
320
- ### Features
321
-
322
- - **statics:** add toekn MWT ([1bd223d](https://github.com/BitGo/BitGoJS/commit/1bd223d4e0bf24544c57b8f7023a46135f46a632))
323
-
324
- # [7.0.0-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@7.0.0-rc.0...@bitgo/statics@7.0.0-rc.2) (2022-07-15)
325
-
326
- ### Bug Fixes
327
-
328
- - **statics:** update avaxp network to use string instead of bigint ([f6505b7](https://github.com/BitGo/BitGoJS/commit/f6505b711e81de7d4ab0c3ee74f33ec7ab07c671))
329
-
330
- ### Reverts
331
-
332
- - Revert "feat(statics): update terra a classic" ([ddfa942](https://github.com/BitGo/BitGoJS/commit/ddfa942ee1559e430d6ee3775724b20869a8b1ba))
333
-
334
- ### BREAKING CHANGES
335
-
336
- - **statics:** This change could break calling code as it changes the type.
337
-
338
- Ticket: STLX-17918
339
-
340
- # [7.0.0-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@7.0.0-rc.0...@bitgo/statics@7.0.0-rc.1) (2022-07-14)
341
-
342
- ### Bug Fixes
343
-
344
- - **statics:** update avaxp network to use string instead of bigint ([f6505b7](https://github.com/BitGo/BitGoJS/commit/f6505b711e81de7d4ab0c3ee74f33ec7ab07c671))
345
-
346
- ### BREAKING CHANGES
347
-
348
- - **statics:** This change could break calling code as it changes the type.
349
-
350
- Ticket: STLX-17918
351
-
352
- # [7.0.0-rc.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.24...@bitgo/statics@7.0.0-rc.0) (2022-07-11)
353
-
354
- ### Features
355
-
356
- - **bitgo:** create skeleton for hbar tokens ([d156a51](https://github.com/BitGo/BitGoJS/commit/d156a5188fa4923142964284276431fe8a0d4267))
357
- - **statics:** update terra a classic ([d28bf44](https://github.com/BitGo/BitGoJS/commit/d28bf4498a14be960330cc4fd531ba3acbfd1b3d))
358
-
359
- ### BREAKING CHANGES
360
-
361
- - **statics:** We are replacing the symbol of ust to usdtc same contract
362
-
363
- BG-51357
364
-
365
- # [6.18.0-rc.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.23...@bitgo/statics@6.18.0-rc.24) (2022-07-07)
366
-
367
- ### Features
368
-
369
- - **account-lib:** token associate transaction builder for hedera accounts ([417c720](https://github.com/BitGo/BitGoJS/commit/417c7201b55c1fc546d52d5fd4daaf9390a3c480))
370
- - **statics:** add euroc test token ([ad64797](https://github.com/BitGo/BitGoJS/commit/ad64797757fdbda2d9816bb43fe97398476b3f53))
371
- - **statics:** add polygon testnet contract address ([61edfa8](https://github.com/BitGo/BitGoJS/commit/61edfa8de1b883be805c4d9686716d97480c8aa2))
372
- - **statics:** add tokens iceth and wlxt ([d2ed8dc](https://github.com/BitGo/BitGoJS/commit/d2ed8dc9ff6ba9fa14fc77132e5f887fe7006b16))
373
- - **statics:** update prime trading tokens ([eca20c1](https://github.com/BitGo/BitGoJS/commit/eca20c119529c48620438014071d52638e5724ea))
374
-
375
- # [6.18.0-rc.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.22...@bitgo/statics@6.18.0-rc.23) (2022-07-05)
376
-
377
- ### Reverts
378
-
379
- - Revert "Revert "feat(bitgo): change the names from algo tokens"" ([ea9a761](https://github.com/BitGo/BitGoJS/commit/ea9a7619ef71de008c99fa22bab14ec7aa358db6))
380
-
381
- # [6.18.0-rc.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.21...@bitgo/statics@6.18.0-rc.22) (2022-07-01)
382
-
383
- ### Features
384
-
385
- - **statics:** add cardano ada statics ([12c7785](https://github.com/BitGo/BitGoJS/commit/12c7785ff0986edecd4055f8ed277f3fc9d1186e))
386
-
387
- # [6.18.0-rc.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.20...@bitgo/statics@6.18.0-rc.21) (2022-06-30)
388
-
389
- **Note:** Version bump only for package @bitgo/statics
390
-
391
- # [6.18.0-rc.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.18...@bitgo/statics@6.18.0-rc.20) (2022-06-29)
392
-
393
- ### Reverts
394
-
395
- - Revert "feat(bitgo): change the names from algo tokens" ([81e794b](https://github.com/BitGo/BitGoJS/commit/81e794bba02f050055452481e0b87b58e68928de))
396
-
397
- # [6.18.0-rc.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.18...@bitgo/statics@6.18.0-rc.19) (2022-06-29)
398
-
399
- ### Reverts
400
-
401
- - Revert "feat(bitgo): change the names from algo tokens" ([81e794b](https://github.com/BitGo/BitGoJS/commit/81e794bba02f050055452481e0b87b58e68928de))
402
-
403
- # [6.18.0-rc.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.17...@bitgo/statics@6.18.0-rc.18) (2022-06-27)
404
-
405
- ### Features
406
-
407
- - **statics:** tokens june pt2 ([e98a176](https://github.com/BitGo/BitGoJS/commit/e98a176b8081ac512d27530e8cf4c0200b5884d2))
408
-
409
- # [6.18.0-rc.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.16...@bitgo/statics@6.18.0-rc.17) (2022-06-23)
410
-
411
- **Note:** Version bump only for package @bitgo/statics
412
-
413
- # [6.18.0-rc.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.15...@bitgo/statics@6.18.0-rc.16) (2022-06-22)
414
-
415
- ### Features
416
-
417
- - **bitgo:** change the names from algo tokens ([8925d4e](https://github.com/BitGo/BitGoJS/commit/8925d4e15cd973e86bc3f78ade3fa863adfde656))
418
- - onboard solana GMT token ([e0d0e56](https://github.com/BitGo/BitGoJS/commit/e0d0e563246e7b3c339ee3121aa58f09d07750b6))
419
-
420
- # [6.18.0-rc.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.14...@bitgo/statics@6.18.0-rc.15) (2022-06-21)
421
-
422
- **Note:** Version bump only for package @bitgo/statics
423
-
424
- # [6.18.0-rc.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.13...@bitgo/statics@6.18.0-rc.14) (2022-06-14)
425
-
426
- ### Features
427
-
428
- - **sdk-coin-avaxp:** implemented builder for AddValidatorTx ([7cb8b2f](https://github.com/BitGo/BitGoJS/commit/7cb8b2fcaa31ff0dc165abcddd1f8383a7ecef5a))
429
-
430
- # [6.18.0-rc.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.12...@bitgo/statics@6.18.0-rc.13) (2022-06-13)
431
-
432
- ### Features
433
-
434
- - **statics:** add hbar token support + added hedera usdc token ([c844536](https://github.com/BitGo/BitGoJS/commit/c84453683cdfa9c412f3825ec104e406db502b63))
435
-
436
- # [6.18.0-rc.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.11...@bitgo/statics@6.18.0-rc.12) (2022-06-10)
437
-
438
- ### Features
439
-
440
- - **statics:** add TSS as a coin feature ([f8a274b](https://github.com/BitGo/BitGoJS/commit/f8a274b453da826ce37d0d02fd1ad3d656164d10))
441
- - **statics:** tokens begin june ([3fda3e3](https://github.com/BitGo/BitGoJS/commit/3fda3e3dabccbe78b29ab92aa9f0288854c99983))
442
-
443
- # [6.18.0-rc.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.10...@bitgo/statics@6.18.0-rc.11) (2022-06-07)
444
-
445
- ### Bug Fixes
446
-
447
- - **statics:** fix tsol token decimal ([3b66d7e](https://github.com/BitGo/BitGoJS/commit/3b66d7e5fa5277d63eb810b1c7b70607ce9ce663))
448
-
449
- # [6.18.0-rc.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.9...@bitgo/statics@6.18.0-rc.10) (2022-06-07)
450
-
451
- ### Features
452
-
453
- - implement polygon util method, core skeleton ([562855a](https://github.com/BitGo/BitGoJS/commit/562855afea41458f9569c90914619a6d515b92c0))
454
-
455
- # [6.18.0-rc.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.8...@bitgo/statics@6.18.0-rc.9) (2022-06-01)
456
-
457
- ### Features
458
-
459
- - **statics:** add tokens of end of may ([21d895d](https://github.com/BitGo/BitGoJS/commit/21d895de437600e9cdfcbc45e1f920e0065f83cb))
460
-
461
- # [6.18.0-rc.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.7...@bitgo/statics@6.18.0-rc.8) (2022-05-23)
462
-
463
- ### Features
464
-
465
- - **statics:** update new wxrp ([ba6ff5d](https://github.com/BitGo/BitGoJS/commit/ba6ff5dd310f1b3738e303c58f122621481f5fb0))
466
-
467
- # [6.18.0-rc.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.6...@bitgo/statics@6.18.0-rc.7) (2022-05-17)
468
-
469
- ### Bug Fixes
470
-
471
- - **statics:** remove bn.js dependency ([d473aa1](https://github.com/BitGo/BitGoJS/commit/d473aa1958ee405c35d4e86ed520082fd5cb64b1))
472
-
473
- ### Features
474
-
475
- - **statics:** add fly coin ([4ee0b05](https://github.com/BitGo/BitGoJS/commit/4ee0b0556a3358999fe5f9986882ca3e2389038c))
476
- - **statics:** add polygon coin config ([fc7f9b3](https://github.com/BitGo/BitGoJS/commit/fc7f9b3ee22849cf615ca49dc32ac2fcac687ec7))
477
-
478
- # [6.18.0-rc.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.5...@bitgo/statics@6.18.0-rc.6) (2022-05-16)
479
-
480
- ### Features
481
-
482
- - **statics:** add fiatusd and tfiatusd coins ([1750a43](https://github.com/BitGo/BitGoJS/commit/1750a4319298a839fc7dd3f418420f26b2cdb5a0))
483
-
484
- # [6.18.0-rc.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.4...@bitgo/statics@6.18.0-rc.5) (2022-05-13)
485
-
486
- **Note:** Version bump only for package @bitgo/statics
487
-
488
- # [6.18.0-rc.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.3...@bitgo/statics@6.18.0-rc.4) (2022-05-13)
489
-
490
- ### Features
491
-
492
- - **statics:** create statics for dogecoin ([66e8862](https://github.com/BitGo/BitGoJS/commit/66e88626e09cf886748c2db2ce866b9a7f26cab3))
493
-
494
- # [6.18.0-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.2...@bitgo/statics@6.18.0-rc.3) (2022-05-12)
495
-
496
- ### Bug Fixes
497
-
498
- - **statics:** change the display of BitGo DAI to SAI to reduce entry errors ([e88d8b9](https://github.com/BitGo/BitGoJS/commit/e88d8b93cf24617094f8f0a892083f2e15a35019))
499
- - **statics:** change the display of BitGo DAI to SAI to reduce entry errors ([c2f90b7](https://github.com/BitGo/BitGoJS/commit/c2f90b7e7522bd245b9f20b8fe6755b50f087815))
500
- - **statics:** change the display of BitGo DAI to SAI to reduce entry errors ([44dcff6](https://github.com/BitGo/BitGoJS/commit/44dcff68c2b03a70094e2e744039c3cc9c7fe505))
501
- - **statics:** change the display of BitGo DAI to SAI to reduce entry errors ([438c7cc](https://github.com/BitGo/BitGoJS/commit/438c7ccb48375ae081f39225810094b4283acb3e))
502
- - **statics:** change the display of BitGo DAI to SAI to reduce entry errors ([64bde49](https://github.com/BitGo/BitGoJS/commit/64bde499a6ed71a015cf3baa51c2e07d3d7fbaf7))
503
- - **statics:** change the display of BitGo DAI to SAI to reduce entry errors ([fce2d8e](https://github.com/BitGo/BitGoJS/commit/fce2d8e70bef87096fe185ebcfb4df3e391ac1d4))
504
- - **statics:** change the display of BitGo DAI to SAI to reduce entry errors ([7b39d92](https://github.com/BitGo/BitGoJS/commit/7b39d9298a937ce1bc1bc2606bf5c87883269398))
505
-
506
- ### Features
507
-
508
- - **statics:** cFX token deletion from bitgo wallet ([e7e32d6](https://github.com/BitGo/BitGoJS/commit/e7e32d6051aa2f2316dcd796d12b44b957f96d08))
509
-
510
- # [6.18.0-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.18.0-rc.0...@bitgo/statics@6.18.0-rc.1) (2022-05-06)
511
-
512
- ### Features
513
-
514
- - **statics:** create statics for avaxp ([34776cd](https://github.com/BitGo/BitGoJS/commit/34776cd649f424a05b33481b4a582ea4cf844325))
515
-
516
- # [6.17.0-rc.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0...@bitgo/statics@6.17.0-rc.24) (2022-05-04)
517
-
518
- ### Features
519
-
520
- - **statics:** add new tokens for may BOBA, OKB and PYR ([07d9ed2](https://github.com/BitGo/BitGoJS/commit/07d9ed2bbc82cd946cd5dd7c28d7713d16f01d05))
521
-
522
- # [6.17.0-rc.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.21...@bitgo/statics@6.17.0-rc.22) (2022-04-19)
523
-
524
- ### Features
525
-
526
- - **statics:** add april tokens ERC20 and algo token ([a0cb164](https://github.com/BitGo/BitGoJS/commit/a0cb164d01872abc47925df97ddf43c35b58c7f1))
527
-
528
- # [6.17.0-rc.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.20...@bitgo/statics@6.17.0-rc.21) (2022-04-19)
529
-
530
- **Note:** Version bump only for package @bitgo/statics
531
-
532
- # [6.17.0-rc.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.18...@bitgo/statics@6.17.0-rc.19) (2022-04-12)
533
-
534
- **Note:** Version bump only for package @bitgo/statics
535
-
536
- # [6.17.0-rc.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.15...@bitgo/statics@6.17.0-rc.18) (2022-04-08)
537
-
538
- ### Features
539
-
540
- - **statics:** update contract nym erc20 token ([84cd360](https://github.com/BitGo/BitGoJS/commit/84cd3609a9c5533635082d22bd42eb96ff1642fc))
541
-
542
- # [6.17.0-rc.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.15...@bitgo/statics@6.17.0-rc.17) (2022-04-06)
543
-
544
- ### Features
545
-
546
- - **statics:** update contract nym erc20 token ([84cd360](https://github.com/BitGo/BitGoJS/commit/84cd3609a9c5533635082d22bd42eb96ff1642fc))
547
-
548
- # [6.17.0-rc.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.15...@bitgo/statics@6.17.0-rc.16) (2022-04-05)
549
-
550
- ### Features
551
-
552
- - **statics:** update contract nym erc20 token ([84cd360](https://github.com/BitGo/BitGoJS/commit/84cd3609a9c5533635082d22bd42eb96ff1642fc))
@@ -1,3 +0,0 @@
1
- export * from './mainnet';
2
- export * from './westend';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../resources/dot/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
@@ -1,15 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./mainnet"), exports);
14
- __exportStar(require("./westend"), exports);
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9yZXNvdXJjZXMvZG90L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQUFBLDRDQUEwQjtBQUMxQiw0Q0FBMEIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL21haW5uZXQnO1xuZXhwb3J0ICogZnJvbSAnLi93ZXN0ZW5kJztcbiJdfQ==