Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.
Merged
Changes from all commits
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
7 changes: 1 addition & 6 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,8 +307,7 @@ 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")
print("Account funded successfully")

# Check initial balances
alice_balance = await rest_client.account_balance(alice.address())
Expand Down