🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@vectis/extension-client

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vectis/extension-client - npm Package Compare versions

Comparing version
0.5.0
to
0.6.0
+1
-1
package.json
{
"name": "@vectis/extension-client",
"version": "0.5.0",
"version": "0.6.0",
"description": "Client for vectis extension",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -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;
}