Skip to content

Commit

Permalink
chore: add talis token-metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasRalee committed Oct 30, 2023
1 parent 4e5b187 commit a4ed3a2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,12 @@ export class IndexerGrpcCampaignApi extends BaseGrpcConsumer {
}: {
skip?: string
limit?: number
marketId: string
marketId?: string
campaignId: string
accountAddress?: string
}) {
const request = InjectiveCampaignRpc.RankingRequest.create()

request.marketId = marketId
request.campaignId = campaignId

if (skip) {
Expand All @@ -50,6 +49,10 @@ export class IndexerGrpcCampaignApi extends BaseGrpcConsumer {
request.limit = limit
}

if (marketId) {
request.marketId = marketId
}

if (accountAddress) {
request.accountAddress = accountAddress
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions packages/token-metadata/src/tokens/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1853,4 +1853,19 @@ export default {
logo: 'tia.webp',
coinGeckoId: '',
},

TAILS: {
name: 'Talis',
symbol: 'TALIS',
decimals: 6,
logo: 'tails.svg',
coinGeckoId: '',

cw20: {
decimals: 6,
address: 'Talis-3',
source: Cw20TokenSource.Cosmos,
tokenType: TokenType.Cw20,
},
},
} as Record<string, TokenMeta>

0 comments on commit a4ed3a2

Please sign in to comment.