UNPKG

@eco-foundation/routes-ts

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 choise.

85 lines (84 loc) 2.44 kB
/** * ABI for the IExecutor contract */ export declare const IExecutorAbi: readonly [{ readonly inputs: readonly [{ readonly components: readonly [{ readonly internalType: "address"; readonly name: "target"; readonly type: "address"; }, { readonly internalType: "bytes"; readonly name: "data"; readonly type: "bytes"; }, { readonly internalType: "uint256"; readonly name: "value"; readonly type: "uint256"; }]; readonly internalType: "struct Call"; readonly name: "call"; readonly type: "tuple"; }, { readonly internalType: "bytes"; readonly name: "reason"; readonly type: "bytes"; }]; readonly name: "CallFailed"; readonly type: "error"; }, { readonly inputs: readonly [{ readonly internalType: "address"; readonly name: "target"; readonly type: "address"; }]; readonly name: "CallToEOA"; readonly type: "error"; }, { readonly inputs: readonly [{ readonly internalType: "address"; readonly name: "caller"; readonly type: "address"; }]; readonly name: "NonPortalCaller"; readonly type: "error"; }, { readonly inputs: readonly [{ readonly components: readonly [{ readonly internalType: "address"; readonly name: "target"; readonly type: "address"; }, { readonly internalType: "bytes"; readonly name: "data"; readonly type: "bytes"; }, { readonly internalType: "uint256"; readonly name: "value"; readonly type: "uint256"; }]; readonly internalType: "struct Call[]"; readonly name: "calls"; readonly type: "tuple[]"; }]; readonly name: "execute"; readonly outputs: readonly [{ readonly internalType: "bytes[]"; readonly name: ""; readonly type: "bytes[]"; }]; readonly stateMutability: "payable"; readonly type: "function"; }]; /** * Type-safe ABI for the IExecutor contract */ export type IExecutorAbiType = typeof IExecutorAbi; /** * Bytecode for the IExecutor contract */ export declare const IExecutorBytecode = "0x"; /** * Deployed bytecode for the IExecutor contract */ export declare const IExecutorDeployedBytecode = "0x";