Getting Started with Luntra Infrastructure

Initialize New Project

forge init my-luntra-project
cd my-luntra-project

Project Structure

my-luntra-project/
├── foundry.toml
├── .github/
│   └── workflows/
├── lib/
│   └── forge-std/
│       ├── .github/
│       │   └── workflows/
│       ├── scripts/
│       ├── src/
│       │   └── interfaces/
│       └── test/
│           ├── compilation/
│           └── fixtures/
├── script/
│   └── Counter.s.sol
├── src/
│   └── Counter.sol
└── test/
    └── Counter.t.sol

Configure Luntra Network

Edit foundry.toml

Last updated