Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Aug 14, 2022
1 parent 7720787 commit fa7acde
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ npm install chain-registry
```js
import { assets, chains, ibc } from 'chain-registry';

const asset = assets.find(({chain_name})=>chain_name==='osmosis');

console.log(asset);
const assetList = assets.find(({chain_name})=>chain_name==='osmosis');

console.log(assetList);
```

will output:

```js
Expand Down
6 changes: 3 additions & 3 deletions packages/chain-registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ npm install chain-registry
```js
import { assets, chains, ibc } from 'chain-registry';

const asset = assets.find(({chain_name})=>chain_name==='osmosis');

console.log(asset);
const assetList = assets.find(({chain_name})=>chain_name==='osmosis');

console.log(assetList);
```

will output:

```js
Expand Down

0 comments on commit fa7acde

Please sign in to comment.