UNPKG

@eco-foundation/routes

Version:

The Eco Routes Protocol is a decentralized intent based system that allows users to submit their intent to the network and have it fulfilled by a solver on the destination rollup of their choice.

99 lines (95 loc) 1.84 kB
/** * ABI for the IVault contract */ export const IVaultAbi = [ { "inputs": [ { "internalType": "address", "name": "token", "type": "address" }, { "internalType": "address", "name": "spender", "type": "address" }, { "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "InsufficientTokenAllowance", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "permitContract", "type": "address" }, { "internalType": "address", "name": "token", "type": "address" }, { "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "PermitTransferFailed", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "token", "type": "address" } ], "name": "ZeroRefundTokenBalance", "type": "error" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "token", "type": "address" }, { "indexed": true, "internalType": "address", "name": "to", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "RewardTransferFailed", "type": "event" } ] as const /** * Type-safe ABI for the IVault contract */ export type IVaultAbiType = typeof IVaultAbi /** * Bytecode for the IVault contract */ export const IVaultBytecode = "0x" /** * Deployed bytecode for the IVault contract */ export const IVaultDeployedBytecode = "0x"