Skip to content

Commit

Permalink
fix types in asset-list example
Browse files Browse the repository at this point in the history
  • Loading branch information
marslavish committed Nov 1, 2024
1 parent 05354d2 commit 78e8131
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples/asset-list/utils/types.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { AssetDenomUnit } from '@chain-registry/types';
import { Duration } from 'osmo-query/dist/codegen/google/protobuf/duration';
import { Gauge } from 'osmo-query/dist/codegen/osmosis/incentives/gauge';
import { SuperfluidAsset } from 'osmo-query/dist/codegen/osmosis/superfluid/superfluid';
import { Coin } from 'osmo-query/dist/codegen/cosmos/base/v1beta1/coin';
import { Pool } from 'osmo-query/dist/codegen/osmosis/gamm/pool-models/balancer/balancerPool';

export type CoinDenom = AssetDenomUnit['denom'];
export type CoinDenom = string;

export type Exponent = AssetDenomUnit['exponent'];
export type Exponent = number;

export type CoinSymbol = string;

Expand Down

0 comments on commit 78e8131

Please sign in to comment.