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.

34 lines (30 loc) 580 B
/** * ABI for the ISemver contract */ export const ISemverAbi = [ { "inputs": [], "name": "version", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "pure", "type": "function" } ] as const /** * Type-safe ABI for the ISemver contract */ export type ISemverAbiType = typeof ISemverAbi /** * Bytecode for the ISemver contract */ export const ISemverBytecode = "0x" /** * Deployed bytecode for the ISemver contract */ export const ISemverDeployedBytecode = "0x"