Network Specifications
Verychain Parameters
Basic Information
Network Name: Verychain
Chain ID: 4613
Currency Symbol: VERY
Block Time: 12ㅇ seconds
Consensus: Proof of Authority (PoA)
Network Parameters
Block Size: Depends on Blocksize (8,000,000 gas per block)
Gas Limit per Block: 8,000,000 (Genesis), Maximum(9,223,372,036,854,775,807)
Minimum Gas Price: [To be specified] 1 Gwei
Maximum Gas Price: [To be specified] 500 Gwei
RPC Endpoints
Mainnet: https://rpc.verylabs.io
Testnet: null
Network Explorer
Mainnet Explorer: https://veryscan.io
Testnet Explorer: null
Development Environment
Required Tools
Node.js: v14.0.0 or higher
MetaMask: Latest version
Hardhat/Truffle: Latest version
Solidity: ^0.8.0
Network Configuration
// Example network configuration
module.exports = {
networks: {
very: {
url: "RPC_ENDPOINT",
chainId: CHAIN_ID,
accounts: ["PRIVATE_KEY"]
}
}
}
Gas Fees
Transaction Types and Costs
Simple Transfer: 1 Gwei
Contract Deployment: 1 Gwei (Depndss on SmartContract)
Contract Interaction: 1 Gwei (Depndss on SmartContract)
Gas Optimization Tips
Use appropriate data types
Minimize storage operations
Batch transactions when possible
Use events for off-chain tracking
Security Considerations
Network Security
Regular security audits
Bug bounty program
Emergency response team
Best Practices
Always verify contract code
Use audited libraries
Implement proper access controls
Regular security updates
Last updated