Contracts

Main Contract Addresses

FNX Token: 0x52f847356b38720B55ee18Cb3e094ca11C85A192 Network: Blast Symbol: FNX Decimals: 18 veFNX: 0xC900C984a3581EfA4Fb56cAF6eF19721aAFbB4f9 Voter: 0x56129f1c0aED4aDBeE862986FAcE5Ba8c9aC3d9B Minter: 0xa4FF6fe53212e8da028e0a34819006A26615D9f8

Algebra V3 Pools

Algebra Factory: 0x7a44CD060afC1B6F4c80A2B9b37f4473E74E25Df Quoter V2: 0x94Ca5B835186A37A99776780BF976fAB81D84ED8 Swap Router: 0x2df37Cb897fdffc6B4b03d8252d85BE7C6dA9d00 Non-fungible Position Manager: 0x8881b3Fb762d1D50e6172f621F107E24299AA1Cd

V2 Pairs

Pair Factory: 0xa19C51D91891D3DF7C13Ed22a2f89d328A82950f RouterV2: 0xbD571125856975DBfC2E9b6d1DE496D614D7BAEE

Subgraphs

V2 Pairs Subgraph
  1. Copy the V2 Pairs Query: Use the following query to fetch V2 pairs, including token details (ID and symbol):

query {
  pairs {
    id
    token0 {
      symbol
      id
    }
    token1 {
      symbol
      id
    }
  }
}
  • id: The unique identifier of the pair.

  • token0 and token1: The tokens involved in the pair, including their symbol and id.

  1. Paste the V2 Pairs Query in the Subgraph

  2. Execute Query

V3 Pools Subgraph:
  1. Copy the V3 Pools Query: Use the following query to fetch V3 pools, including token details (ID and symbol):

    query {
      pools {
        id
        token0 {
          symbol
          id
        }
        token1 {
          symbol
          id
        }
      }
    }
    • id: The unique identifier of the pool.

    • token0 and token1: The tokens involved in the pool, including their symbol and id.

  1. Paste the V3 Pools Query in the Subgraph

  2. Execute Query

V2 & V3 Gauges Subgraph
  1. Copy the V2 & V3 Gauges Query: Use the following query to fetch V2 & V3 Gauges:

query Rewards {
  gauges(first: 1000) {
    id
    poolAddress
    internalBribe {
      id
    }
    externalBribe {
      id
    }
  }
}
  1. Paste the V2 & V3 Gauges Query in the Subgraph

  2. Execute Query

Deployed Contract Addresses

Last updated