Getting Started

πŸš€ 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.io

2. 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:

  1. Go to app.seal360.net
  2. Connect your wallet
  3. Navigate to "Staking"
  4. Choose lock period: 3M / 6M / 9M / 12M (minimum 3 months)
  5. Approve transaction
  6. Confirm stake

Rewards by lock period:

LockAPYNode Tier
3 months4%Scout Node (1K S360)
6 months8%Scout β†’ Guardian
9 months12%Guardian β†’ Validator
12 months16%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:

  1. Delegate S360 to yourself (or trusted delegate)
  2. Wait for active proposal
  3. Vote: For / Against / Abstain
  4. 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 fuji

Integrate 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:

  1. Apply

    • Visit the official Launchpad intake form
    • Submit project profile + product scope
  2. Compliance Screening

    • KYC/AML for team members (required)
    • Legal documentation review
  3. Technical Review

    • Codebase and architecture assessment
    • Security and operational readiness checklist
  4. 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


Need Help? Join our Discord (opens in a new tab) community!