We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc6313 commit a17b738Copy full SHA for a17b738
packages/plugin-evm/src/actions/transfer.ts
@@ -18,6 +18,10 @@ export class TransferAction {
18
constructor(private walletProvider: WalletProvider) {}
19
20
async transfer(params: TransferParams): Promise<Transaction> {
21
+ console.log(
22
+ `Transferring: ${params.amount} tokens to (${params.toAddress} on ${params.fromChain})`
23
+ );
24
+
25
const walletClient = this.walletProvider.getWalletClient(
26
params.fromChain
27
);
0 commit comments