diff --git a/packages/extended-sdk/src/client/index.ts b/packages/extended-sdk/src/client/index.ts index fc89aefb..b434bc7c 100644 --- a/packages/extended-sdk/src/client/index.ts +++ b/packages/extended-sdk/src/client/index.ts @@ -84,7 +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) + txByIndex = (index: number) => ChainAPI.txByIndex(this.url, index) txList = (page?: number) => ChainAPI.txList(this.url, page) validatorsList = () => ChainAPI.validatorsList(this.url)