Skip to content

Commit 47e4c2f

Browse files
committed
chore: add console log for transfer action
1 parent 9fc4b0e commit 47e4c2f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/plugin-evm/src/actions/transfer.ts

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export class TransferAction {
1818
constructor(private walletProvider: WalletProvider) {}
1919

2020
async transfer(params: TransferParams): Promise<Transaction> {
21+
console.log(
22+
`Transferring: ${params.amount} tokens to (${params.toAddress} on ${params.fromChain})`
23+
);
24+
2125
const walletClient = this.walletProvider.getWalletClient(
2226
params.fromChain
2327
);

0 commit comments

Comments
 (0)