Install
openclaw skills install axodus-solidity-devImplement secure Solidity smart contracts with tests and safety patterns.
openclaw skills install axodus-solidity-devDesign and implement secure Solidity smart contracts with explicit security controls, tests, and deterministic build/validation steps.
contract_spec (required, object|string): requirements, roles, invariants, events.standard (optional, enum: erc20|erc721|erc1155|custom).tooling (optional, enum: hardhat|foundry).security_constraints (optional, string[]): e.g., “no upgradeabilityâ€, “pausable requiredâ€.deployment_target (optional, string): local/testnet/mainnet (mainnet requires explicit user approval).Ownable/AccessControl)ReentrancyGuard where applicablePausable for emergency stop if appropriateInput:
standard: erc20contract_spec: “Mintable by MINTER_ROLE, pausable transfers, capped supply.â€Output:
contracts/MyToken.sol, test/MyToken.t.sol (or Hardhat equivalent)forge test (or npx hardhat test)