@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.
27 lines (26 loc) • 660 B
TypeScript
/**
* ABI for the ISemver contract
*/
export declare const ISemverAbi: readonly [{
readonly inputs: readonly [];
readonly name: "version";
readonly outputs: readonly [{
readonly internalType: "string";
readonly name: "";
readonly type: "string";
}];
readonly stateMutability: "pure";
readonly type: "function";
}];
/**
* Type-safe ABI for the ISemver contract
*/
export type ISemverAbiType = typeof ISemverAbi;
/**
* Bytecode for the ISemver contract
*/
export declare const ISemverBytecode = "0x";
/**
* Deployed bytecode for the ISemver contract
*/
export declare const ISemverDeployedBytecode = "0x";