Smart Contract Development
Developing and testing the Nomial smart contracts
Source Code
Development Environment Setup
To work with Nomial V1 contracts, ensure you have the following dependencies installed:
Project Structure
Nomial V1 follows a modular structure:
Build & Compilation
To compile the contracts:
If compilation fails, ensure all dependencies are installed and run:
Testing
Nomial V1 uses Foundry for testing. To run all tests:
For verbose output:
Writing & Running Custom Tests
Tests are located in the test/
directory and follow Foundry's testing conventions. To write a new test:
Create a new file in
test/
Import
Test
fromforge-std
Write test functions prefixed with
test
Example:
Debugging & Troubleshooting
Out-of-gas errors? Increase gas limits in
foundry.toml
.Missing dependencies? Run
forge install
oryarn install
.Tests failing? Run
forge test -vvv
for detailed logs.
Last updated