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.18.5 to 0.18.7

16

CHANGELOG.md

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

## [0.18.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.18.6...@chain-registry/types@0.18.7) (2024-03-27)
**Note:** Version bump only for package @chain-registry/types
## [0.18.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.18.5...@chain-registry/types@0.18.6) (2024-03-27)
**Note:** Version bump only for package @chain-registry/types
## [0.18.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/types@0.18.4...@chain-registry/types@0.18.5) (2024-03-21)

@@ -8,0 +24,0 @@

6

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

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

"build": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build:ts": "tsc --project ./tsconfig.json",
"build:ts": "tsc",
"buidl": "npm run build && npm run build:ts",

@@ -76,3 +76,3 @@ "prepare": "npm run build",

},
"gitHead": "bce72467286cbc2f4eb3fd94188411d6e89aaaba"
"gitHead": "7def14f7596a56f96fa377f1f410d03466ee5735"
}

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

}
export interface TestMintageTrace {
type: 'test-mintage';
counterparty: {
chain_name: string;
base_denom: string;
};
provider: string;
}
export interface StringTypeTrace {
type: string;
counterparty: {
chain_name: string;
base_denom: string;
};
provider: string;
}
export interface AdditionalMintageTrace {

@@ -83,3 +99,3 @@ type: 'additional-mintage';

}
export type AssetTrace = IBCCw20Trace | IBCTrace | SyntheicTrace | LiquidStakeTrace | WrapTrace | BridgeTrace | AdditionalMintageTrace;
export type AssetTrace = IBCCw20Trace | IBCTrace | SyntheicTrace | LiquidStakeTrace | WrapTrace | BridgeTrace | AdditionalMintageTrace | TestMintageTrace | StringTypeTrace;
export interface LogoImage {

@@ -96,3 +112,5 @@ image_sync?: {

export interface Asset {
deprecated?: boolean;
description?: string;
extended_description?: string;
type_asset?: string;

@@ -115,2 +133,7 @@ address?: string;

};
socials?: {
webiste?: string;
website?: string;
twitter?: string;
};
}

@@ -117,0 +140,0 @@ export type AssetList = {

@@ -55,2 +55,5 @@ export interface Chain {

images?: {
image_sync?: {
chain_name?: string;
};
png?: string;

@@ -60,3 +63,7 @@ svg?: string;

primary_color_hex?: string;
dark_mode?: boolean;
circle?: boolean;
};
layout?: string;
text_position?: string;
}[];

@@ -63,0 +70,0 @@ fees?: {

@@ -16,12 +16,28 @@ export interface IBCInfo {

channel_id: string;
client_id?: string;
port_id: string;
connection_id?: string;
};
chain_2: {
channel_id: string;
client_id?: string;
port_id: string;
connection_id?: string;
};
ordering: string;
version: string;
fee_version?: string;
tags?: object;
}[];
operators?: {
chain_1?: {
address?: string;
};
chain_2?: {
address?: string;
};
memo?: string;
name?: string;
discord_handle?: string;
}[];
}
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