diff --git a/src/signer.ts b/src/signer.ts index 56c1016..aa7bfd5 100644 --- a/src/signer.ts +++ b/src/signer.ts @@ -90,7 +90,6 @@ export class KMSSigner extends AbstractSigner { async signTransaction(tx: TransactionRequest): Promise { tx = copyRequest(tx); - console.log( { tx} ) // Replace any Addressable or ENS name with an address const { to, from } = await resolveProperties({ @@ -109,7 +108,6 @@ export class KMSSigner extends AbstractSigner { // Build the transaction const btx = Transaction.from(>tx); - console.log({ btx: btx.toJSON(), tx }) btx.signature = await createSignature({ kmsInstance: this.kmsInstance, keyId: this.keyId,