yoso
Search documentation...Ctrl K

Contracts

YOSO contract addresses, transaction links, liquidity pool, vesting wallet, and HyperSwap references on HyperEVM.

4 min read

Contract addresses

All contracts are on HyperEVM (chain ID 999).

ContractAddressExplorer
YOSO Token0x4917afd9f67e314c97b413cC77f325E7F64eE33aAddress
YOSO/HYPE Pool0x10B8D6c2a0BD3C64D4549160261FaA94D0f54021Address
Vesting Wallet0x5E3be55Ee8Eed0a4260d38f63D8a4e76f6A21552Address
Dev wallet / vesting owner0xDb9e524ACD665a74788E6885739A4EF9E9C6AA10Address
Deployer0xabcF9D3FA2D51ec1A48Ca880bc5df68add8B2290Address
HyperSwap V3 position manager0x6eda206207c09e5428f281761ddc0d300851fbc8Address
HyperSwap Burn & Earn owner0x744C89B7b7F8Cb1E955B1Dcd842A5378d75c96DcAddress
WHYPE0x5555555555555555555555555555555555555555Address

Launch transactions

StepTxBlockTime
Token deploy0xcc0d0a377ebc96bdb42ebefaa4500e54d1d1310ab0d72895097425c0699626d7325203832026-04-15 08:33:02 UTC
Pool seed0x0c2d8e353e8a7135fee381d08002aafeb7d4aab9ecccf73b99fbfc9b6e4ccaf5326291322026-04-16 14:15:49 UTC
Burn & Earn0xaeb7118060e43bdfeee67a58904d9f3140edc6619fa1426925dd782dfae15fba326295332026-04-16 14:22:23 UTC
Vesting deploy0xc185cab200b70b3ef60932696bffb57818cb76df38fd7801f0f8c8743b47afdc326302302026-04-16 14:33:49 UTC
Vesting fund0x9b184b616acc3d6d187b3a18c6a890f599da5216a8820095c9633579430f2f2c326302332026-04-16 14:33:52 UTC
Vesting ownership transfer0x20016ca76b5f9ec7fbaaad16c084398536379686d4649f849a9e51fd6ecf7c1a326309592026-04-16 14:45:46 UTC

YOSO token

Standard ERC-20 with fixed supply.

ParameterValue
NameYOSO
SymbolYOSO
Decimals18
Total supply1,000,000,000
Mintable after deployNo
PausableNo
BlacklistNo

Essential read functions

[
  "function name() view returns (string)",
  "function symbol() view returns (string)",
  "function decimals() view returns (uint8)",
  "function totalSupply() view returns (uint256)",
  "function balanceOf(address account) view returns (uint256)"
]

YOSO/HYPE liquidity pool

HyperSwap V3 pool. Full-range position, 0.3% fee tier.

ParameterValue
Token0YOSO: 0x4917afd9f67e314c97b413cC77f325E7F64eE33a
Token1WHYPE: 0x5555555555555555555555555555555555555555
Fee tier0.3% (3000)
Tick spacing60
LP NFT173399
RangeFull range, ticks -887220 to 887220
Seeded YOSO800,009,999.999999999987920923
Seeded HYPE29.999770107786725096
LP statusMoved through Burn & Earn

How to verify the pool

  1. Open the pool address on HyperEVMScan.
  2. Check token0() and token1() return the YOSO and WHYPE addresses above.
  3. Check fee() returns 3000.
  4. Check pool liquidity is non-zero.
  5. On the position manager, call ownerOf(173399) and confirm it returns 0x744C89B7b7F8Cb1E955B1Dcd842A5378d75c96Dc.

Vesting wallet

VestingWalletCliff is a thin wrapper around OpenZeppelin VestingWallet. The wrapper sets the vesting start to the cliff end.

ParameterValue
Contract0x5E3be55Ee8Eed0a4260d38f63D8a4e76f6A21552
Owner / beneficiary0xDb9e524ACD665a74788E6885739A4EF9E9C6AA10
Token fundedYOSO
Total locked199,990,000 YOSO
Cliff end / OZ start2027-04-16 20:33:45 UTC
Duration63,115,200 seconds
Vesting end2029-04-16 08:33:45 UTC
RevocableNo
Releasable at launch verification0 YOSO

Read functions for verification

[
  "function owner() view returns (address)",
  "function start() view returns (uint256)",
  "function duration() view returns (uint256)",
  "function end() view returns (uint256)",
  "function released(address token) view returns (uint256)",
  "function releasable(address token) view returns (uint256)",
  "function vestedAmount(address token, uint64 timestamp) view returns (uint256)"
]

Quick verification script

import { Contract, JsonRpcProvider, formatUnits } from 'ethers';
 
const provider = new JsonRpcProvider('https://rpc.hyperliquid.xyz/evm');
const VESTING = '0x5E3be55Ee8Eed0a4260d38f63D8a4e76f6A21552';
const YOSO = '0x4917afd9f67e314c97b413cC77f325E7F64eE33a';
 
const abi = [
  'function owner() view returns (address)',
  'function start() view returns (uint256)',
  'function duration() view returns (uint256)',
  'function end() view returns (uint256)',
  'function released(address) view returns (uint256)',
  'function releasable(address) view returns (uint256)',
  'function vestedAmount(address, uint64) view returns (uint256)',
];
 
const vesting = new Contract(VESTING, abi, provider);
 
const owner = await vesting.owner();
const start = await vesting.start();
const duration = await vesting.duration();
const end = await vesting.end();
const vested = await vesting.vestedAmount(YOSO, Math.floor(Date.now() / 1000));
const claimable = await vesting.releasable(YOSO);
const claimed = await vesting.released(YOSO);
 
console.log('Owner:', owner);
console.log('Vesting start:', new Date(Number(start) * 1000).toISOString());
console.log('Vesting end:', new Date(Number(end) * 1000).toISOString());
console.log('Duration seconds:', duration.toString());
console.log('Total vested:', formatUnits(vested, 18), 'YOSO');
console.log('Claimable now:', formatUnits(claimable, 18), 'YOSO');
console.log('Already claimed:', formatUnits(claimed, 18), 'YOSO');

Explorer source status

At the last documentation pass, HyperEVMScan showed the YOSO token and vesting wallet source status as unverified, while the HyperSwap pool is a verified protocol contract. The addresses and transaction links above are still the on-chain source of truth. Source verification should be checked on HyperEVMScan before relying on explorer source tabs.

Verification checklist

Use this to independently verify the launch.

  1. Call totalSupply() on the YOSO token. It should return 1000000000000000000000000000.
  2. Check the deployer YOSO balance. It should only have rounding dust.
  3. Check the pool fee is 3000, token0 is YOSO, and token1 is WHYPE.
  4. Check LP NFT 173399 owner is 0x744C89B7b7F8Cb1E955B1Dcd842A5378d75c96Dc.
  5. Check the vesting wallet YOSO balance is 199990000000000000000000000.
  6. Check releasable(YOSO) returns 0 before the cliff.
  7. Check owner() on the vesting wallet returns 0xDb9e524ACD665a74788E6885739A4EF9E9C6AA10.

Next steps

  • Security: Burn & Earn and vesting verification
  • Tokenomics: Distribution and vesting schedule

yoso agents

> authenticate

enter your email to sign in

or select a method

by continuing you agree to our terms & privacy