@wireio/stake 2.7.4 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -15
- package/lib/stake.browser.js +50561 -13484
- package/lib/stake.browser.js.map +1 -1
- package/lib/stake.d.ts +564 -15719
- package/lib/stake.js +47546 -10288
- package/lib/stake.js.map +1 -1
- package/lib/stake.m.js +50561 -13484
- package/lib/stake.m.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/evm/hoodi/.gitkeep +1 -0
- package/src/assets/evm/monad-testnet/.gitkeep +0 -0
- package/src/assets/evm/polygon-amoy/.gitkeep +0 -0
- package/src/assets/evm/wiredev/common/Base58.sol/Base58.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/Base58.sol/Base58.json +164 -0
- package/src/assets/evm/wiredev/common/OpenZepArtifacts.sol/__Dummy_OZ_UUPS__.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/OpenZepArtifacts.sol/__Dummy_OZ_UUPS__.json +76 -0
- package/src/assets/evm/wiredev/common/RestrictedCallers.sol/RestrictedCallers.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/RestrictedCallers.sol/RestrictedCallers.json +10 -0
- package/src/assets/evm/wiredev/common/iodata.sol/iodata.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/iodata.sol/iodata.json +618 -0
- package/src/assets/evm/wiredev/common/iodata_util.sol/iodata_util.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/iodata_util.sol/iodata_util.json +40 -0
- package/src/assets/evm/wiredev/common/sysio_data.sol/sysio_data.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_data.sol/sysio_data.json +10 -0
- package/src/assets/evm/wiredev/common/sysio_errors.sol/sysio_errors.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_errors.sol/sysio_errors.json +10 -0
- package/src/assets/evm/wiredev/common/sysio_merkle.sol/sysio_merkle.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_merkle.sol/sysio_merkle.json +233 -0
- package/src/assets/evm/wiredev/common/sysio_name.sol/sysio_name.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_name.sol/sysio_name.json +49 -0
- package/src/assets/evm/wiredev/common/sysio_pubkey.sol/sysio_pubkey.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_pubkey.sol/sysio_pubkey.json +64 -0
- package/src/assets/evm/wiredev/common/sysio_read.sol/sysio_read.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_read.sol/sysio_read.json +1458 -0
- package/src/assets/evm/wiredev/common/sysio_tester.sol/SysioTester.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_tester.sol/SysioTester.json +1532 -0
- package/src/assets/evm/wiredev/common/sysio_verify.sol/sysio_verify.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_verify.sol/sysio_verify.json +1525 -0
- package/src/assets/evm/wiredev/common/sysio_write.sol/sysio_write.dbg.json +4 -0
- package/src/assets/evm/wiredev/common/sysio_write.sol/sysio_write.json +1076 -0
- package/src/assets/evm/wiredev/liqEth/BeaconState.sol/BeaconState.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/BeaconState.sol/BeaconState.json +807 -0
- package/src/assets/evm/wiredev/liqEth/DepositManager.sol/DepositManagerV2.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/DepositManager.sol/DepositManagerV2.json +985 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthAuthority.sol/LiqEthAuthority.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthAuthority.sol/LiqEthAuthority.json +1289 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IAccounting.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IAccounting.json +182 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IDepositContract.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IDepositContract.json +39 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IDepositManager.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IDepositManager.json +64 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/ILiqEthUpgradeable.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/ILiqEthUpgradeable.json +29 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IRewardsERC20.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IRewardsERC20.json +319 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IRewardsERC20Pausable.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IRewardsERC20Pausable.json +333 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IStakingModule.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IStakingModule.json +344 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IValidatorBalanceVerifier.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IValidatorBalanceVerifier.json +129 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IWithdrawalRecord.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/IWithdrawalRecord.json +66 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/LiqEthCommon.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthCommon.sol/LiqEthCommon.json +10 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthDeepFreeze.sol/LiqEthDeepFreeze.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthDeepFreeze.sol/LiqEthDeepFreeze.json +236 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthManaged.sol/LiqEthManaged.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/LiqEthManaged.sol/LiqEthManaged.json +229 -0
- package/src/assets/evm/wiredev/liqEth/RewardsERC20.sol/RewardsERC20UpgradeableV2.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/RewardsERC20.sol/RewardsERC20UpgradeableV2.json +957 -0
- package/src/assets/evm/wiredev/liqEth/RewardsERC20Pausable.sol/RewardsERC20PausableUpgradeableV2.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/RewardsERC20Pausable.sol/RewardsERC20PausableUpgradeableV2.json +1020 -0
- package/src/assets/evm/wiredev/liqEth/Yield.sol/YieldOracle.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/Yield.sol/YieldOracle.json +1376 -0
- package/src/assets/evm/wiredev/liqEth/accounting.sol/AccountingV2.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/accounting.sol/AccountingV2.json +629 -0
- package/src/assets/evm/wiredev/liqEth/liqEth.sol/LiqEthTokenV2.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/liqEth.sol/LiqEthTokenV2.json +1323 -0
- package/src/assets/evm/wiredev/liqEth/stakingModule.sol/StakingModuleV2.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/stakingModule.sol/StakingModuleV2.json +1779 -0
- package/src/assets/evm/wiredev/liqEth/v1/DepositManager.sol/DepositManager.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/DepositManager.sol/DepositManager.json +978 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IAccounting.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IAccounting.json +176 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IDepositContract.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IDepositContract.json +39 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IDepositManager.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IDepositManager.json +64 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/ILiqEthUpgradeable.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/ILiqEthUpgradeable.json +29 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IRewardsERC20.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IRewardsERC20.json +249 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IRewardsERC20Pausable.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IRewardsERC20Pausable.json +263 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IStakingModule.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IStakingModule.json +344 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IValidatorBalanceVerifier.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IValidatorBalanceVerifier.json +129 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IWithdrawalRecord.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/IWithdrawalRecord.json +66 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/LiqEthCommon.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/LiqEthCommon.sol/LiqEthCommon.json +10 -0
- package/src/assets/evm/wiredev/liqEth/v1/RewardsERC20.sol/RewardsERC20Upgradeable.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/RewardsERC20.sol/RewardsERC20Upgradeable.json +874 -0
- package/src/assets/evm/wiredev/liqEth/v1/RewardsERC20Pausable.sol/RewardsERC20PausableUpgradeable.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/RewardsERC20Pausable.sol/RewardsERC20PausableUpgradeable.json +937 -0
- package/src/assets/evm/wiredev/liqEth/v1/accounting.sol/Accounting.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/accounting.sol/Accounting.json +548 -0
- package/src/assets/evm/wiredev/liqEth/v1/liqEth.sol/LiqEthToken.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/liqEth.sol/LiqEthToken.json +1233 -0
- package/src/assets/evm/wiredev/liqEth/v1/stakingModule.sol/StakingModule.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/v1/stakingModule.sol/StakingModule.json +1772 -0
- package/src/assets/evm/wiredev/liqEth/withdrawalQueue.sol/WithdrawalQueue.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/withdrawalQueue.sol/WithdrawalQueue.json +973 -0
- package/src/assets/evm/wiredev/liqEth/withdrawalVault.sol/Uint64BE.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/withdrawalVault.sol/Uint64BE.json +10 -0
- package/src/assets/evm/wiredev/liqEth/withdrawalVault.sol/WithdrawalVault.dbg.json +4 -0
- package/src/assets/evm/wiredev/liqEth/withdrawalVault.sol/WithdrawalVault.json +441 -0
- package/src/assets/evm/wiredev/outpost/BAR.sol/BAR.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/BAR.sol/BAR.json +1154 -0
- package/src/assets/evm/wiredev/outpost/Depositor.sol/Depositor.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/Depositor.sol/Depositor.json +1633 -0
- package/src/assets/evm/wiredev/outpost/EthUsdPriceConsumer.sol/AggregatorV3Interface.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/EthUsdPriceConsumer.sol/AggregatorV3Interface.json +122 -0
- package/src/assets/evm/wiredev/outpost/EthUsdPriceConsumer.sol/EthUsdPriceConsumer.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/EthUsdPriceConsumer.sol/EthUsdPriceConsumer.json +274 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/BridgeDepositCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/BridgeDepositCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/BridgeWithdrawCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/BridgeWithdrawCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/BridgeWithdrawConfirmCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/BridgeWithdrawConfirmCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/BridgeWithdrawFailedCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/BridgeWithdrawFailedCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/InstaswapBridgeAttestationTypeLib.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/InstaswapBridgeAttestations.sol/InstaswapBridgeAttestationTypeLib.json +10 -0
- package/src/assets/evm/wiredev/outpost/LiqEthBridge.sol/IDepositorBridgeHooks.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/LiqEthBridge.sol/IDepositorBridgeHooks.json +29 -0
- package/src/assets/evm/wiredev/outpost/LiqEthBridge.sol/LiqEthBridge.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/LiqEthBridge.sol/LiqEthBridge.json +1076 -0
- package/src/assets/evm/wiredev/outpost/OPP.sol/OPP.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPP.sol/OPP.json +1098 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPP.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPP.json +81 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPPEndpoint.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPPEndpoint.json +29 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPPInbound.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPPInbound.json +330 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPPReceiver.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPPReceiver.json +29 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPPSender.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/IOPPSender.json +41 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/OPPCommon.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPCommon.sol/OPPCommon.json +287 -0
- package/src/assets/evm/wiredev/outpost/OPPEndpoint.sol/OPPEndpoint.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPEndpoint.sol/OPPEndpoint.json +337 -0
- package/src/assets/evm/wiredev/outpost/OPPEndpointManaged.sol/OPPEndpointManaged.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPEndpointManaged.sol/OPPEndpointManaged.json +458 -0
- package/src/assets/evm/wiredev/outpost/OPPEndpointOwnable.sol/OPPEndpointOwnable.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPEndpointOwnable.sol/OPPEndpointOwnable.json +442 -0
- package/src/assets/evm/wiredev/outpost/OPPErrors.sol/OPPErrors.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPErrors.sol/OPPErrors.json +288 -0
- package/src/assets/evm/wiredev/outpost/OPPInbound.sol/OPPInbound.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPInbound.sol/OPPInbound.json +1298 -0
- package/src/assets/evm/wiredev/outpost/OPPReceiver.sol/OPPReceiver.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPReceiver.sol/OPPReceiver.json +355 -0
- package/src/assets/evm/wiredev/outpost/OPPSender.sol/OPPSender.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OPPSender.sol/OPPSender.json +367 -0
- package/src/assets/evm/wiredev/outpost/OperatorRegistry.sol/OperatorRegistry.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OperatorRegistry.sol/OperatorRegistry.json +1111 -0
- package/src/assets/evm/wiredev/outpost/OutpostErrors.sol/OutpostErrors.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostErrors.sol/OutpostErrors.json +211 -0
- package/src/assets/evm/wiredev/outpost/OutpostManaged.sol/OutpostManaged.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostManaged.sol/OutpostManaged.json +229 -0
- package/src/assets/evm/wiredev/outpost/OutpostManager.sol/OutpostManager.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostManager.sol/OutpostManager.json +794 -0
- package/src/assets/evm/wiredev/outpost/OutpostManagerAuthority.sol/OutpostManagerAuthority.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostManagerAuthority.sol/OutpostManagerAuthority.json +1432 -0
- package/src/assets/evm/wiredev/outpost/OutpostManagerCommon.sol/IOutpostManager.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostManagerCommon.sol/IOutpostManager.json +130 -0
- package/src/assets/evm/wiredev/outpost/OutpostManagerCommon.sol/IOutpostUpgradeable.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostManagerCommon.sol/IOutpostUpgradeable.json +29 -0
- package/src/assets/evm/wiredev/outpost/OutpostManagerCommon.sol/OutpostManagerCommon.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostManagerCommon.sol/OutpostManagerCommon.json +141 -0
- package/src/assets/evm/wiredev/outpost/OutpostOwnable.sol/OutpostOwnable.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostOwnable.sol/OutpostOwnable.json +213 -0
- package/src/assets/evm/wiredev/outpost/OutpostReserve.sol/OutpostReserve.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/OutpostReserve.sol/OutpostReserve.json +931 -0
- package/src/assets/evm/wiredev/outpost/Pool.sol/Pool.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/Pool.sol/Pool.json +659 -0
- package/src/assets/evm/wiredev/outpost/Pretoken.sol/Pretoken.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/Pretoken.sol/Pretoken.json +1436 -0
- package/src/assets/evm/wiredev/outpost/ReceiptNFT.sol/ReceiptNFT.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/ReceiptNFT.sol/ReceiptNFT.json +1738 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/InstaswapConfirmCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/InstaswapConfirmCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/InstaswapFailedCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/InstaswapFailedCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/InstaswapRequestCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/InstaswapRequestCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/InstaswapSettlementCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/InstaswapSettlementCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/PrincipalExitConfirmCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/PrincipalExitConfirmCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/PrincipalExitFailedCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/PrincipalExitFailedCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/PrincipalExitRequestCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/PrincipalExitRequestCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/PrincipalStakeDeltaCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/PrincipalStakeDeltaCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/WireYieldHubAssetCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/WireYieldHubAssetCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/WireYieldHubAttestationTypeLib.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/WireYieldHubAttestationTypeLib.json +10 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/WireYieldHubAttestations.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/WireYieldHubAttestations.json +1437 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/YieldDepositCodec.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/WireYieldHubAttestations.sol/YieldDepositCodec.json +10 -0
- package/src/assets/evm/wiredev/outpost/interfaces/IPretoken.sol/IPretoken.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/interfaces/IPretoken.sol/IPretoken.json +29 -0
- package/src/assets/evm/wiredev/outpost/interfaces/IWarrant.sol/IWarrant.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/interfaces/IWarrant.sol/IWarrant.json +29 -0
- package/src/assets/evm/wiredev/outpost/token/ERC721EthEquivalentVotesUpgradeable.sol/ERC721EthEquivalentVotesUpgradeable.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/token/ERC721EthEquivalentVotesUpgradeable.sol/ERC721EthEquivalentVotesUpgradeable.json +858 -0
- package/src/assets/evm/wiredev/outpost/token/IERC721EthEquivalent.sol/IERC721EthEquivalent.dbg.json +4 -0
- package/src/assets/evm/wiredev/outpost/token/IERC721EthEquivalent.sol/IERC721EthEquivalent.json +30 -0
- package/src/assets/evm/wiredev/token/ERC1155Token.sol/ERC1155Token.dbg.json +4 -0
- package/src/assets/evm/wiredev/token/ERC1155Token.sol/ERC1155Token.json +472 -0
- package/src/assets/evm/wiredev/token/ERC20Token.sol/ERC20Token.dbg.json +4 -0
- package/src/assets/evm/wiredev/token/ERC20Token.sol/ERC20Token.json +330 -0
- package/src/assets/evm/wiredev/token/ERC721Token.sol/ERC721Token.dbg.json +4 -0
- package/src/assets/evm/wiredev/token/ERC721Token.sol/ERC721Token.json +449 -0
- package/src/assets/evm/wiredev/token/Eman1155.sol/Eman1155.dbg.json +4 -0
- package/src/assets/evm/wiredev/token/Eman1155.sol/Eman1155.json +560 -0
- package/src/assets/evm/wiredev/token/Eman20.sol/Eman20.dbg.json +4 -0
- package/src/assets/evm/wiredev/token/Eman20.sol/Eman20.json +460 -0
- package/src/assets/evm/wiredev/token/Eman721.sol/Eman721.dbg.json +4 -0
- package/src/assets/evm/wiredev/token/Eman721.sol/Eman721.json +624 -0
- package/src/assets/solana/mainnet/idl/validator_leaderboard.json.bak +568 -0
- package/src/assets/solana/wiredev/idl/liqsol_core.json +8726 -0
- package/src/assets/solana/wiredev/idl/liqsol_token.json +217 -0
- package/src/assets/solana/wiredev/idl/transfer_hook.json +490 -0
- package/src/assets/solana/wiredev/idl/validator_leaderboard.json +735 -0
- package/src/assets/solana/wiredev/types/liqsol_core.ts +8732 -0
- package/src/assets/solana/wiredev/types/liqsol_token.ts +223 -0
- package/src/assets/solana/wiredev/types/transfer_hook.ts +496 -0
- package/src/assets/solana/wiredev/types/validator_leaderboard.ts +741 -0
- package/src/chains.ts +165 -0
- package/src/index.ts +7 -3
- package/src/networks/{ethereum → evm}/clients/convert.client.ts +8 -3
- package/src/networks/evm/clients/instaswap.client.ts +440 -0
- package/src/networks/{ethereum → evm}/clients/opp.client.ts +3 -3
- package/src/networks/{ethereum → evm}/clients/pretoken.client.ts +11 -6
- package/src/networks/{ethereum → evm}/clients/receipt.client.ts +3 -3
- package/src/networks/{ethereum → evm}/clients/stake.client.ts +144 -20
- package/src/networks/{ethereum → evm}/clients/validator.client.ts +3 -3
- package/src/networks/{ethereum → evm}/contract.ts +207 -116
- package/src/networks/{ethereum/ethereum.ts → evm/evm.ts} +214 -68
- package/src/networks/{ethereum → evm}/utils.ts +56 -4
- package/src/networks/solana/clients/convert.client.ts +47 -11
- package/src/networks/solana/clients/distribution.client.ts +17 -13
- package/src/networks/solana/clients/instaswap.client.ts +486 -0
- package/src/networks/solana/clients/leaderboard.client.ts +4 -5
- package/src/networks/solana/clients/outpost.client.ts +110 -47
- package/src/networks/solana/clients/token.client.ts +20 -11
- package/src/networks/solana/constants.ts +27 -7
- package/src/networks/solana/program.ts +104 -19
- package/src/networks/solana/solana.ts +145 -15
- package/src/networks/solana/types.ts +1 -2
- package/src/networks/solana/utils.ts +36 -4
- package/src/staker.ts +22 -20
- package/src/status.ts +301 -0
- package/src/types.ts +6 -11
- /package/src/assets/{ethereum → evm}/mainnet/common/Base58.sol/Base58.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/Base58.sol/Base58.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/OpenZepArtifacts.sol/__Dummy_OZ_UUPS__.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/OpenZepArtifacts.sol/__Dummy_OZ_UUPS__.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/RestrictedCallers.sol/RestrictedCallers.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/RestrictedCallers.sol/RestrictedCallers.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/iodata.sol/iodata.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/iodata.sol/iodata.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/iodata_util.sol/iodata_util.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/iodata_util.sol/iodata_util.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_data.sol/sysio_data.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_data.sol/sysio_data.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_errors.sol/sysio_errors.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_errors.sol/sysio_errors.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_merkle.sol/sysio_merkle.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_merkle.sol/sysio_merkle.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_name.sol/sysio_name.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_name.sol/sysio_name.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_pubkey.sol/sysio_pubkey.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_pubkey.sol/sysio_pubkey.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_read.sol/sysio_read.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_read.sol/sysio_read.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_tester.sol/SysioTester.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_tester.sol/SysioTester.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_verify.sol/sysio_verify.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_verify.sol/sysio_verify.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_write.sol/sysio_write.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/common/sysio_write.sol/sysio_write.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/BeaconState.sol/BeaconState.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/BeaconState.sol/BeaconState.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/DepositManager.sol/DepositManagerV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/DepositManager.sol/DepositManagerV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/DepositManager.sol/IStakingModuleBondLocker.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/DepositManager.sol/IStakingModuleBondLocker.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/KeyBondManager.sol/KeyBondManager.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/KeyBondManager.sol/KeyBondManager.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthAuthority.sol/LiqEthAuthority.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthAuthority.sol/LiqEthAuthority.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IDepositContract.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IDepositContract.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IDepositManager.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IDepositManager.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IKeyBondManager.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IKeyBondManager.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/ILiqEthUpgradeable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/ILiqEthUpgradeable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IRewardsERC20.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IRewardsERC20.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IRewardsERC20Pausable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IRewardsERC20Pausable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IStakingModule.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IStakingModule.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IValidatorBalanceVerifier.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IValidatorBalanceVerifier.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IWithdrawalRecord.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/IWithdrawalRecord.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/LiqEthCommon.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthCommon.sol/LiqEthCommon.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthDeepFreeze.sol/LiqEthDeepFreeze.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthDeepFreeze.sol/LiqEthDeepFreeze.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthManaged.sol/LiqEthManaged.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/LiqEthManaged.sol/LiqEthManaged.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/RewardsERC20.sol/RewardsERC20UpgradeableV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/RewardsERC20.sol/RewardsERC20UpgradeableV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/RewardsERC20Pausable.sol/RewardsERC20PausableUpgradeableV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/RewardsERC20Pausable.sol/RewardsERC20PausableUpgradeableV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/StakingLib.sol/StakingLib.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/StakingLib.sol/StakingLib.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/Yield.sol/YieldOracle.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/Yield.sol/YieldOracle.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/liqEth.sol/LiqEthTokenV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/liqEth.sol/LiqEthTokenV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/stakingModule.sol/StakingModuleV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/stakingModule.sol/StakingModuleV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/DepositManager.sol/DepositManager.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/DepositManager.sol/DepositManager.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IAccounting.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IAccounting.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IDepositContract.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IDepositContract.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IDepositManager.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IDepositManager.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/ILiqEthUpgradeable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/ILiqEthUpgradeable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IRewardsERC20.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IRewardsERC20.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IRewardsERC20Pausable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IRewardsERC20Pausable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IStakingModule.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IStakingModule.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IValidatorBalanceVerifier.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IValidatorBalanceVerifier.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IWithdrawalRecord.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/IWithdrawalRecord.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/LiqEthCommon.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/LiqEthCommon.sol/LiqEthCommon.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/RewardsERC20.sol/RewardsERC20Upgradeable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/RewardsERC20.sol/RewardsERC20Upgradeable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/RewardsERC20Pausable.sol/RewardsERC20PausableUpgradeable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/RewardsERC20Pausable.sol/RewardsERC20PausableUpgradeable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/accounting.sol/Accounting.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/accounting.sol/Accounting.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/liqEth.sol/LiqEthToken.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/liqEth.sol/LiqEthToken.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/stakingModule.sol/StakingModule.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/v1/stakingModule.sol/StakingModule.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/withdrawalQueue.sol/WithdrawalQueue.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/withdrawalQueue.sol/WithdrawalQueue.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/withdrawalVault.sol/Uint64BE.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/withdrawalVault.sol/Uint64BE.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/withdrawalVault.sol/WithdrawalVault.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/liqEth/withdrawalVault.sol/WithdrawalVault.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/BAR.sol/BARV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/BAR.sol/BARV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/Depositor.sol/DepositorV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/Depositor.sol/DepositorV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/EthUsdPriceConsumer.sol/AggregatorV3Interface.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/EthUsdPriceConsumer.sol/AggregatorV3Interface.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/EthUsdPriceConsumer.sol/EthUsdPriceConsumer.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/EthUsdPriceConsumer.sol/EthUsdPriceConsumer.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPP.sol/OPP.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPP.sol/OPP.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPP.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPP.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPPEndpoint.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPPEndpoint.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPPInbound.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPPInbound.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPPReceiver.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPPReceiver.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPPSender.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/IOPPSender.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/OPPCommon.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPCommon.sol/OPPCommon.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPEndpoint.sol/OPPEndpoint.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPEndpoint.sol/OPPEndpoint.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPEndpointManaged.sol/OPPEndpointManaged.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPEndpointManaged.sol/OPPEndpointManaged.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPEndpointOwnable.sol/OPPEndpointOwnable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPEndpointOwnable.sol/OPPEndpointOwnable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPErrors.sol/OPPErrors.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPErrors.sol/OPPErrors.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPInbound.sol/OPPInbound.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPInbound.sol/OPPInbound.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPReceiver.sol/OPPReceiver.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPReceiver.sol/OPPReceiver.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPSender.sol/OPPSender.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OPPSender.sol/OPPSender.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostErrors.sol/OutpostErrors.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostErrors.sol/OutpostErrors.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManaged.sol/OutpostManaged.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManaged.sol/OutpostManaged.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManager.sol/OutpostManagerV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManager.sol/OutpostManagerV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManagerAuthority.sol/OutpostManagerAuthority.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManagerAuthority.sol/OutpostManagerAuthority.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManagerCommon.sol/IOutpostManager.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManagerCommon.sol/IOutpostManager.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManagerCommon.sol/IOutpostUpgradeable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManagerCommon.sol/IOutpostUpgradeable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManagerCommon.sol/OutpostManagerCommon.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostManagerCommon.sol/OutpostManagerCommon.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostOwnable.sol/OutpostOwnable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/OutpostOwnable.sol/OutpostOwnable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/Pool.sol/PoolV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/Pool.sol/PoolV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/Pretoken.sol/PretokenV2.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/Pretoken.sol/PretokenV2.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/ReceiptNFT.sol/ReceiptNFT.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/ReceiptNFT.sol/ReceiptNFT.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/interfaces/IPretoken.sol/IPretoken.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/interfaces/IPretoken.sol/IPretoken.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/interfaces/IWarrant.sol/IWarrant.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/interfaces/IWarrant.sol/IWarrant.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/token/ERC721EthEquivalentVotesUpgradeable.sol/ERC721EthEquivalentVotesUpgradeable.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/token/ERC721EthEquivalentVotesUpgradeable.sol/ERC721EthEquivalentVotesUpgradeable.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/token/IERC721EthEquivalent.sol/IERC721EthEquivalent.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/token/IERC721EthEquivalent.sol/IERC721EthEquivalent.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/BAR.sol/BAR.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/BAR.sol/BAR.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/Depositor.sol/Depositor.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/Depositor.sol/Depositor.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/OutpostManager.sol/OutpostManager.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/OutpostManager.sol/OutpostManager.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/Pool.sol/Pool.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/Pool.sol/Pool.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/Pretoken.sol/Pretoken.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/outpost/v1/Pretoken.sol/Pretoken.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/token/ERC1155Token.sol/ERC1155Token.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/token/ERC1155Token.sol/ERC1155Token.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/token/ERC20Token.sol/ERC20Token.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/token/ERC20Token.sol/ERC20Token.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/token/ERC721Token.sol/ERC721Token.dbg.json +0 -0
- /package/src/assets/{ethereum → evm}/mainnet/token/ERC721Token.sol/ERC721Token.json +0 -0
- /package/src/networks/{ethereum → evm}/types.ts +0 -0
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "OPPCommon",
|
|
4
|
+
"sourceName": "contracts/outpost/OPPCommon.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"components": [
|
|
10
|
+
{
|
|
11
|
+
"components": [
|
|
12
|
+
{
|
|
13
|
+
"components": [
|
|
14
|
+
{
|
|
15
|
+
"internalType": "ChainKind",
|
|
16
|
+
"name": "kind",
|
|
17
|
+
"type": "uint8"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"internalType": "uint32",
|
|
21
|
+
"name": "id",
|
|
22
|
+
"type": "uint32"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"internalType": "struct ChainId",
|
|
26
|
+
"name": "start",
|
|
27
|
+
"type": "tuple"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"components": [
|
|
31
|
+
{
|
|
32
|
+
"internalType": "ChainKind",
|
|
33
|
+
"name": "kind",
|
|
34
|
+
"type": "uint8"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"internalType": "uint32",
|
|
38
|
+
"name": "id",
|
|
39
|
+
"type": "uint32"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"internalType": "struct ChainId",
|
|
43
|
+
"name": "end",
|
|
44
|
+
"type": "tuple"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"internalType": "struct Endpoints",
|
|
48
|
+
"name": "endpoints",
|
|
49
|
+
"type": "tuple"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"internalType": "bytes",
|
|
53
|
+
"name": "messageId",
|
|
54
|
+
"type": "bytes"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"internalType": "bytes",
|
|
58
|
+
"name": "previousMessageId",
|
|
59
|
+
"type": "bytes"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"components": [
|
|
63
|
+
{
|
|
64
|
+
"internalType": "Endianness",
|
|
65
|
+
"name": "endianness",
|
|
66
|
+
"type": "uint8"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"internalType": "HashAlgorithm",
|
|
70
|
+
"name": "hashAlgorithm",
|
|
71
|
+
"type": "uint8"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"internalType": "LengthEncoding",
|
|
75
|
+
"name": "lengthEncoding",
|
|
76
|
+
"type": "uint8"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"internalType": "struct EncodingFlags",
|
|
80
|
+
"name": "encodingFlags",
|
|
81
|
+
"type": "tuple"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"internalType": "uint32",
|
|
85
|
+
"name": "payloadSize",
|
|
86
|
+
"type": "uint32"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"internalType": "bytes",
|
|
90
|
+
"name": "payloadChecksum",
|
|
91
|
+
"type": "bytes"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"internalType": "uint64",
|
|
95
|
+
"name": "timestamp",
|
|
96
|
+
"type": "uint64"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"internalType": "bytes",
|
|
100
|
+
"name": "headerChecksum",
|
|
101
|
+
"type": "bytes"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"internalType": "struct MessageHeader",
|
|
105
|
+
"name": "header",
|
|
106
|
+
"type": "tuple"
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"name": "getMessageID",
|
|
110
|
+
"outputs": [
|
|
111
|
+
{
|
|
112
|
+
"internalType": "bytes",
|
|
113
|
+
"name": "",
|
|
114
|
+
"type": "bytes"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"stateMutability": "pure",
|
|
118
|
+
"type": "function"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"inputs": [
|
|
122
|
+
{
|
|
123
|
+
"components": [
|
|
124
|
+
{
|
|
125
|
+
"components": [
|
|
126
|
+
{
|
|
127
|
+
"components": [
|
|
128
|
+
{
|
|
129
|
+
"internalType": "ChainKind",
|
|
130
|
+
"name": "kind",
|
|
131
|
+
"type": "uint8"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"internalType": "uint32",
|
|
135
|
+
"name": "id",
|
|
136
|
+
"type": "uint32"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"internalType": "struct ChainId",
|
|
140
|
+
"name": "start",
|
|
141
|
+
"type": "tuple"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"components": [
|
|
145
|
+
{
|
|
146
|
+
"internalType": "ChainKind",
|
|
147
|
+
"name": "kind",
|
|
148
|
+
"type": "uint8"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"internalType": "uint32",
|
|
152
|
+
"name": "id",
|
|
153
|
+
"type": "uint32"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"internalType": "struct ChainId",
|
|
157
|
+
"name": "end",
|
|
158
|
+
"type": "tuple"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"internalType": "struct Endpoints",
|
|
162
|
+
"name": "endpoints",
|
|
163
|
+
"type": "tuple"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"internalType": "bytes",
|
|
167
|
+
"name": "messageId",
|
|
168
|
+
"type": "bytes"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"internalType": "bytes",
|
|
172
|
+
"name": "previousMessageId",
|
|
173
|
+
"type": "bytes"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"components": [
|
|
177
|
+
{
|
|
178
|
+
"internalType": "Endianness",
|
|
179
|
+
"name": "endianness",
|
|
180
|
+
"type": "uint8"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"internalType": "HashAlgorithm",
|
|
184
|
+
"name": "hashAlgorithm",
|
|
185
|
+
"type": "uint8"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"internalType": "LengthEncoding",
|
|
189
|
+
"name": "lengthEncoding",
|
|
190
|
+
"type": "uint8"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"internalType": "struct EncodingFlags",
|
|
194
|
+
"name": "encodingFlags",
|
|
195
|
+
"type": "tuple"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"internalType": "uint32",
|
|
199
|
+
"name": "payloadSize",
|
|
200
|
+
"type": "uint32"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"internalType": "bytes",
|
|
204
|
+
"name": "payloadChecksum",
|
|
205
|
+
"type": "bytes"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"internalType": "uint64",
|
|
209
|
+
"name": "timestamp",
|
|
210
|
+
"type": "uint64"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"internalType": "bytes",
|
|
214
|
+
"name": "headerChecksum",
|
|
215
|
+
"type": "bytes"
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
"internalType": "struct MessageHeader",
|
|
219
|
+
"name": "header",
|
|
220
|
+
"type": "tuple"
|
|
221
|
+
}
|
|
222
|
+
],
|
|
223
|
+
"name": "headerChecksum",
|
|
224
|
+
"outputs": [
|
|
225
|
+
{
|
|
226
|
+
"internalType": "bytes32",
|
|
227
|
+
"name": "",
|
|
228
|
+
"type": "bytes32"
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"stateMutability": "pure",
|
|
232
|
+
"type": "function"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"inputs": [
|
|
236
|
+
{
|
|
237
|
+
"components": [
|
|
238
|
+
{
|
|
239
|
+
"internalType": "uint32",
|
|
240
|
+
"name": "version",
|
|
241
|
+
"type": "uint32"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"components": [
|
|
245
|
+
{
|
|
246
|
+
"internalType": "AttestationType",
|
|
247
|
+
"name": "type_",
|
|
248
|
+
"type": "uint16"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"internalType": "uint32",
|
|
252
|
+
"name": "dataSize",
|
|
253
|
+
"type": "uint32"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"internalType": "bytes",
|
|
257
|
+
"name": "data",
|
|
258
|
+
"type": "bytes"
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"internalType": "struct AttestationEntry[]",
|
|
262
|
+
"name": "attestations",
|
|
263
|
+
"type": "tuple[]"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"internalType": "struct MessagePayload",
|
|
267
|
+
"name": "payload",
|
|
268
|
+
"type": "tuple"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"name": "payloadChecksum",
|
|
272
|
+
"outputs": [
|
|
273
|
+
{
|
|
274
|
+
"internalType": "bytes32",
|
|
275
|
+
"name": "",
|
|
276
|
+
"type": "bytes32"
|
|
277
|
+
}
|
|
278
|
+
],
|
|
279
|
+
"stateMutability": "pure",
|
|
280
|
+
"type": "function"
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"bytecode": "0x60808060405234601957611174908161001f823930815050f35b600080fdfe6080604052600436101561001257600080fd5b60003560e01c8063409a090014610047578063b93612a7146100425763ecb013561461003d57600080fd5b61042e565b610413565b610050366102c8565b600161006860406100608461057b565b930151610ad6565b60c01c016001600160401b0381116100c1576040516001600160c01b0390921660c09190911b6001600160c01b0319161760208083019190915281526100bd906100b1816100ed565b604051918291826103e7565b0390f35b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b0382111761010857604052565b6100d7565b606081019081106001600160401b0382111761010857604052565b602081019081106001600160401b0382111761010857604052565b90601f801991011681019081106001600160401b0382111761010857604052565b6040519061010082018281106001600160401b0382111761010857604052565b60ff81160361018f57565b600080fd5b359063ffffffff8216820361018f57565b919082604091031261018f576040516101bd816100ed565b60206101d881839580356101d081610184565b855201610194565b910152565b919060808382031261018f5760206101d8604051926101fb846100ed565b6040849661020983826101a5565b8652016101a5565b81601f8201121561018f578035906001600160401b0382116101085760405192610245601f8401601f191660200185610143565b8284526020838301011161018f57816000926020809301838601378301015290565b919082606091031261018f5760405161027f8161010d565b6040808294803561028f81610184565b8452602081013561029f81610184565b60208501520135916102b083610184565b0152565b35906001600160401b038216820361018f57565b6003199060208183011261018f576004908135916001600160401b039384841161018f576101a090848403011261018f57610301610164565b9361030e838584016101dd565b8552608484013581811161018f57838361032a92870101610211565b602086015260a484013581811161018f57838361034992870101610211565b604086015261035b8360c48601610267565b606086015261036d6101248501610194565b608086015261014484013581811161018f57838361038d92870101610211565b60a086015261039f61016485016102b4565b60c086015261018484013590811161018f576103bc930101610211565b60e082015290565b60005b8381106103d75750506000910152565b81810151838201526020016103c7565b6040916020825261040781518092816020860152602086860191016103c4565b601f01601f1916010190565b6020610426610421366102c8565b61057b565b604051908152f35b6020600319818136011261018f576004356001600160401b0380821161018f5760408093833603011261018f57825191610467836100ed565b61047381600401610194565b835260249060248101359083821161018f5701903660238301121561018f57600482013592808411610108578360051b908651946104b389840187610143565b85526024888601928501019336851161018f5760248101925b8584106104f4576100bd896104e58a8a8e820152610957565b90519081529081906020820190565b833583811161018f5782016060602319823603011261018f578951916105198361010d565b8682013561ffff8116810361018f57835261053660448301610194565b8c84015260648201359285841161018f576105598d949389869536920101610211565b8c8201528152019301926104cc565b6040519061057582610128565b60008252565b60e081019081519060209182820191825193604091825161059b81610128565b60008152875282516105ac81610128565b6000815285526105ba610568565b9282866105c5610c9d565b9583519687918483016105d791610a90565b6105e091610a90565b0393601f199485810188526105f59088610143565b805161060090610aea565b968751610613906001600160401b031690565b61061c90610d72565b90855191829186830161062e91610a90565b61063791610a90565b0386810182526106479082610143565b845197889185830161065891610a90565b61066191610a90565b0385810188526106719088610143565b8487858451511515996107a5966106dd96610731956106dd956106ef956106dd9f61092c575b9250505086018a8a825151610904575b5050506106b76060870151610e43565b8a8a825161089a575b505050506106e36106cf610ced565b89519485938d850190610a90565b90610a90565b03888101835282610143565b610725610717610712610709608087015163ffffffff1690565b63ffffffff1690565b610d72565b87519586938b850190610a90565b03868101845283610143565b85828660a084019187835151610823575b5050505061071260c06107999361077d61078b94610771610761610d13565b6106dd8c519a8b94850190610a90565b038a8101885287610143565b01516001600160401b031690565b845197889388850190610a90565b03838101865285610143565b838851516107bc575b505050815191012093525290565b6106dd93945061080e61081a93926107f66106dd936107ea6107dc610d26565b84519687938c850190610a90565b03858101855284610143565b6108008b51610df3565b905195869388850190610a90565b03908101835282610143565b903880806107ae565b61079995965061078b946108806108706107129661086a60c0976106dd9761085e61088c98610850610d00565b90519a8b938a850190610a90565b03908101885287610143565b51610df3565b6106dd8c51958694850190610a90565b038a8101835282610143565b949389935088915087610742565b91610870610880926106dd6108ef6108fb97966108cd6106dd9a6107ea6108bf610cda565b84519687938d850190610a90565b6108e161071287516001600160401b031690565b9051998a9389850190610a90565b03908101875286610143565b89388a8a6106c0565b610923939261086a610880936106dd9761085e61087095610850610cc7565b89388a8a6106a7565b6106dd95509261086a610880936108709361085e61094d9897610850610cb4565b898d8a388b610697565b61098a91610963610568565b9061096c610d39565b6106dd6109d06040926040519788916106dd60209889850190610a90565b039661099e601f1998898101835282610143565b6109c46109b56107126107098a5163ffffffff1690565b60405194859389850190610a90565b03878101835282610143565b916000925b848601805151851015610a81576106dd610a776106dd6108808995610a698d610a37610a318d60019a610a2b8f610a1f8f916106dd610a12610cb4565b91519b8c94850190610a90565b03868101895288610143565b51610abd565b51610fa3565b92610a5d610a4f61071286516001600160401b031690565b8d519788938d850190610a90565b03908101855284610143565b885194859388850190610a90565b94019390506109d5565b50945094505050815191012090565b90610aa3602092828151948592016103c4565b0190565b634e487b7160e01b600052603260045260246000fd5b8051821015610ad15760209160051b010190565b610aa7565b805115610ae4576020015190565b50600090565b610af2610568565b90610afb610c9d565b6040805193846020938492838301610b1291610a90565b610b1b91610a90565b0393601f19948581018752610b309087610143565b8051610b3b9061109c565b958651610b4e906001600160401b031690565b610b5790610d72565b908451918291858301610b6991610a90565b610b7291610a90565b038681018252610b829082610143565b8351968791848301610b9391610a90565b610b9c91610a90565b038581018752610bac9087610143565b610bb4610cb4565b958351968791848301610bc691610a90565b610bcf91610a90565b038581018752610bdf9087610143565b0151610bea9061109c565b908151610bfd906001600160401b031690565b610c0690610d72565b948151958691858301610c1891610a90565b610c2191610a90565b038481018652610c319086610143565b519384928301610c4091610a90565b610c4991610a90565b039081018252610c599082610143565b90565b60405190610c69826100ed565b6001825260203681840137565b60405190610c83826100ed565b600a825260203681840137565b805115610ad15760200190565b610ca5610c5c565b600a610cb082610c90565b5390565b610cbc610c5c565b6012610cb082610c90565b610ccf610c5c565b601a610cb082610c90565b610ce2610c5c565b6022610cb082610c90565b610cf5610c5c565b6028610cb082610c90565b610d08610c5c565b6032610cb082610c90565b610d1b610c5c565b6038610cb082610c90565b610d2e610c5c565b6042610cb082610c90565b610d41610c5c565b6008610cb082610c90565b610d54610c5c565b6010610cb082610c90565b610d67610c5c565b6018610cb082610c90565b9060809160806001600160401b03821610610dce57610d8f610c76565b60005b607f80841115610db657908560019285161760208285010153019160071c91610d92565b5090929350607f600192166020828501015301815290565b909150610dd9610c5c565b9060f81b6001600160f81b03191660001a610cb082610c90565b610c596020610e0b6001600160401b03845116610d72565b6040519381610e2386935180928680870191016103c4565b8201610e37825180938680850191016103c4565b01038084520182610143565b610e4b610568565b9060ff610e62610e5c835160ff1690565b60ff1690565b16610f4c575b60208101610e7d610e5c610e5c835160ff1690565b610eff575b50604001610e97610e5c610e5c835160ff1690565b610e9f575090565b610c59906106dd61080e610eef610712610e5c610e5c6106dd98610ed4610ec4610d5f565b6040519889936020850190610a90565b0396610ee8601f1998898101895288610143565b5160ff1690565b6040519586936020850190610a90565b610f456106dd916106dd61080e610f36610712610e5c610e5c6040999a610ed4610f27610d4c565b8c519889936020850190610a90565b86519586936020850190610a90565b9190610e82565b90610f9d6106dd6106dd92610f72610f62610d39565b6040519384936020850190610a90565b0390610f86601f1992838101835282610143565b61080e610eef610712610e5c610e5c895160ff1690565b90610e68565b610c59610fe46106dd9261080e6110886106dd61108f610fc1610568565b94610fca610d39565b9060409485928351998a916106dd60209b8c850190610a90565b0398610ff8601f199a8b8101835282610143565b6110378961102b61101b610712611014611014895161ffff1690565b61ffff1690565b6106dd8851958694850190610a90565b038b8101835282610143565b6110468961102b61101b610d4c565b6110638961102b61101b6107126107098489015163ffffffff1690565b61107c61106e610cc7565b85519d8e938c850190610a90565b038981018c528b610143565b0151610df3565b9151968794850190610a90565b610c596106dd6106dd61080e610eef61071261070960206106dd986111336106dd61110d6110c8610568565b6110e26110d3610d39565b6040519d8e9389850190610a90565b039a6110f6601f199c8d8101835282610143565b61102b6109b5610712610e5c610e5c895160ff1690565b611127611118610d4c565b6040519a8b9387850190610a90565b03898101895288610143565b015163ffffffff169056fea26469706673582212200e17725446bb5783359fe171bdf1fbfd63b17a00be8f58e2269172919966164c64736f6c63430008190033",
|
|
284
|
+
"deployedBytecode": "0x6080604052600436101561001257600080fd5b60003560e01c8063409a090014610047578063b93612a7146100425763ecb013561461003d57600080fd5b61042e565b610413565b610050366102c8565b600161006860406100608461057b565b930151610ad6565b60c01c016001600160401b0381116100c1576040516001600160c01b0390921660c09190911b6001600160c01b0319161760208083019190915281526100bd906100b1816100ed565b604051918291826103e7565b0390f35b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b0382111761010857604052565b6100d7565b606081019081106001600160401b0382111761010857604052565b602081019081106001600160401b0382111761010857604052565b90601f801991011681019081106001600160401b0382111761010857604052565b6040519061010082018281106001600160401b0382111761010857604052565b60ff81160361018f57565b600080fd5b359063ffffffff8216820361018f57565b919082604091031261018f576040516101bd816100ed565b60206101d881839580356101d081610184565b855201610194565b910152565b919060808382031261018f5760206101d8604051926101fb846100ed565b6040849661020983826101a5565b8652016101a5565b81601f8201121561018f578035906001600160401b0382116101085760405192610245601f8401601f191660200185610143565b8284526020838301011161018f57816000926020809301838601378301015290565b919082606091031261018f5760405161027f8161010d565b6040808294803561028f81610184565b8452602081013561029f81610184565b60208501520135916102b083610184565b0152565b35906001600160401b038216820361018f57565b6003199060208183011261018f576004908135916001600160401b039384841161018f576101a090848403011261018f57610301610164565b9361030e838584016101dd565b8552608484013581811161018f57838361032a92870101610211565b602086015260a484013581811161018f57838361034992870101610211565b604086015261035b8360c48601610267565b606086015261036d6101248501610194565b608086015261014484013581811161018f57838361038d92870101610211565b60a086015261039f61016485016102b4565b60c086015261018484013590811161018f576103bc930101610211565b60e082015290565b60005b8381106103d75750506000910152565b81810151838201526020016103c7565b6040916020825261040781518092816020860152602086860191016103c4565b601f01601f1916010190565b6020610426610421366102c8565b61057b565b604051908152f35b6020600319818136011261018f576004356001600160401b0380821161018f5760408093833603011261018f57825191610467836100ed565b61047381600401610194565b835260249060248101359083821161018f5701903660238301121561018f57600482013592808411610108578360051b908651946104b389840187610143565b85526024888601928501019336851161018f5760248101925b8584106104f4576100bd896104e58a8a8e820152610957565b90519081529081906020820190565b833583811161018f5782016060602319823603011261018f578951916105198361010d565b8682013561ffff8116810361018f57835261053660448301610194565b8c84015260648201359285841161018f576105598d949389869536920101610211565b8c8201528152019301926104cc565b6040519061057582610128565b60008252565b60e081019081519060209182820191825193604091825161059b81610128565b60008152875282516105ac81610128565b6000815285526105ba610568565b9282866105c5610c9d565b9583519687918483016105d791610a90565b6105e091610a90565b0393601f199485810188526105f59088610143565b805161060090610aea565b968751610613906001600160401b031690565b61061c90610d72565b90855191829186830161062e91610a90565b61063791610a90565b0386810182526106479082610143565b845197889185830161065891610a90565b61066191610a90565b0385810188526106719088610143565b8487858451511515996107a5966106dd96610731956106dd956106ef956106dd9f61092c575b9250505086018a8a825151610904575b5050506106b76060870151610e43565b8a8a825161089a575b505050506106e36106cf610ced565b89519485938d850190610a90565b90610a90565b03888101835282610143565b610725610717610712610709608087015163ffffffff1690565b63ffffffff1690565b610d72565b87519586938b850190610a90565b03868101845283610143565b85828660a084019187835151610823575b5050505061071260c06107999361077d61078b94610771610761610d13565b6106dd8c519a8b94850190610a90565b038a8101885287610143565b01516001600160401b031690565b845197889388850190610a90565b03838101865285610143565b838851516107bc575b505050815191012093525290565b6106dd93945061080e61081a93926107f66106dd936107ea6107dc610d26565b84519687938c850190610a90565b03858101855284610143565b6108008b51610df3565b905195869388850190610a90565b03908101835282610143565b903880806107ae565b61079995965061078b946108806108706107129661086a60c0976106dd9761085e61088c98610850610d00565b90519a8b938a850190610a90565b03908101885287610143565b51610df3565b6106dd8c51958694850190610a90565b038a8101835282610143565b949389935088915087610742565b91610870610880926106dd6108ef6108fb97966108cd6106dd9a6107ea6108bf610cda565b84519687938d850190610a90565b6108e161071287516001600160401b031690565b9051998a9389850190610a90565b03908101875286610143565b89388a8a6106c0565b610923939261086a610880936106dd9761085e61087095610850610cc7565b89388a8a6106a7565b6106dd95509261086a610880936108709361085e61094d9897610850610cb4565b898d8a388b610697565b61098a91610963610568565b9061096c610d39565b6106dd6109d06040926040519788916106dd60209889850190610a90565b039661099e601f1998898101835282610143565b6109c46109b56107126107098a5163ffffffff1690565b60405194859389850190610a90565b03878101835282610143565b916000925b848601805151851015610a81576106dd610a776106dd6108808995610a698d610a37610a318d60019a610a2b8f610a1f8f916106dd610a12610cb4565b91519b8c94850190610a90565b03868101895288610143565b51610abd565b51610fa3565b92610a5d610a4f61071286516001600160401b031690565b8d519788938d850190610a90565b03908101855284610143565b885194859388850190610a90565b94019390506109d5565b50945094505050815191012090565b90610aa3602092828151948592016103c4565b0190565b634e487b7160e01b600052603260045260246000fd5b8051821015610ad15760209160051b010190565b610aa7565b805115610ae4576020015190565b50600090565b610af2610568565b90610afb610c9d565b6040805193846020938492838301610b1291610a90565b610b1b91610a90565b0393601f19948581018752610b309087610143565b8051610b3b9061109c565b958651610b4e906001600160401b031690565b610b5790610d72565b908451918291858301610b6991610a90565b610b7291610a90565b038681018252610b829082610143565b8351968791848301610b9391610a90565b610b9c91610a90565b038581018752610bac9087610143565b610bb4610cb4565b958351968791848301610bc691610a90565b610bcf91610a90565b038581018752610bdf9087610143565b0151610bea9061109c565b908151610bfd906001600160401b031690565b610c0690610d72565b948151958691858301610c1891610a90565b610c2191610a90565b038481018652610c319086610143565b519384928301610c4091610a90565b610c4991610a90565b039081018252610c599082610143565b90565b60405190610c69826100ed565b6001825260203681840137565b60405190610c83826100ed565b600a825260203681840137565b805115610ad15760200190565b610ca5610c5c565b600a610cb082610c90565b5390565b610cbc610c5c565b6012610cb082610c90565b610ccf610c5c565b601a610cb082610c90565b610ce2610c5c565b6022610cb082610c90565b610cf5610c5c565b6028610cb082610c90565b610d08610c5c565b6032610cb082610c90565b610d1b610c5c565b6038610cb082610c90565b610d2e610c5c565b6042610cb082610c90565b610d41610c5c565b6008610cb082610c90565b610d54610c5c565b6010610cb082610c90565b610d67610c5c565b6018610cb082610c90565b9060809160806001600160401b03821610610dce57610d8f610c76565b60005b607f80841115610db657908560019285161760208285010153019160071c91610d92565b5090929350607f600192166020828501015301815290565b909150610dd9610c5c565b9060f81b6001600160f81b03191660001a610cb082610c90565b610c596020610e0b6001600160401b03845116610d72565b6040519381610e2386935180928680870191016103c4565b8201610e37825180938680850191016103c4565b01038084520182610143565b610e4b610568565b9060ff610e62610e5c835160ff1690565b60ff1690565b16610f4c575b60208101610e7d610e5c610e5c835160ff1690565b610eff575b50604001610e97610e5c610e5c835160ff1690565b610e9f575090565b610c59906106dd61080e610eef610712610e5c610e5c6106dd98610ed4610ec4610d5f565b6040519889936020850190610a90565b0396610ee8601f1998898101895288610143565b5160ff1690565b6040519586936020850190610a90565b610f456106dd916106dd61080e610f36610712610e5c610e5c6040999a610ed4610f27610d4c565b8c519889936020850190610a90565b86519586936020850190610a90565b9190610e82565b90610f9d6106dd6106dd92610f72610f62610d39565b6040519384936020850190610a90565b0390610f86601f1992838101835282610143565b61080e610eef610712610e5c610e5c895160ff1690565b90610e68565b610c59610fe46106dd9261080e6110886106dd61108f610fc1610568565b94610fca610d39565b9060409485928351998a916106dd60209b8c850190610a90565b0398610ff8601f199a8b8101835282610143565b6110378961102b61101b610712611014611014895161ffff1690565b61ffff1690565b6106dd8851958694850190610a90565b038b8101835282610143565b6110468961102b61101b610d4c565b6110638961102b61101b6107126107098489015163ffffffff1690565b61107c61106e610cc7565b85519d8e938c850190610a90565b038981018c528b610143565b0151610df3565b9151968794850190610a90565b610c596106dd6106dd61080e610eef61071261070960206106dd986111336106dd61110d6110c8610568565b6110e26110d3610d39565b6040519d8e9389850190610a90565b039a6110f6601f199c8d8101835282610143565b61102b6109b5610712610e5c610e5c895160ff1690565b611127611118610d4c565b6040519a8b9387850190610a90565b03898101895288610143565b015163ffffffff169056fea26469706673582212200e17725446bb5783359fe171bdf1fbfd63b17a00be8f58e2269172919966164c64736f6c63430008190033",
|
|
285
|
+
"linkReferences": {},
|
|
286
|
+
"deployedLinkReferences": {}
|
|
287
|
+
}
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "OPPEndpoint",
|
|
4
|
+
"sourceName": "contracts/outpost/OPPEndpoint.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "InvalidInitialization",
|
|
9
|
+
"type": "error"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"inputs": [],
|
|
13
|
+
"name": "NotInitializing",
|
|
14
|
+
"type": "error"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"inputs": [
|
|
18
|
+
{
|
|
19
|
+
"internalType": "address",
|
|
20
|
+
"name": "signer",
|
|
21
|
+
"type": "address"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"name": "OPP_DuplicateSignature",
|
|
25
|
+
"type": "error"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [
|
|
29
|
+
{
|
|
30
|
+
"internalType": "bytes32",
|
|
31
|
+
"name": "expected",
|
|
32
|
+
"type": "bytes32"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"internalType": "bytes32",
|
|
36
|
+
"name": "actual",
|
|
37
|
+
"type": "bytes32"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"name": "OPP_EpochHashMismatch",
|
|
41
|
+
"type": "error"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"inputs": [
|
|
45
|
+
{
|
|
46
|
+
"internalType": "uint256",
|
|
47
|
+
"name": "required",
|
|
48
|
+
"type": "uint256"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"internalType": "uint256",
|
|
52
|
+
"name": "provided",
|
|
53
|
+
"type": "uint256"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"name": "OPP_InsufficientSignatureWeight",
|
|
57
|
+
"type": "error"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"inputs": [
|
|
61
|
+
{
|
|
62
|
+
"internalType": "address",
|
|
63
|
+
"name": "caller",
|
|
64
|
+
"type": "address"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"internalType": "address",
|
|
68
|
+
"name": "expected",
|
|
69
|
+
"type": "address"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"name": "OPP_InvalidOPPAddress",
|
|
73
|
+
"type": "error"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"inputs": [
|
|
77
|
+
{
|
|
78
|
+
"internalType": "uint256",
|
|
79
|
+
"name": "index",
|
|
80
|
+
"type": "uint256"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"name": "OPP_InvalidSignatureMetadata",
|
|
84
|
+
"type": "error"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"inputs": [
|
|
88
|
+
{
|
|
89
|
+
"internalType": "bytes",
|
|
90
|
+
"name": "expected",
|
|
91
|
+
"type": "bytes"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"internalType": "bytes",
|
|
95
|
+
"name": "actual",
|
|
96
|
+
"type": "bytes"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"name": "OPP_MessageIDMismatch",
|
|
100
|
+
"type": "error"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"inputs": [],
|
|
104
|
+
"name": "OPP_NoAttestationsSent",
|
|
105
|
+
"type": "error"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"inputs": [],
|
|
109
|
+
"name": "OPP_NoPendingAttestations",
|
|
110
|
+
"type": "error"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"inputs": [
|
|
114
|
+
{
|
|
115
|
+
"internalType": "uint32",
|
|
116
|
+
"name": "expected",
|
|
117
|
+
"type": "uint32"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"internalType": "uint32",
|
|
121
|
+
"name": "actual",
|
|
122
|
+
"type": "uint32"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"name": "OPP_NonSequentialEpoch",
|
|
126
|
+
"type": "error"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"inputs": [],
|
|
130
|
+
"name": "OPP_NotSending",
|
|
131
|
+
"type": "error"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"inputs": [],
|
|
135
|
+
"name": "OPP_OPPAddressNotSet",
|
|
136
|
+
"type": "error"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"inputs": [],
|
|
140
|
+
"name": "OPP_OperatorRegistryNotSet",
|
|
141
|
+
"type": "error"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"inputs": [
|
|
145
|
+
{
|
|
146
|
+
"internalType": "bytes32",
|
|
147
|
+
"name": "expected",
|
|
148
|
+
"type": "bytes32"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"internalType": "bytes32",
|
|
152
|
+
"name": "actual",
|
|
153
|
+
"type": "bytes32"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"name": "OPP_PayloadChecksumMismatch",
|
|
157
|
+
"type": "error"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"inputs": [
|
|
161
|
+
{
|
|
162
|
+
"internalType": "uint32",
|
|
163
|
+
"name": "epochIndex",
|
|
164
|
+
"type": "uint32"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"internalType": "uint256",
|
|
168
|
+
"name": "messageCount",
|
|
169
|
+
"type": "uint256"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"name": "OPP_PreviousEpochPendingMessages",
|
|
173
|
+
"type": "error"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"inputs": [
|
|
177
|
+
{
|
|
178
|
+
"internalType": "uint32",
|
|
179
|
+
"name": "epochIndex",
|
|
180
|
+
"type": "uint32"
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"name": "OPP_PreviousEpochSent",
|
|
184
|
+
"type": "error"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"inputs": [
|
|
188
|
+
{
|
|
189
|
+
"internalType": "uint32",
|
|
190
|
+
"name": "epochIndex",
|
|
191
|
+
"type": "uint32"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"name": "OPP_PreviousEpochUnsent",
|
|
195
|
+
"type": "error"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"inputs": [
|
|
199
|
+
{
|
|
200
|
+
"internalType": "bytes",
|
|
201
|
+
"name": "expected",
|
|
202
|
+
"type": "bytes"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"internalType": "bytes",
|
|
206
|
+
"name": "actual",
|
|
207
|
+
"type": "bytes"
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"name": "OPP_PreviousMessageIDMismatch",
|
|
211
|
+
"type": "error"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"inputs": [
|
|
215
|
+
{
|
|
216
|
+
"internalType": "uint256",
|
|
217
|
+
"name": "stack",
|
|
218
|
+
"type": "uint256"
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"name": "OPP_SendStackError",
|
|
222
|
+
"type": "error"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"inputs": [
|
|
226
|
+
{
|
|
227
|
+
"internalType": "uint256",
|
|
228
|
+
"name": "expectedMaxAttestations",
|
|
229
|
+
"type": "uint256"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"internalType": "uint256",
|
|
233
|
+
"name": "actualAttestations",
|
|
234
|
+
"type": "uint256"
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
"name": "OPP_TooManyAttestations",
|
|
238
|
+
"type": "error"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"inputs": [
|
|
242
|
+
{
|
|
243
|
+
"internalType": "uint256",
|
|
244
|
+
"name": "expectedMaxMessages",
|
|
245
|
+
"type": "uint256"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"internalType": "uint256",
|
|
249
|
+
"name": "actualMessages",
|
|
250
|
+
"type": "uint256"
|
|
251
|
+
}
|
|
252
|
+
],
|
|
253
|
+
"name": "OPP_TooManyMessages",
|
|
254
|
+
"type": "error"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"inputs": [
|
|
258
|
+
{
|
|
259
|
+
"internalType": "address",
|
|
260
|
+
"name": "sender",
|
|
261
|
+
"type": "address"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"internalType": "AttestationType",
|
|
265
|
+
"name": "attestationType",
|
|
266
|
+
"type": "uint16"
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"name": "OPP_UnauthorizedAttestationType",
|
|
270
|
+
"type": "error"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"inputs": [
|
|
274
|
+
{
|
|
275
|
+
"internalType": "AttestationType",
|
|
276
|
+
"name": "attestationType",
|
|
277
|
+
"type": "uint16"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"name": "OPP_UnhandledAttestationType",
|
|
281
|
+
"type": "error"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"inputs": [],
|
|
285
|
+
"name": "OPP_ZeroMaxAttestations",
|
|
286
|
+
"type": "error"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"inputs": [],
|
|
290
|
+
"name": "OPP_ZeroTag",
|
|
291
|
+
"type": "error"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"anonymous": false,
|
|
295
|
+
"inputs": [
|
|
296
|
+
{
|
|
297
|
+
"indexed": false,
|
|
298
|
+
"internalType": "uint64",
|
|
299
|
+
"name": "version",
|
|
300
|
+
"type": "uint64"
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"name": "Initialized",
|
|
304
|
+
"type": "event"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"inputs": [],
|
|
308
|
+
"name": "oppAddress",
|
|
309
|
+
"outputs": [
|
|
310
|
+
{
|
|
311
|
+
"internalType": "address",
|
|
312
|
+
"name": "",
|
|
313
|
+
"type": "address"
|
|
314
|
+
}
|
|
315
|
+
],
|
|
316
|
+
"stateMutability": "view",
|
|
317
|
+
"type": "function"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"inputs": [],
|
|
321
|
+
"name": "oppInboundAddress",
|
|
322
|
+
"outputs": [
|
|
323
|
+
{
|
|
324
|
+
"internalType": "address",
|
|
325
|
+
"name": "",
|
|
326
|
+
"type": "address"
|
|
327
|
+
}
|
|
328
|
+
],
|
|
329
|
+
"stateMutability": "view",
|
|
330
|
+
"type": "function"
|
|
331
|
+
}
|
|
332
|
+
],
|
|
333
|
+
"bytecode": "0x",
|
|
334
|
+
"deployedBytecode": "0x",
|
|
335
|
+
"linkReferences": {},
|
|
336
|
+
"deployedLinkReferences": {}
|
|
337
|
+
}
|