@vectis/extension-client
Advanced tools
+1
-1
| { | ||
| "name": "@vectis/extension-client", | ||
| "version": "0.5.0", | ||
| "version": "0.6.0", | ||
| "description": "Client for vectis extension", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
+26
-5
@@ -10,10 +10,31 @@ export interface KeyInfo { | ||
| export interface ChainInfo { | ||
| readonly chainId: string; | ||
| readonly chainName: string; | ||
| readonly prettyName: string; | ||
| readonly bech32Prefix: string; | ||
| readonly rpcUrl: string; | ||
| readonly restUrl: string; | ||
| readonly addressPrefix: string; | ||
| readonly chainId: string; | ||
| readonly chainName: string; | ||
| readonly feeToken: string; | ||
| readonly bip44: BIP44; | ||
| readonly feeTokens: Currency[]; | ||
| readonly stakingToken: string; | ||
| readonly gasPrice: number; | ||
| readonly defaultGasPrice: number; | ||
| readonly defaultFeeToken: string; | ||
| readonly gasPriceStep?: { | ||
| low: number; | ||
| average: number; | ||
| high: number; | ||
| }; | ||
| readonly subqueryUrl?: string; | ||
| readonly vectisFactory?: string; | ||
| readonly features?: string[]; | ||
| readonly testnet?: boolean; | ||
| } | ||
| export interface BIP44 { | ||
| readonly coinType: number; | ||
| } | ||
| export interface Currency { | ||
| readonly denom: string; | ||
| readonly coinDecimals: number; | ||
| readonly coinGeckoId?: string; | ||
| readonly coinImageUrl?: string; | ||
| } |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
8743
7.03%199
11.8%0
-100%