Socket
Socket
Sign inDemoInstall

@chain-registry/types

Package Overview
Dependencies
Maintainers
1
Versions
214
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chain-registry/types - npm Package Compare versions

Comparing version 0.14.0 to 0.15.0

8

CHANGELOG.md

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

# [0.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.14.0...@chain-registry/types@0.15.0) (2023-04-18)
**Note:** Version bump only for package @chain-registry/types
# [0.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.13.1...@chain-registry/types@0.14.0) (2022-12-08)

@@ -8,0 +16,0 @@

4

package.json
{
"name": "@chain-registry/types",
"version": "0.14.0",
"version": "0.15.0",
"description": "Chain Registry types",

@@ -76,3 +76,3 @@ "author": "Dan Lynch <pyramation@gmail.com>",

},
"gitHead": "ad0a582adf079e3d5bf899ef18e0f7c605b09579"
"gitHead": "20fa47de0103e4a00dc20b88ce160e06e5bc7fea"
}

@@ -27,3 +27,7 @@ export interface AssetDenomUnit {

base_denom: string;
contract?: string;
};
chain?: {
contract: string;
};
provider: string;

@@ -36,2 +40,3 @@ }

base_denom: string;
contract?: string;
};

@@ -38,0 +43,0 @@ chain?: {

@@ -10,5 +10,34 @@ export interface Chain {

website?: string;
/**
* The default prefix for the human-readable part of addresses that identifies the coin type. Must be registered with SLIP-0173. E.g., 'cosmos'
*/
bech32_prefix: string;
bech32_config?: {
/**
* e.g., 'cosmos'
*/
bech32PrefixAccAddr?: string;
/**
* e.g., 'cosmospub'
*/
bech32PrefixAccPub?: string;
/**
* e.g., 'cosmosvaloper'
*/
bech32PrefixValAddr?: string;
/**
* e.g., 'cosmosvaloperpub'
*/
bech32PrefixValPub?: string;
/**
* e.g., 'cosmosvalcons'
*/
bech32PrefixConsAddr?: string;
/**
* e.g., 'cosmosvalconspub'
*/
bech32PrefixConsPub?: string;
};
daemon_name?: string;
key_algos?: string[];
key_algos?: ('secp256k1' | 'ethsecp256k1' | 'ed25519' | 'sr25519' | string)[];
extra_codecs?: string[];

@@ -18,2 +47,3 @@ keywords?: string[];

slip44: number;
alternative_slip44s?: number[];
logo_URIs?: {

@@ -24,2 +54,9 @@ png?: string;

};
images?: {
png?: string;
svg?: string;
theme?: {
primary_color_hex?: string;
};
}[];
fees?: {

@@ -32,2 +69,6 @@ fee_tokens: {

high_gas_price?: number;
gas_costs?: {
cosmos_send?: number;
ibc_transfer?: number;
};
}[];

@@ -39,2 +80,12 @@ };

}[];
lock_duration?: {
/**
* The number of blocks for which the staked tokens are locked.
*/
blocks?: number;
/**
* The approximate time for which the staked tokens are locked.
*/
time?: string;
};
};

@@ -52,19 +103,63 @@ explorers?: {

compatible_versions?: string[];
binaries?: Record<string, string>;
binaries?: {
'linux/amd64'?: string;
'linux/arm64'?: string;
'darwin/amd64'?: string;
'darwin/arm64'?: string;
'windows/amd64'?: string;
};
cosmos_sdk_version?: string;
tendermint_version?: string;
consensus?: {
type: 'tendermint' | 'cometbft';
version?: string;
};
cosmwasm_version?: string;
cosmwasm_enabled?: boolean;
ibc_go_version?: string;
ics_enabled?: string[];
/**
* List of IBC apps (usually corresponding to a ICS standard) which have been enabled on the network.
*/
ics_enabled?: ('ics20-1' | 'ics27-1' | 'mauth' | string)[];
genesis?: {
tag?: string;
name?: string;
genesis_url?: string;
genesis_url: string;
};
versions?: {
name?: string;
/**
* Official Upgrade Name
*/
name: string;
/**
* Git Upgrade Tag
*/
tag?: string;
/**
* Block Height
*/
height?: number;
/**
* [Optional] Name of the following version
*/
next_version_name?: string;
recommended_version?: string;
compatible_versions?: string[];
cosmos_sdk_version?: string;
consensus?: {
type: 'tendermint' | 'cometbft';
version?: string;
};
cosmwasm_version?: string;
cosmwasm_enabled?: boolean;
ibc_go_version?: string;
/**
* List of IBC apps (usually corresponding to a ICS standard) which have been enabled on the network.
*/
ics_enabled?: ('ics20-1' | 'ics27-1' | 'mauth' | string)[];
binaries?: {
'linux/amd64'?: string;
'linux/arm64'?: string;
'darwin/amd64'?: string;
'darwin/arm64'?: string;
'windows/amd64'?: string;
};
}[];

@@ -106,2 +201,7 @@ };

}[];
wss?: {
address: string;
provider?: string;
archive?: boolean;
}[];
sidechains_rpc?: {

@@ -108,0 +208,0 @@ address: string;

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