π Getting Started
Welcome to SEAL360! This guide will help you get started with VERAβpowered Web3 infrastructure and the commercial franchise layer.
For Users
1. Get a Wallet
You'll need an Avalanche-compatible wallet:
- MetaMask (Recommended)
- Core Wallet (Avalanche native)
- Rabby Wallet
- WalletConnect compatible wallets
Setup MetaMask for Avalanche:
Network Name: Avalanche C-Chain
RPC URL: https://api.avax.network/ext/bc/C/rpc
Chain ID: 43114
Symbol: AVAX
Explorer: https://snowtrace.io2. Buy S360 Tokens
After TGE (Q2 2026):
- DEX: Trader Joe, Pangolin
- Bonding Curve: Built-in AMM at app.seal360.net
- CEX: Tier 2 exchanges (Q3 2026)
Current Status: Pre-launch - tokens not yet available
3. Stake for Rewards
Steps:
- Go to app.seal360.net
- Connect your wallet
- Navigate to "Staking"
- Choose lock period: 3M / 6M / 9M / 12M (minimum 3 months)
- Approve transaction
- Confirm stake
Rewards by lock period:
| Lock | APY | Node Tier |
|---|---|---|
| 3 months | 4% | Scout Node (1K S360) |
| 6 months | 8% | Scout β Guardian |
| 9 months | 12% | Guardian β Validator |
| 12 months | 16% | Any tier β maximum yield |
SP Bound Multipliers: 1.2Γ (3M) β 1.4Γ (6M) β 1.7Γ (9M) β 2.0Γ (12M)
4. Choose Your Path
SEAL360 has two ways to participate β you can choose one or both:
Path A β DeFi Holder (Infrastructure):
- Buy S360 β Stake β Earn APY + SP Bound β Accumulate node tier
- Scout Node: 1,000 S360 minimum
- Guardian Node: 10,000 S360
- Validator Node: 100,000 S360
- See Node Tiers β
Path B β Commercial Founder (Business):
- Buy a territorial license β Sell SEAL360 products β Earn commissions
- City Starter: $4,970 USDT/year (2 months free) or $497/month
- Regional Founder: $9,970 USDT/year (2 months free) or $997/month
- National Partner: $250,000 USDT + 1M S360 (Limited Offer β conditions apply)
- See Business Model β
Path C β Both (Maximum Power):
- Hold a commercial license AND a node tier
- Example: Regional Founder ($997) + Validator Node (100K S360)
- Higher governance weight + commissions + max APY
5. Participate in Governance
Requirements:
- 100,000 S360 (Validator Node) = can create proposals
- Any amount = can vote on proposals
How to Vote:
- Delegate S360 to yourself (or trusted delegate)
- Wait for active proposal
- Vote: For / Against / Abstain
- Your voting power = your delegated S360
For Developers
Quick Setup
# Clone repository
git clone https://github.com/JaisonKeiver/seal360-contracts
cd seal360-contracts
# Install dependencies
npm install
# Configure environment
cp .env.example .env
# Edit .env with your keys
# Run tests
npx hardhat test # 1,484 tests
forge test # 976 tests
# Deploy to testnet
npx hardhat run scripts/deploy/fuji-deployment.js --network fujiIntegrate S360 Token
// Install
npm install ethers@6
// Connect
import { ethers } from 'ethers';
const provider = new ethers.JsonRpcProvider(
'https://api.avax.network/ext/bc/C/rpc'
);
const tokenAddress = '0xe6b3FB013dFA6BBC5930Ed32E5B71AAc89E45f31'; // S360 Fuji Testnet (final sync)
const tokenABI = [...]; // Import from abi-exports/
const contract = new ethers.Contract(
tokenAddress,
tokenABI,
provider
);
// Get balance
const balance = await contract.balanceOf(userAddress);
console.log(`Balance: ${ethers.formatEther(balance)} S360`);
// Stake tokens
const stakingAddress = '0x...';
const stakingABI = [...];
const staking = new ethers.Contract(
stakingAddress,
stakingABI,
signer
);
// Approve
await contract.approve(stakingAddress, amount);
// Stake
await staking.stake(amount);Using Wagmi (React)
import { useAccount, useBalance, useContractWrite } from 'wagmi';
import S360ABI from './abi/SEAL360Token.json';
function StakingComponent() {
const { address } = useAccount();
const { data: balance } = useBalance({
address,
token: S360_ADDRESS
});
const { write: stake } = useContractWrite({
address: STAKING_ADDRESS,
abi: StakingABI,
functionName: 'stake',
});
return (
<div>
<p>Balance: {balance?.formatted} S360</p>
<button onClick={() => stake({ args: [amount] })}>
Stake
</button>
</div>
);
}For Partners & Ecosystem Launches
Apply to the SEAL360 Launchpad
Process:
-
Apply
- Visit the official Launchpad intake form
- Submit project profile + product scope
-
Compliance Screening
- KYC/AML for team members (required)
- Legal documentation review
-
Technical Review
- Codebase and architecture assessment
- Security and operational readiness checklist
-
Onboarding
- Goβtoβmarket alignment with VERA
- Launch timeline and distribution plan
Timeline: 2β4 weeks depending on readiness
Launch with SEAL360 Infrastructure
Requirements:
- β Compliance approval
- β Technical readiness checklist
- β Goβtoβmarket alignment with VERA
Benefits:
- β Institutional distribution and territory alignment
- β AIβassisted onboarding and launch operations
- β Onβchain settlement + automated distribution
- β Marketing support and founder enablement
Platform Fee: Based on scope and launch profile
Resources
Documentation
- Docs: docs.seal360.net
- GitHub: github.com/JaisonKeiver/seal360-contracts
- API Reference: docs.seal360.net/api
Community
- Discord: discord.gg/seal360
- Twitter: @SEAL360Official
- Telegram: t.me/seal360official
Support
- Email: support@seal360.net
- Community support: Discord #support
- Premium support: Requires 10k S360 staked
Common Issues
"Transaction Failed"
Possible causes:
- Insufficient gas (add more AVAX)
- Slippage too low (increase tolerance)
- Deadline expired (try again)
- Contract paused (check status)
"Cannot Connect Wallet"
Solutions:
- Clear cache and refresh
- Update MetaMask to latest version
- Check network (must be Avalanche C-Chain)
- Try different wallet provider
"Insufficient Balance"
Check:
- Do you have enough S360?
- Did you approve the contract?
- Do you have AVAX for gas?
Next Steps
- Business Model β β City Starter / Regional Founder / National Partner
- Infrastructure & Nodes β β Scout / Guardian / Validator / Authority
- Architecture Overview β
- Tokenomics Details β
- Security Audits β
Need Help? Join our Discord (opens in a new tab) community!