UNPKG

@airdao/astra-universal-router

Version:

Smart contracts for Universal Router

317 lines (312 loc) 6.54 kB
import hre from 'hardhat' const { ethers } = hre // Router Helpers export const MAX_UINT = '0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff' export const MAX_UINT160 = '0xffffffffffffffffffffffffffffffffffffffff' export const DEADLINE = 2000000000 export const CONTRACT_BALANCE = '0x8000000000000000000000000000000000000000000000000000000000000000' export const ALREADY_PAID = 0 export const ALICE_ADDRESS = '0x1111472FCa4260505EcE4AcD07717CADa41c1111' export const AMB_ADDRESS = ethers.constants.AddressZero export const ZERO_ADDRESS = ethers.constants.AddressZero export const ONE_PERCENT_BIPS = 100 export const MSG_SENDER: string = '0x0000000000000000000000000000000000000001' export const ADDRESS_THIS: string = '0x0000000000000000000000000000000000000002' export const SOURCE_MSG_SENDER: boolean = true export const SOURCE_ROUTER: boolean = false export const UNSUPPORTED_PROTOCOL = '0xc3d3a94A6A29FCBC1cf86B8264AAA933B96bb5A7' export const PERMIT2_CONTRACT = '0x2B75bF9B8ec5966832c123bc24Db3a283E3C1be4' // Constructor Params export const CLASSIC_FACTORY_TESTNET = '0x7bf4227eDfAA6823aD577dc198DbCadECccbEb07' export const CL_FACTORY_TESTNET = '0xCD1C424a67ea5a1EfD9593E0230F26e0F5Cd0045' export const CL_INIT_CODE_HASH_TESTNET = '0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54' export const CLASSIC_INIT_CODE_HASH_TESTNET = '0x890f57556fe54f67a74a243b39a055a4ad13602f405bfc7607a203a81592f64e' export const ROUTER_REWARDS_DISTRIBUTOR = '0x0000000000000000000000000000000000000000' export const TOKEN_ABI = [ { inputs: [ { internalType: 'string', name: 'name_', type: 'string', }, { internalType: 'string', name: 'symbol_', type: 'string', }, ], stateMutability: 'nonpayable', type: 'constructor', }, { anonymous: false, inputs: [ { indexed: true, internalType: 'address', name: 'owner', type: 'address', }, { indexed: true, internalType: 'address', name: 'spender', type: 'address', }, { indexed: false, internalType: 'uint256', name: 'value', type: 'uint256', }, ], name: 'Approval', type: 'event', }, { anonymous: false, inputs: [ { indexed: true, internalType: 'address', name: 'from', type: 'address', }, { indexed: true, internalType: 'address', name: 'to', type: 'address', }, { indexed: false, internalType: 'uint256', name: 'value', type: 'uint256', }, ], name: 'Transfer', type: 'event', }, { inputs: [ { internalType: 'address', name: 'owner', type: 'address', }, { internalType: 'address', name: 'spender', type: 'address', }, ], name: 'allowance', outputs: [ { internalType: 'uint256', name: '', type: 'uint256', }, ], stateMutability: 'view', type: 'function', }, { inputs: [ { internalType: 'address', name: 'spender', type: 'address', }, { internalType: 'uint256', name: 'amount', type: 'uint256', }, ], name: 'approve', outputs: [ { internalType: 'bool', name: '', type: 'bool', }, ], stateMutability: 'nonpayable', type: 'function', }, { inputs: [ { internalType: 'address', name: 'account', type: 'address', }, ], name: 'balanceOf', outputs: [ { internalType: 'uint256', name: '', type: 'uint256', }, ], stateMutability: 'view', type: 'function', }, { inputs: [], name: 'decimals', outputs: [ { internalType: 'uint8', name: '', type: 'uint8', }, ], stateMutability: 'view', type: 'function', }, { inputs: [ { internalType: 'address', name: 'spender', type: 'address', }, { internalType: 'uint256', name: 'subtractedValue', type: 'uint256', }, ], name: 'decreaseAllowance', outputs: [ { internalType: 'bool', name: '', type: 'bool', }, ], stateMutability: 'nonpayable', type: 'function', }, { inputs: [ { internalType: 'address', name: 'spender', type: 'address', }, { internalType: 'uint256', name: 'addedValue', type: 'uint256', }, ], name: 'increaseAllowance', outputs: [ { internalType: 'bool', name: '', type: 'bool', }, ], stateMutability: 'nonpayable', type: 'function', }, { inputs: [], name: 'name', outputs: [ { internalType: 'string', name: '', type: 'string', }, ], stateMutability: 'view', type: 'function', }, { inputs: [], name: 'symbol', outputs: [ { internalType: 'string', name: '', type: 'string', }, ], stateMutability: 'view', type: 'function', }, { inputs: [], name: 'totalSupply', outputs: [ { internalType: 'uint256', name: '', type: 'uint256', }, ], stateMutability: 'view', type: 'function', }, { inputs: [ { internalType: 'address', name: 'to', type: 'address', }, { internalType: 'uint256', name: 'amount', type: 'uint256', }, ], name: 'transfer', outputs: [ { internalType: 'bool', name: '', type: 'bool', }, ], stateMutability: 'nonpayable', type: 'function', }, { inputs: [ { internalType: 'address', name: 'from', type: 'address', }, { internalType: 'address', name: 'to', type: 'address', }, { internalType: 'uint256', name: 'amount', type: 'uint256', }, ], name: 'transferFrom', outputs: [ { internalType: 'bool', name: '', type: 'bool', }, ], stateMutability: 'nonpayable', type: 'function', }, ]