Skip to content

Commit

Permalink
extend Brc20Token from BaseToken
Browse files Browse the repository at this point in the history
  • Loading branch information
abdulhaseeb4239 committed Jan 24, 2024
1 parent 1089289 commit ec71c7b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions types/api/xverse/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ export interface SignedUrlResponse {

export type CoinsResponse = Coin[];

export type Brc20Token = {
ticker: string;
name: string;
export interface Brc20Token extends BaseToken {
supported: boolean;
tokenFiatRate?: string;
};
}

export type Brc20TokensResponse = Brc20Token[];

0 comments on commit ec71c7b

Please sign in to comment.