Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions apps/nextra/pages/en/build/guides/first-transaction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,6 @@ You can jump to the full code sample [here](#full-code-sample) or continue readi
accountAddress: alice.accountAddress,
amount: 100_000_000, // 1 APT = 100,000,000 octas
});
await aptos.fundAccount({
accountAddress: bob.accountAddress,
amount: 0, // Bob starts with 0 APT
});
console.log("Accounts funded successfully");

// Check initial balances
Expand Down Expand Up @@ -311,7 +307,6 @@ You can jump to the full code sample [here](#full-code-sample) or continue readi
bob_amount = 0 # Bob starts with 0 APT

await faucet_client.fund_account(alice.address(), alice_amount)
await faucet_client.fund_account(bob.address(), bob_amount)
print("Accounts funded successfully")

# Check initial balances
Expand Down