Socket
Socket
Sign inDemoInstall

@bitgo/statics

Package Overview
Dependencies
Maintainers
7
Versions
394
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bitgo/statics - npm Package Compare versions

Comparing version 16.0.0 to 16.1.0

15

CHANGELOG.md

@@ -6,2 +6,17 @@ # Change Log

# [16.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@16.0.0...@bitgo/statics@16.1.0) (2023-06-05)
### Bug Fixes
- **statics:** fix osmo url ([98cdffd](https://github.com/BitGo/BitGoJS/commit/98cdffde73faf34391076ad73c708d5b16506053))
### Features
- **sdk-coin-osmo:** osmosis sdk init ([cc20a59](https://github.com/BitGo/BitGoJS/commit/cc20a5908528d2ad6bcc4a588acd7b1c8b0af379))
- **static:** add celestia config ([80bbe9b](https://github.com/BitGo/BitGoJS/commit/80bbe9b37cbf79adfb391cd048462363d08b2476))
- **statics:** add agoric config ([ae8312b](https://github.com/BitGo/BitGoJS/commit/ae8312b955045bf6b53c07026616a58aa8a63120))
- **statics:** add Provenance config ([481f840](https://github.com/BitGo/BitGoJS/commit/481f840937a3e82c95e48f7d796c18e5998f946f))
- **statics:** add sei config ([660ace0](https://github.com/BitGo/BitGoJS/commit/660ace00b24a6e96d274c6a437c7a1a4345cc53c))
- **statics:** set bsv coin feature as deprecated ([a520367](https://github.com/BitGo/BitGoJS/commit/a5203671638e8f8a0dc8c9243cf495a3a42eb095))
# [16.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@15.1.2...@bitgo/statics@16.0.0) (2023-05-25)

@@ -8,0 +23,0 @@

17

dist/src/base.d.ts

@@ -22,2 +22,3 @@ import { BaseNetwork } from './networks';

BCHA = "bcha",
BLD = "bld",
BSC = "bsc",

@@ -38,2 +39,3 @@ BSV = "bsv",

FIAT = "fiat",
HASH = "hash",
HBAR = "hbar",

@@ -44,3 +46,5 @@ LTC = "ltc",

OFC = "ofc",
OSMO = "osmo",
RBTC = "rbtc",
SEI = "sei",
SOL = "sol",

@@ -50,2 +54,3 @@ SUI = "sui",

SUSD = "susd",
TIA = "tia",
TRX = "trx",

@@ -122,2 +127,3 @@ XLM = "xlm",

BCHA = "bcha",
BLD = "bld",
BSC = "bsc",

@@ -141,10 +147,14 @@ BSV = "bsv",

GTC = "gtc",
HASH = "hash",
HBAR = "hbar",
LTC = "ltc",
NEAR = "near",
OSMO = "osmo",
POLYGON = "polygon",
RBTC = "rbtc",
SEI = "sei",
SOL = "sol",
SUI = "sui",
STX = "stx",
TIA = "tia",
TRX = "trx",

@@ -1124,3 +1134,8 @@ USD = "usd",

OFC = "ofcCoin",
FIAT = "fiatCoin"
OSMO = "uosmo",
FIAT = "fiatCoin",
TIA = "utia",
HASH = "nhash",
BLD = "ubld",
SEI = "usei"
}

@@ -1127,0 +1142,0 @@ export interface BaseCoinConstructorOptions {

@@ -485,2 +485,52 @@ import { CoinFamily } from './base';

}
declare class Osmo extends Mainnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class OsmoTestnet extends Testnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class Tia extends Mainnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class TiaTestnet extends Testnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class Hash extends Mainnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class HashTestnet extends Testnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class Bld extends Mainnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class BldTestnet extends Testnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class Sei extends Mainnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class SeiTestnet extends Testnet implements AccountNetwork {
name: string;
family: CoinFamily;
explorerUrl: string;
}
declare class Stx extends Mainnet implements StacksNetwork {

@@ -617,2 +667,3 @@ name: string;

bitcoinSV: Readonly<BitcoinSV>;
bld: Readonly<Bld>;
bsc: Readonly<BinanceSmartChain>;

@@ -631,2 +682,3 @@ casper: Readonly<Casper>;

fiat: Readonly<Fiat>;
hash: Readonly<Hash>;
hedera: Readonly<Hedera>;

@@ -636,4 +688,6 @@ litecoin: Readonly<Litecoin>;

ofc: Readonly<Ofc>;
osmo: Readonly<Osmo>;
rbtc: Readonly<Rbtc>;
stellar: Readonly<Stellar>;
sei: Readonly<Sei>;
sol: Readonly<Sol>;

@@ -644,2 +698,3 @@ sui: Readonly<Sui>;

susd: Readonly<SUSD>;
tia: Readonly<Tia>;
trx: Readonly<Trx>;

@@ -660,2 +715,3 @@ xrp: Readonly<Xrp>;

bitcoinSV: Readonly<BitcoinSVTestnet>;
bld: Readonly<BldTestnet>;
bsc: Readonly<BinanceSmartChainTestnet>;

@@ -672,2 +728,3 @@ casper: Readonly<CasperTestnet>;

ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
hash: Readonly<HashTestnet>;
hedera: Readonly<HederaTestnet>;

@@ -679,4 +736,6 @@ kovan: Readonly<Kovan>;

ofc: Readonly<OfcTestnet>;
osmo: Readonly<OsmoTestnet>;
rbtc: Readonly<RbtcTestnet>;
stellar: Readonly<StellarTestnet>;
sei: Readonly<SeiTestnet>;
sol: Readonly<SolTestnet>;

@@ -687,2 +746,3 @@ sui: Readonly<SuiTestnet>;

susd: Readonly<SUSDTestnet>;
tia: Readonly<TiaTestnet>;
trx: Readonly<TrxTestnet>;

@@ -689,0 +749,0 @@ xrp: Readonly<XrpTestnet>;

4

package.json
{
"name": "@bitgo/statics",
"version": "16.0.0",
"version": "16.1.0",
"description": "dependency-free static configuration for the bitgo platform",

@@ -40,3 +40,3 @@ "main": "./dist/src/index.js",

},
"gitHead": "5d97fba87a565f6291dcec6a7be6d0696510893f"
"gitHead": "9efc360c50ab1809e58cb5b0024850f14d62943a"
}

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc