Skip to content

Commit

Permalink
Implements txByIndex (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
selankon authored Jul 24, 2024
1 parent 9fd6c07 commit 7a7f050
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/extended-sdk/src/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export class ExtendedSDKClient extends VocdoniSDKClient {

txInfo = (txHash: string) => ChainAPI.txInfo(this.url, txHash)
txInfoByBlock = (blockHeight: number, txIndex: number) => ChainAPI.txInfoByBlock(this.url, blockHeight, txIndex)
txByIndex = (index: number, txIndex: number) => ChainAPI.txByIndex(this.url, index)
txList = (page?: number) => ChainAPI.txList(this.url, page)

validatorsList = () => ChainAPI.validatorsList(this.url)
Expand Down

0 comments on commit 7a7f050

Please sign in to comment.