EVM (Ethereum) Integration
Smart Contract Compilation
POST /api/contracts/compile
{
"sourceCode": "pragma solidity ^0.8.0; ...",
"contractName": "MyToken"
}Contract Deployment
POST /api/contracts/deploy
{
"bytecode": "0x...",
"abi": [...],
"constructorArgs": [...], "chainId": 11155111
}Wallet Integration
Last updated