@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.
95 lines (94 loc) • 2.36 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IVaultDeployedBytecode = exports.IVaultBytecode = exports.IVaultAbi = void 0;
/**
* ABI for the IVault contract
*/
exports.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"
}
];
/**
* Bytecode for the IVault contract
*/
exports.IVaultBytecode = "0x";
/**
* Deployed bytecode for the IVault contract
*/
exports.IVaultDeployedBytecode = "0x";