@bitgo/statics
Advanced tools
Comparing version 26.0.0 to 27.0.0
@@ -6,2 +6,26 @@ # Change Log | ||
# [27.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@27.0.0) (2023-09-25) | ||
### Bug Fixes | ||
- **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7)) | ||
- **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a)) | ||
### chore | ||
- **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4)) | ||
### Features | ||
- **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa)) | ||
- **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b)) | ||
- **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57)) | ||
- **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1)) | ||
- **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042)) | ||
- **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1)) | ||
### BREAKING CHANGES | ||
- **statics:** FIX REEF to use UnderlyingAsset.REEF | ||
# [26.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@26.0.0) (2023-09-09) | ||
@@ -8,0 +32,0 @@ |
@@ -28,2 +28,3 @@ import { BaseNetwork } from './networks'; | ||
CELO = "celo", | ||
CORE = "core", | ||
CSPR = "cspr", | ||
@@ -42,2 +43,3 @@ DASH = "dash", | ||
INJECTIVE = "injective", | ||
KAVA = "kava", | ||
LTC = "ltc", | ||
@@ -119,3 +121,11 @@ POLYGON = "polygon", | ||
*/ | ||
SHA256_WITH_ECDSA_TSS = "sha256-with-ecdsa-tss" | ||
SHA256_WITH_ECDSA_TSS = "sha256-with-ecdsa-tss", | ||
/** | ||
* This coin is cosmos like coin | ||
*/ | ||
COSMOS_LIKE_COINS = "cosmos_like_coins", | ||
/** | ||
* This coin supports the ability to rebuild transactions on custody signing | ||
*/ | ||
REBUILD_ON_CUSTODY_SIGNING = "rebuild-on-custody-signing" | ||
} | ||
@@ -149,2 +159,3 @@ /** | ||
CELO = "celo", | ||
CORE = "core", | ||
CSPR = "cspr", | ||
@@ -165,2 +176,3 @@ ETH = "eth", | ||
INJECTIVE = "injective", | ||
KAVA = "kava", | ||
LTC = "ltc", | ||
@@ -175,2 +187,3 @@ NEAR = "near", | ||
STX = "stx", | ||
TESTCORE = "testcore", | ||
TIA = "tia", | ||
@@ -602,2 +615,3 @@ TRX = "trx", | ||
LRCV2 = "lrcv2", | ||
LSETH = "lseth", | ||
LTCBEAR = "ltcbear", | ||
@@ -1140,2 +1154,5 @@ LTCBULL = "ltcbull", | ||
'bsc:busd' = "bsc:busd", | ||
'bsc:ksm' = "bsc:ksm", | ||
'bsc:usdt' = "bsc:usdt", | ||
'bsc:vet' = "bsc:vet", | ||
'tbsc:busd' = "tbsc:busd", | ||
@@ -1200,3 +1217,6 @@ 'erc721:bsctoken' = "erc721:bsctoken", | ||
INJECTIVE = "inj", | ||
ZETA = "azeta" | ||
ZETA = "azeta", | ||
KAVA = "ukava", | ||
CORE = "ucore", | ||
TESTCORE = "utestcore" | ||
} | ||
@@ -1203,0 +1223,0 @@ export interface BaseCoinConstructorOptions { |
@@ -555,2 +555,22 @@ import { CoinFamily } from './base'; | ||
} | ||
declare class Kava extends Mainnet implements AccountNetwork { | ||
name: string; | ||
family: CoinFamily; | ||
explorerUrl: string; | ||
} | ||
declare class KavaTestnet extends Testnet implements AccountNetwork { | ||
name: string; | ||
family: CoinFamily; | ||
explorerUrl: string; | ||
} | ||
declare class Core extends Mainnet implements AccountNetwork { | ||
name: string; | ||
family: CoinFamily; | ||
explorerUrl: string; | ||
} | ||
declare class CoreTestnet extends Testnet implements AccountNetwork { | ||
name: string; | ||
family: CoinFamily; | ||
explorerUrl: string; | ||
} | ||
declare class Stx extends Mainnet implements StacksNetwork { | ||
@@ -689,2 +709,3 @@ name: string; | ||
celo: Readonly<Celo>; | ||
core: Readonly<Core>; | ||
dash: Readonly<Dash>; | ||
@@ -703,2 +724,3 @@ dogecoin: Readonly<Dogecoin>; | ||
injective: Readonly<Injective>; | ||
kava: Readonly<Kava>; | ||
litecoin: Readonly<Litecoin>; | ||
@@ -748,2 +770,3 @@ polygon: Readonly<Polygon>; | ||
injective: Readonly<InjectiveTestnet>; | ||
kava: Readonly<KavaTestnet>; | ||
kovan: Readonly<Kovan>; | ||
@@ -763,2 +786,3 @@ goerli: Readonly<Goerli>; | ||
susd: Readonly<SUSDTestnet>; | ||
core: Readonly<CoreTestnet>; | ||
tia: Readonly<TiaTestnet>; | ||
@@ -765,0 +789,0 @@ trx: Readonly<TrxTestnet>; |
{ | ||
"name": "@bitgo/statics", | ||
"version": "26.0.0", | ||
"version": "27.0.0", | ||
"description": "dependency-free static configuration for the bitgo platform", | ||
@@ -39,3 +39,4 @@ "main": "./dist/src/index.js", | ||
] | ||
} | ||
}, | ||
"gitHead": "f2ccfe835a393cc5b17c8c3d9fe5e5637a8d13eb" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1638485
46
9765
1