Skip to content

Commit

Permalink
chore: Update transfer.ts to transfer 5 tokens instead of 50 (#317)
Browse files Browse the repository at this point in the history
Update transfer.ts to transfer 5 tokens instead of 50

Update transfer.ts to transfer 5 tokens instead of 50 so that the tutorial can work once the user claims once

Co-authored-by: Michael Yankelev <[email protected]>
  • Loading branch information
alysiahuggins and FSM1 authored Nov 23, 2023
1 parent 5c9fc0f commit d60822b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/evm-to-evm-fungible-transfer/src/transfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export async function erc20Transfer(): Promise<void> {
SEPOLIA_CHAIN_ID,
await wallet.getAddress(), // Sending to the same address on a different chain
RESOURCE_ID,
"50000000000000000000" // 18 decimal places
"5000000000000000000" // 18 decimal places
);

const fee = await assetTransfer.getFee(transfer);
Expand Down

0 comments on commit d60822b

Please sign in to comment.