Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a17b738

Browse files
committedDec 11, 2024
chore: add console log for transfer action
1 parent 1bc6313 commit a17b738

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)