First Steps in Development
First Steps with æternity Blockchain Development
Setting Up Your First Project
mkdir my-aepp
cd my-aepp
aeproject init├── contracts/ # Sophia smart contracts
├── deployment/ # Deployment scripts
├── test/ # Test files
└── docker/ # Docker configuration// contracts/HelloWorld.aes
contract HelloWorld =
entrypoint sayHello(name : string) : string =
String.concat("Hello, ", name)Wallet Setup and Acquiring Test Tokens
Environment Configuration
Next Steps
Last updated
Was this helpful?