Quick Start
In this example we will send 1 AE coin from one account to another. For more specific information on setups with Frameworks and TypeScript, please refer to the installation instructions.
1. Specify imports
For the following snippets in the guide you need to specify multiple imports.
2. Create a sender account
3. Get some AE using the Faucet
To receive some AE you can use the Faucet. Just paste sender's address, hit Top UP
and you'll immediately get some test coins.
4. Interact with the æternity blockchain
This example shows:
how to create an instance of the SDK using the
AeSdk
classhow to spend (send) 1 AE from the account the SDK instance was initialized with to some other AE address
Note:
You may remove code from Step 2 as this serves only for one-time creation
By default the
spend
function expects the amount to be spent inaettos
(the smallest possible unit)Following the example snippet you would specify
AE
as denominationSee Testnet Explorer and track your transactions
Last updated