Getting Started
Prerequisites
Quickstart: Deploy a contract on NexusEVM
mkdir nexus-token && cd nexus-token
forge init// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import "lib/openzeppelin-contracts/src/token/ERC20/ERC20.sol";
contract NexusToken is ERC20 {
constructor(uint256 initialSupply) ERC20("NexusToken", "NTK") {
_mint(msg.sender, initialSupply);
}
}Quickstart: Interact with the chain using cast
Last updated

