πŸš€ v2.4.0 Current (Fuji)

πŸš€ Deployment v2.4.0 - Fuji Testnet

Deployment Status: βœ… ACTIVE
Date: January 24, 2026
Network: Avalanche Fuji Testnet (Chain ID: 43113)
Contracts: 10 (7 Core + 3 Fee System)

πŸ“‹ Contract Addresses

Core Contracts

ContractAddressSnowtrace
SEAL360Token0x65945116a5502f4d22F786dcEB4B33AEE28Ae418View (opens in a new tab)
S360StakingRewardsWithLock0x9C423a4775a7b7aE5cC994002E9378eDbaad1155View (opens in a new tab)
S360Vesting0xEE6e389E94d2fea5649fb0Ca7BDd05C24cd1eDa2View (opens in a new tab)
S360TimeVaultRND0x93C8777f4ff0006d6535D65101d37434356B76d2View (opens in a new tab)
S360BondingCurve0xb506267e4f17C2C9a265E8d96cFec151116ae326View (opens in a new tab)
S360MultiSigTimelock0xE2796fD481ADE910e7949a69EF138b8DF4a62394View (opens in a new tab)
S360Governor0x01A72ba35cDaed6fe50417b0e2c405D1be30f42bView (opens in a new tab)

Fee System Contracts (New in v2.4.0)

ContractAddressSnowtrace
S360Treasury0x47368Bf5f432A689b3F33C286F321Ad519b872acView (opens in a new tab)
S360GrowthFund0x93E86dEb25A1E96dceD7A2EeFC049c6aba56bdE1View (opens in a new tab)
S360FeeDistribution0x64ce6cE8ac03041bb87f346A4CB64eC2742eE6eCView (opens in a new tab)

πŸ’» Integration

TypeScript/JavaScript

export const SEAL360_CONTRACTS_FUJI = {
  // Core
  token: "0x65945116a5502f4d22F786dcEB4B33AEE28Ae418",
  staking: "0x9C423a4775a7b7aE5cC994002E9378eDbaad1155",
  vesting: "0xEE6e389E94d2fea5649fb0Ca7BDd05C24cd1eDa2",
  vault: "0x93C8777f4ff0006d6535D65101d37434356B76d2",
  bonding: "0xb506267e4f17C2C9a265E8d96cFec151116ae326",
  timelock: "0xE2796fD481ADE910e7949a69EF138b8DF4a62394",
  governor: "0x01A72ba35cDaed6fe50417b0e2c405D1be30f42b",
  
  // Fee System
  treasury: "0x47368Bf5f432A689b3F33C286F321Ad519b872ac",
  growthFund: "0x93E86dEb25A1E96dceD7A2EeFC049c6aba56bdE1",
  feeDistribution: "0x64ce6cE8ac03041bb87f346A4CB64eC2742eE6eC",
};

Solidity

// SEAL360 Contract Addresses - Fuji Testnet
address constant TOKEN = 0x65945116a5502f4d22F786dcEB4B33AEE28Ae418;
address constant STAKING = 0x9C423a4775a7b7aE5cC994002E9378eDbaad1155;
address constant GOVERNOR = 0x01A72ba35cDaed6fe50417b0e2c405D1be30f42b;
address constant TREASURY = 0x47368Bf5f432A689b3F33C286F321Ad519b872ac;

πŸ†• What's New in v2.4.0

Fee Distribution System

The biggest addition in v2.4.0 is the automated fee distribution system:

  • S360Treasury: Receives 33.33% of all protocol fees
  • S360GrowthFund: Receives 33.34% for marketing and growth
  • S360FeeDistribution: Central distributor that splits fees automatically

Fee Flow

Protocol Fees (from Staking, Bonding, Governance)
           ↓
   FeeDistribution
           ↓
    β”Œβ”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”
    ↓      ↓      ↓
Treasury Stakers Growth
 33.33%  33.33%  33.34%

Authorized Fee Sources

  • βœ… S360StakingRewardsWithLock
  • βœ… S360BondingCurve
  • βœ… S360Governor

πŸ“Š Deployment Metrics

  • Total Contracts: 10
  • Gas Used: ~50 AVAX
  • Deployment Time: ~20 minutes
  • Verification: 10/10 contracts verified on Snowtrace
  • Tokens Distributed: 348M S360

βœ… Scripts & Sequence Validation (2026-02-19)

All deployment scripts have been audited, corrected and validated:

StepScriptStatus
1Deploy SEAL360Tokenβœ… Validated
2Deploy S360StakingRewardsWithLockβœ… Validated
3Deploy S360Vestingβœ… Validated
4Deploy S360TimeVaultRNDβœ… Validated
5Deploy S360BondingCurveβœ… Validated
6Deploy S360MultiSigTimelockβœ… Validated
7Deploy S360Governorβœ… Validated
8Deploy S360Treasuryβœ… Validated
9Deploy S360GrowthFundβœ… Validated
10Deploy S360FeeDistributionβœ… Validated
11Configure roles & ownershipβœ… Validated
12Verify all contracts on Snowtraceβœ… Validated

Key fixes applied:

  • βœ… Zero hardcoded addresses β€” all resolved dynamically
  • βœ… Deployment order enforced (Token β†’ Core β†’ Governance β†’ Fee System)
  • βœ… Ownership transfer to Multisig validated
  • βœ… Fee sources authorized in FeeDistribution contract
  • βœ… All 10 contracts verified on Snowtrace

πŸ” Security

Ownership

All contracts are owned by the multisig wallet:

  • Multisig: 0xd798eaa310c8350f4b28f157d8c1cb1bdfba27a5
  • Signers: 4 addresses
  • Required Signatures: 3 (75%)

Timelock

  • Min Delay: 2 days (172,800 seconds)
  • Pattern: Ownable2Step (propose + accept)

πŸ“š Additional Resources

πŸ”— Links


This deployment is on Fuji Testnet. Mainnet deployment coming soon.