You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@chain-registry/types

Package Overview
Dependencies
Maintainers
3
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.16.0 to 0.17.0

8

CHANGELOG.md

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

# [0.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.16.0...@chain-registry/types@0.17.0) (2023-09-15)
**Note:** Version bump only for package @chain-registry/types
# [0.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.15.0...@chain-registry/types@0.16.0) (2023-04-20)

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

4

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

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

},
"gitHead": "51dac38c0a630c1ca49d55de9b4a9c71665a6775"
"gitHead": "87f2c124ac734e0f47596e39407f5462c94a506b"
}

@@ -14,2 +14,10 @@ export interface AssetDenomUnit {

}
export interface AdditionalMintageTrace {
type: 'additional-mintage';
counterparty: {
chain_name: string;
base_denom: string;
};
provider: string;
}
export interface SyntheicTrace {

@@ -72,5 +80,12 @@ type: 'synthetic';

channel_id: string;
path?: string;
};
}
export declare type AssetTrace = IBCCw20Trace | IBCTrace | SyntheicTrace | LiquidStakeTrace | WrapTrace | BridgeTrace;
export type AssetTrace = IBCCw20Trace | IBCTrace | SyntheicTrace | LiquidStakeTrace | WrapTrace | BridgeTrace | AdditionalMintageTrace;
export interface LogoImage {
png?: string;
svg?: string;
jpeg?: string;
theme?: any;
}
export interface Asset {

@@ -85,7 +100,4 @@ description?: string;

symbol: string;
logo_URIs?: {
png?: string;
svg?: string;
jpeg?: string;
};
logo_URIs?: LogoImage;
images?: LogoImage[];
coingecko_id?: string;

@@ -100,3 +112,3 @@ keywords?: string[];

}
export declare type AssetList = {
export type AssetList = {
$schema?: string;

@@ -103,0 +115,0 @@ chain_name: string;

export interface Chain {
$schema?: string;
chain_name: string;
pre_fork_chain_name?: string;
status: string;

@@ -104,2 +105,3 @@ network_type: string;

'windows/amd64'?: string;
'windows/arm64'?: string;
};

@@ -113,2 +115,3 @@ cosmos_sdk_version?: string;

cosmwasm_enabled?: boolean;
cosmwasm_path?: string;
ibc_go_version?: string;

@@ -121,3 +124,4 @@ /**

name?: string;
genesis_url: string;
genesis_url?: string;
ics_ccv_url?: string;
};

@@ -137,2 +141,3 @@ versions?: {

height?: number;
proposal?: number;
/**

@@ -143,2 +148,3 @@ * [Optional] Name of the following version

recommended_version?: string;
cosmwasm_path?: string;
compatible_versions?: string[];

@@ -163,2 +169,3 @@ cosmos_sdk_version?: string;

'windows/amd64'?: string;
'windows/arm64'?: string;
};

@@ -218,2 +225,2 @@ }[];

}
export declare type Chains = Chain[];
export type Chains = Chain[];
SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc