chain-registry
Advanced tools
Comparing version 0.5.0 to 0.5.1
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.5.0...chain-registry@0.5.1) (2022-08-14) | ||
**Note:** Version bump only for package chain-registry | ||
# [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.4.1...chain-registry@0.5.0) (2022-08-13) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "chain-registry", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"description": "Cosmos chain registry ⚛️", | ||
@@ -74,3 +74,3 @@ "author": "Dan Lynch <pyramation@gmail.com>", | ||
}, | ||
"gitHead": "b20ad10d099c2e8f970b6ac42d0826198c3fd4fe" | ||
"gitHead": "9ec7cd41f8cf8ed996102fe10f787f33c45811e8" | ||
} |
declare const _exports: { | ||
[n: number]: { | ||
$schema: string; | ||
chain_name: string; | ||
assets: ({ | ||
description: string; | ||
denom_units: ({ | ||
denom: string; | ||
exponent: number; | ||
} | { | ||
denom: string; | ||
exponent: number; | ||
aliases: string[]; | ||
})[]; | ||
base: string; | ||
name: string; | ||
display: string; | ||
symbol: string; | ||
logo_URIs: { | ||
svg: string; | ||
png: string; | ||
}; | ||
coingecko_id: string; | ||
}) | ||
} | ||
[n: number]: { | ||
$schema: string; | ||
chain_name: string; | ||
assets: { | ||
description: string; | ||
denom_units: ( | ||
| { | ||
denom: string; | ||
exponent: number; | ||
} | ||
| { | ||
denom: string; | ||
exponent: number; | ||
aliases: string[]; | ||
} | ||
)[]; | ||
base: string; | ||
name: string; | ||
display: string; | ||
symbol: string; | ||
logo_URIs: { | ||
svg: string; | ||
png: string; | ||
}; | ||
coingecko_id: string; | ||
}; | ||
}; | ||
}; | ||
export = _exports; |
1096258
36541