Quick Start
1. Specify imports
const { AeSdk, AccountMemory, Node } = require('@aeternity/aepp-sdk');2. Create a sender account
const sender = AccountMemory.generate();
console.log('Sender address:', sender.address);
console.log('Sender secret key:', sender.secretKey);3. Get some AE using the Faucet
4. Interact with the æternity blockchain
Last updated
Was this helpful?