diff --git a/typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts b/typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts index 0d4c340935..a6ac5fb077 100644 --- a/typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts +++ b/typescript/sdk/src/core/adapters/CosmWasmCoreAdapter.ts @@ -53,10 +53,10 @@ export class CosmWasmCoreAdapter } async waitForMessageProcessed( - messageId: HexString, - destination: ChainName, - delayMs?: number, - maxAttempts?: number, + _messageId: HexString, + _destination: ChainName, + _delayMs?: number, + _maxAttempts?: number, ): Promise { throw new Error('Method not implemented.'); } diff --git a/typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts b/typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts index 77c82d8262..6d6bf5349d 100644 --- a/typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts +++ b/typescript/sdk/src/token/adapters/CosmWasmTokenAdapter.ts @@ -249,7 +249,7 @@ export class CwHypTokenAdapter })); } - quoteGasPayment(destination: number): Promise { + quoteGasPayment(_destination: number): Promise { throw new Error('Method not implemented.'); }