@wireio/stake 2.7.3 → 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 +51022 -13666
- package/lib/stake.browser.js.map +1 -1
- package/lib/stake.d.ts +564 -15456
- package/lib/stake.js +48011 -10474
- package/lib/stake.js.map +1 -1
- package/lib/stake.m.js +51022 -13666
- 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/liqsol_core.json +259 -12
- package/src/assets/solana/mainnet/idl/transfer_hook.json +12 -1
- package/src/assets/solana/mainnet/idl/validator_leaderboard.json +89 -73
- package/src/assets/solana/mainnet/idl/validator_leaderboard.json.bak +568 -0
- package/src/assets/solana/mainnet/types/liqsol_core.ts +259 -12
- package/src/assets/solana/mainnet/types/transfer_hook.ts +12 -1
- package/src/assets/solana/mainnet/types/validator_leaderboard.ts +89 -73
- 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,1154 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "BAR",
|
|
4
|
+
"sourceName": "contracts/outpost/BAR.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "authority",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
|
15
|
+
"type": "error"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [
|
|
19
|
+
{
|
|
20
|
+
"internalType": "address",
|
|
21
|
+
"name": "caller",
|
|
22
|
+
"type": "address"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"internalType": "uint32",
|
|
26
|
+
"name": "delay",
|
|
27
|
+
"type": "uint32"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
|
31
|
+
"type": "error"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"inputs": [
|
|
35
|
+
{
|
|
36
|
+
"internalType": "address",
|
|
37
|
+
"name": "caller",
|
|
38
|
+
"type": "address"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"name": "AccessManagedUnauthorized",
|
|
42
|
+
"type": "error"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"inputs": [
|
|
46
|
+
{
|
|
47
|
+
"internalType": "address",
|
|
48
|
+
"name": "target",
|
|
49
|
+
"type": "address"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"name": "AddressEmptyCode",
|
|
53
|
+
"type": "error"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"inputs": [
|
|
57
|
+
{
|
|
58
|
+
"internalType": "address",
|
|
59
|
+
"name": "implementation",
|
|
60
|
+
"type": "address"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"name": "ERC1967InvalidImplementation",
|
|
64
|
+
"type": "error"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"inputs": [],
|
|
68
|
+
"name": "ERC1967NonPayable",
|
|
69
|
+
"type": "error"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"inputs": [],
|
|
73
|
+
"name": "FailedCall",
|
|
74
|
+
"type": "error"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"inputs": [],
|
|
78
|
+
"name": "InvalidInitialization",
|
|
79
|
+
"type": "error"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"inputs": [],
|
|
83
|
+
"name": "NotInitializing",
|
|
84
|
+
"type": "error"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"inputs": [
|
|
88
|
+
{
|
|
89
|
+
"internalType": "address",
|
|
90
|
+
"name": "signer",
|
|
91
|
+
"type": "address"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"name": "OPP_DuplicateSignature",
|
|
95
|
+
"type": "error"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"inputs": [
|
|
99
|
+
{
|
|
100
|
+
"internalType": "bytes32",
|
|
101
|
+
"name": "expected",
|
|
102
|
+
"type": "bytes32"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"internalType": "bytes32",
|
|
106
|
+
"name": "actual",
|
|
107
|
+
"type": "bytes32"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"name": "OPP_EpochHashMismatch",
|
|
111
|
+
"type": "error"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"inputs": [
|
|
115
|
+
{
|
|
116
|
+
"internalType": "uint256",
|
|
117
|
+
"name": "required",
|
|
118
|
+
"type": "uint256"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"internalType": "uint256",
|
|
122
|
+
"name": "provided",
|
|
123
|
+
"type": "uint256"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"name": "OPP_InsufficientSignatureWeight",
|
|
127
|
+
"type": "error"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"inputs": [
|
|
131
|
+
{
|
|
132
|
+
"internalType": "address",
|
|
133
|
+
"name": "caller",
|
|
134
|
+
"type": "address"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"internalType": "address",
|
|
138
|
+
"name": "expected",
|
|
139
|
+
"type": "address"
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"name": "OPP_InvalidOPPAddress",
|
|
143
|
+
"type": "error"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"inputs": [
|
|
147
|
+
{
|
|
148
|
+
"internalType": "uint256",
|
|
149
|
+
"name": "index",
|
|
150
|
+
"type": "uint256"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"name": "OPP_InvalidSignatureMetadata",
|
|
154
|
+
"type": "error"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"inputs": [
|
|
158
|
+
{
|
|
159
|
+
"internalType": "bytes",
|
|
160
|
+
"name": "expected",
|
|
161
|
+
"type": "bytes"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"internalType": "bytes",
|
|
165
|
+
"name": "actual",
|
|
166
|
+
"type": "bytes"
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"name": "OPP_MessageIDMismatch",
|
|
170
|
+
"type": "error"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"inputs": [],
|
|
174
|
+
"name": "OPP_NoAttestationsSent",
|
|
175
|
+
"type": "error"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"inputs": [],
|
|
179
|
+
"name": "OPP_NoPendingAttestations",
|
|
180
|
+
"type": "error"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"inputs": [
|
|
184
|
+
{
|
|
185
|
+
"internalType": "uint32",
|
|
186
|
+
"name": "expected",
|
|
187
|
+
"type": "uint32"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"internalType": "uint32",
|
|
191
|
+
"name": "actual",
|
|
192
|
+
"type": "uint32"
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
"name": "OPP_NonSequentialEpoch",
|
|
196
|
+
"type": "error"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"inputs": [],
|
|
200
|
+
"name": "OPP_NotSending",
|
|
201
|
+
"type": "error"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"inputs": [],
|
|
205
|
+
"name": "OPP_OPPAddressNotSet",
|
|
206
|
+
"type": "error"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"inputs": [],
|
|
210
|
+
"name": "OPP_OperatorRegistryNotSet",
|
|
211
|
+
"type": "error"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"inputs": [
|
|
215
|
+
{
|
|
216
|
+
"internalType": "bytes32",
|
|
217
|
+
"name": "expected",
|
|
218
|
+
"type": "bytes32"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"internalType": "bytes32",
|
|
222
|
+
"name": "actual",
|
|
223
|
+
"type": "bytes32"
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"name": "OPP_PayloadChecksumMismatch",
|
|
227
|
+
"type": "error"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"inputs": [
|
|
231
|
+
{
|
|
232
|
+
"internalType": "uint32",
|
|
233
|
+
"name": "epochIndex",
|
|
234
|
+
"type": "uint32"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"internalType": "uint256",
|
|
238
|
+
"name": "messageCount",
|
|
239
|
+
"type": "uint256"
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"name": "OPP_PreviousEpochPendingMessages",
|
|
243
|
+
"type": "error"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"inputs": [
|
|
247
|
+
{
|
|
248
|
+
"internalType": "uint32",
|
|
249
|
+
"name": "epochIndex",
|
|
250
|
+
"type": "uint32"
|
|
251
|
+
}
|
|
252
|
+
],
|
|
253
|
+
"name": "OPP_PreviousEpochSent",
|
|
254
|
+
"type": "error"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"inputs": [
|
|
258
|
+
{
|
|
259
|
+
"internalType": "uint32",
|
|
260
|
+
"name": "epochIndex",
|
|
261
|
+
"type": "uint32"
|
|
262
|
+
}
|
|
263
|
+
],
|
|
264
|
+
"name": "OPP_PreviousEpochUnsent",
|
|
265
|
+
"type": "error"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"inputs": [
|
|
269
|
+
{
|
|
270
|
+
"internalType": "bytes",
|
|
271
|
+
"name": "expected",
|
|
272
|
+
"type": "bytes"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"internalType": "bytes",
|
|
276
|
+
"name": "actual",
|
|
277
|
+
"type": "bytes"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"name": "OPP_PreviousMessageIDMismatch",
|
|
281
|
+
"type": "error"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"inputs": [
|
|
285
|
+
{
|
|
286
|
+
"internalType": "uint256",
|
|
287
|
+
"name": "stack",
|
|
288
|
+
"type": "uint256"
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"name": "OPP_SendStackError",
|
|
292
|
+
"type": "error"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"inputs": [
|
|
296
|
+
{
|
|
297
|
+
"internalType": "uint256",
|
|
298
|
+
"name": "expectedMaxAttestations",
|
|
299
|
+
"type": "uint256"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"internalType": "uint256",
|
|
303
|
+
"name": "actualAttestations",
|
|
304
|
+
"type": "uint256"
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"name": "OPP_TooManyAttestations",
|
|
308
|
+
"type": "error"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"inputs": [
|
|
312
|
+
{
|
|
313
|
+
"internalType": "uint256",
|
|
314
|
+
"name": "expectedMaxMessages",
|
|
315
|
+
"type": "uint256"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"internalType": "uint256",
|
|
319
|
+
"name": "actualMessages",
|
|
320
|
+
"type": "uint256"
|
|
321
|
+
}
|
|
322
|
+
],
|
|
323
|
+
"name": "OPP_TooManyMessages",
|
|
324
|
+
"type": "error"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"inputs": [
|
|
328
|
+
{
|
|
329
|
+
"internalType": "address",
|
|
330
|
+
"name": "sender",
|
|
331
|
+
"type": "address"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"internalType": "AttestationType",
|
|
335
|
+
"name": "attestationType",
|
|
336
|
+
"type": "uint16"
|
|
337
|
+
}
|
|
338
|
+
],
|
|
339
|
+
"name": "OPP_UnauthorizedAttestationType",
|
|
340
|
+
"type": "error"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"inputs": [
|
|
344
|
+
{
|
|
345
|
+
"internalType": "AttestationType",
|
|
346
|
+
"name": "attestationType",
|
|
347
|
+
"type": "uint16"
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"name": "OPP_UnhandledAttestationType",
|
|
351
|
+
"type": "error"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"inputs": [],
|
|
355
|
+
"name": "OPP_ZeroMaxAttestations",
|
|
356
|
+
"type": "error"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"inputs": [],
|
|
360
|
+
"name": "OPP_ZeroTag",
|
|
361
|
+
"type": "error"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"inputs": [],
|
|
365
|
+
"name": "UUPSUnauthorizedCallContext",
|
|
366
|
+
"type": "error"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"inputs": [
|
|
370
|
+
{
|
|
371
|
+
"internalType": "bytes32",
|
|
372
|
+
"name": "slot",
|
|
373
|
+
"type": "bytes32"
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"name": "UUPSUnsupportedProxiableUUID",
|
|
377
|
+
"type": "error"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"inputs": [
|
|
381
|
+
{
|
|
382
|
+
"internalType": "string",
|
|
383
|
+
"name": "name",
|
|
384
|
+
"type": "string"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"internalType": "address",
|
|
388
|
+
"name": "provided",
|
|
389
|
+
"type": "address"
|
|
390
|
+
}
|
|
391
|
+
],
|
|
392
|
+
"name": "WIRE_BadContractAddress",
|
|
393
|
+
"type": "error"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"inputs": [
|
|
397
|
+
{
|
|
398
|
+
"internalType": "uint256",
|
|
399
|
+
"name": "bps",
|
|
400
|
+
"type": "uint256"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"internalType": "uint256",
|
|
404
|
+
"name": "maxBps",
|
|
405
|
+
"type": "uint256"
|
|
406
|
+
}
|
|
407
|
+
],
|
|
408
|
+
"name": "WIRE_BasisPointsTooHigh",
|
|
409
|
+
"type": "error"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"inputs": [
|
|
413
|
+
{
|
|
414
|
+
"internalType": "address",
|
|
415
|
+
"name": "to",
|
|
416
|
+
"type": "address"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"internalType": "uint256",
|
|
420
|
+
"name": "amount",
|
|
421
|
+
"type": "uint256"
|
|
422
|
+
}
|
|
423
|
+
],
|
|
424
|
+
"name": "WIRE_EthSendFailed",
|
|
425
|
+
"type": "error"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"inputs": [],
|
|
429
|
+
"name": "WIRE_GoLiveInProgress",
|
|
430
|
+
"type": "error"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"inputs": [
|
|
434
|
+
{
|
|
435
|
+
"internalType": "uint256",
|
|
436
|
+
"name": "required",
|
|
437
|
+
"type": "uint256"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"internalType": "uint256",
|
|
441
|
+
"name": "available",
|
|
442
|
+
"type": "uint256"
|
|
443
|
+
}
|
|
444
|
+
],
|
|
445
|
+
"name": "WIRE_InsufficientEthBalance",
|
|
446
|
+
"type": "error"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"inputs": [],
|
|
450
|
+
"name": "WIRE_InvalidPrice",
|
|
451
|
+
"type": "error"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"inputs": [
|
|
455
|
+
{
|
|
456
|
+
"internalType": "address",
|
|
457
|
+
"name": "from",
|
|
458
|
+
"type": "address"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"internalType": "address",
|
|
462
|
+
"name": "to",
|
|
463
|
+
"type": "address"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"internalType": "uint256",
|
|
467
|
+
"name": "amount",
|
|
468
|
+
"type": "uint256"
|
|
469
|
+
}
|
|
470
|
+
],
|
|
471
|
+
"name": "WIRE_LiqEthTransferFailed",
|
|
472
|
+
"type": "error"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"inputs": [
|
|
476
|
+
{
|
|
477
|
+
"internalType": "address",
|
|
478
|
+
"name": "actor",
|
|
479
|
+
"type": "address"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"internalType": "OperatorType",
|
|
483
|
+
"name": "operatorType",
|
|
484
|
+
"type": "uint8"
|
|
485
|
+
}
|
|
486
|
+
],
|
|
487
|
+
"name": "WIRE_NoBonds",
|
|
488
|
+
"type": "error"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"inputs": [],
|
|
492
|
+
"name": "WIRE_NoPricesRecorded",
|
|
493
|
+
"type": "error"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"inputs": [],
|
|
497
|
+
"name": "WIRE_NoYield",
|
|
498
|
+
"type": "error"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"inputs": [
|
|
502
|
+
{
|
|
503
|
+
"internalType": "uint256",
|
|
504
|
+
"name": "receiptId",
|
|
505
|
+
"type": "uint256"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"internalType": "address",
|
|
509
|
+
"name": "owner",
|
|
510
|
+
"type": "address"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"internalType": "address",
|
|
514
|
+
"name": "caller",
|
|
515
|
+
"type": "address"
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"name": "WIRE_NotReceiptOwner",
|
|
519
|
+
"type": "error"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"inputs": [
|
|
523
|
+
{
|
|
524
|
+
"internalType": "uint256",
|
|
525
|
+
"name": "price",
|
|
526
|
+
"type": "uint256"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"internalType": "uint256",
|
|
530
|
+
"name": "minPrice",
|
|
531
|
+
"type": "uint256"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"internalType": "uint256",
|
|
535
|
+
"name": "maxPrice",
|
|
536
|
+
"type": "uint256"
|
|
537
|
+
}
|
|
538
|
+
],
|
|
539
|
+
"name": "WIRE_PriceOutOfBounds",
|
|
540
|
+
"type": "error"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"inputs": [
|
|
544
|
+
{
|
|
545
|
+
"internalType": "uint256",
|
|
546
|
+
"name": "receiptId",
|
|
547
|
+
"type": "uint256"
|
|
548
|
+
}
|
|
549
|
+
],
|
|
550
|
+
"name": "WIRE_ReceiptNotWithdrawable",
|
|
551
|
+
"type": "error"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"inputs": [],
|
|
555
|
+
"name": "WIRE_RefundingInProgress",
|
|
556
|
+
"type": "error"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"inputs": [],
|
|
560
|
+
"name": "WIRE_RefundingOnly",
|
|
561
|
+
"type": "error"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"inputs": [
|
|
565
|
+
{
|
|
566
|
+
"internalType": "string",
|
|
567
|
+
"name": "reason",
|
|
568
|
+
"type": "string"
|
|
569
|
+
}
|
|
570
|
+
],
|
|
571
|
+
"name": "WIRE_UnexpectedError",
|
|
572
|
+
"type": "error"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"inputs": [],
|
|
576
|
+
"name": "WIRE_ZeroAmount",
|
|
577
|
+
"type": "error"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"anonymous": false,
|
|
581
|
+
"inputs": [
|
|
582
|
+
{
|
|
583
|
+
"indexed": true,
|
|
584
|
+
"internalType": "address",
|
|
585
|
+
"name": "actor",
|
|
586
|
+
"type": "address"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"indexed": false,
|
|
590
|
+
"internalType": "OperatorType",
|
|
591
|
+
"name": "operatorType",
|
|
592
|
+
"type": "uint8"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"indexed": false,
|
|
596
|
+
"internalType": "TokenKind",
|
|
597
|
+
"name": "tokenKind",
|
|
598
|
+
"type": "uint16"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"indexed": false,
|
|
602
|
+
"internalType": "int64",
|
|
603
|
+
"name": "amount",
|
|
604
|
+
"type": "int64"
|
|
605
|
+
}
|
|
606
|
+
],
|
|
607
|
+
"name": "ActorBonded",
|
|
608
|
+
"type": "event"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"anonymous": false,
|
|
612
|
+
"inputs": [
|
|
613
|
+
{
|
|
614
|
+
"indexed": true,
|
|
615
|
+
"internalType": "address",
|
|
616
|
+
"name": "actor",
|
|
617
|
+
"type": "address"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"indexed": false,
|
|
621
|
+
"internalType": "OperatorType",
|
|
622
|
+
"name": "operatorType",
|
|
623
|
+
"type": "uint8"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"indexed": false,
|
|
627
|
+
"internalType": "TokenKind",
|
|
628
|
+
"name": "tokenKind",
|
|
629
|
+
"type": "uint16"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"indexed": false,
|
|
633
|
+
"internalType": "int64",
|
|
634
|
+
"name": "amount",
|
|
635
|
+
"type": "int64"
|
|
636
|
+
}
|
|
637
|
+
],
|
|
638
|
+
"name": "ActorUnbonded",
|
|
639
|
+
"type": "event"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"anonymous": false,
|
|
643
|
+
"inputs": [
|
|
644
|
+
{
|
|
645
|
+
"indexed": false,
|
|
646
|
+
"internalType": "address",
|
|
647
|
+
"name": "authority",
|
|
648
|
+
"type": "address"
|
|
649
|
+
}
|
|
650
|
+
],
|
|
651
|
+
"name": "AuthorityUpdated",
|
|
652
|
+
"type": "event"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"anonymous": false,
|
|
656
|
+
"inputs": [
|
|
657
|
+
{
|
|
658
|
+
"indexed": false,
|
|
659
|
+
"internalType": "uint64",
|
|
660
|
+
"name": "version",
|
|
661
|
+
"type": "uint64"
|
|
662
|
+
}
|
|
663
|
+
],
|
|
664
|
+
"name": "Initialized",
|
|
665
|
+
"type": "event"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"anonymous": false,
|
|
669
|
+
"inputs": [
|
|
670
|
+
{
|
|
671
|
+
"indexed": true,
|
|
672
|
+
"internalType": "address",
|
|
673
|
+
"name": "implementation",
|
|
674
|
+
"type": "address"
|
|
675
|
+
}
|
|
676
|
+
],
|
|
677
|
+
"name": "Upgraded",
|
|
678
|
+
"type": "event"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"inputs": [],
|
|
682
|
+
"name": "OPERATOR_ACTION_ATTESTATION",
|
|
683
|
+
"outputs": [
|
|
684
|
+
{
|
|
685
|
+
"internalType": "AttestationType",
|
|
686
|
+
"name": "",
|
|
687
|
+
"type": "uint16"
|
|
688
|
+
}
|
|
689
|
+
],
|
|
690
|
+
"stateMutability": "view",
|
|
691
|
+
"type": "function"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"inputs": [],
|
|
695
|
+
"name": "UPGRADE_INTERFACE_VERSION",
|
|
696
|
+
"outputs": [
|
|
697
|
+
{
|
|
698
|
+
"internalType": "string",
|
|
699
|
+
"name": "",
|
|
700
|
+
"type": "string"
|
|
701
|
+
}
|
|
702
|
+
],
|
|
703
|
+
"stateMutability": "view",
|
|
704
|
+
"type": "function"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"inputs": [
|
|
708
|
+
{
|
|
709
|
+
"internalType": "address",
|
|
710
|
+
"name": "owner",
|
|
711
|
+
"type": "address"
|
|
712
|
+
}
|
|
713
|
+
],
|
|
714
|
+
"name": "__OPPEndpointManaged_init",
|
|
715
|
+
"outputs": [],
|
|
716
|
+
"stateMutability": "nonpayable",
|
|
717
|
+
"type": "function"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"inputs": [],
|
|
721
|
+
"name": "authority",
|
|
722
|
+
"outputs": [
|
|
723
|
+
{
|
|
724
|
+
"internalType": "address",
|
|
725
|
+
"name": "",
|
|
726
|
+
"type": "address"
|
|
727
|
+
}
|
|
728
|
+
],
|
|
729
|
+
"stateMutability": "view",
|
|
730
|
+
"type": "function"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"inputs": [
|
|
734
|
+
{
|
|
735
|
+
"internalType": "address",
|
|
736
|
+
"name": "actor",
|
|
737
|
+
"type": "address"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"internalType": "OperatorType",
|
|
741
|
+
"name": "operatorType",
|
|
742
|
+
"type": "uint8"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"components": [
|
|
746
|
+
{
|
|
747
|
+
"internalType": "TokenKind",
|
|
748
|
+
"name": "kind",
|
|
749
|
+
"type": "uint16"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"internalType": "int64",
|
|
753
|
+
"name": "amount",
|
|
754
|
+
"type": "int64"
|
|
755
|
+
}
|
|
756
|
+
],
|
|
757
|
+
"internalType": "struct TokenAmount",
|
|
758
|
+
"name": "amount",
|
|
759
|
+
"type": "tuple"
|
|
760
|
+
}
|
|
761
|
+
],
|
|
762
|
+
"name": "bond",
|
|
763
|
+
"outputs": [],
|
|
764
|
+
"stateMutability": "nonpayable",
|
|
765
|
+
"type": "function"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"inputs": [
|
|
769
|
+
{
|
|
770
|
+
"internalType": "address",
|
|
771
|
+
"name": "actor",
|
|
772
|
+
"type": "address"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"internalType": "OperatorType",
|
|
776
|
+
"name": "operatorType",
|
|
777
|
+
"type": "uint8"
|
|
778
|
+
}
|
|
779
|
+
],
|
|
780
|
+
"name": "bondCount",
|
|
781
|
+
"outputs": [
|
|
782
|
+
{
|
|
783
|
+
"internalType": "uint256",
|
|
784
|
+
"name": "",
|
|
785
|
+
"type": "uint256"
|
|
786
|
+
}
|
|
787
|
+
],
|
|
788
|
+
"stateMutability": "view",
|
|
789
|
+
"type": "function"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"inputs": [
|
|
793
|
+
{
|
|
794
|
+
"internalType": "address",
|
|
795
|
+
"name": "actor",
|
|
796
|
+
"type": "address"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"internalType": "OperatorType",
|
|
800
|
+
"name": "operatorType",
|
|
801
|
+
"type": "uint8"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"internalType": "uint256",
|
|
805
|
+
"name": "bondIndex",
|
|
806
|
+
"type": "uint256"
|
|
807
|
+
}
|
|
808
|
+
],
|
|
809
|
+
"name": "getBond",
|
|
810
|
+
"outputs": [
|
|
811
|
+
{
|
|
812
|
+
"components": [
|
|
813
|
+
{
|
|
814
|
+
"internalType": "ActionType",
|
|
815
|
+
"name": "actionType",
|
|
816
|
+
"type": "uint8"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"components": [
|
|
820
|
+
{
|
|
821
|
+
"internalType": "ChainKind",
|
|
822
|
+
"name": "kind",
|
|
823
|
+
"type": "uint8"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"internalType": "bytes",
|
|
827
|
+
"name": "address_",
|
|
828
|
+
"type": "bytes"
|
|
829
|
+
}
|
|
830
|
+
],
|
|
831
|
+
"internalType": "struct ChainAddress",
|
|
832
|
+
"name": "actor",
|
|
833
|
+
"type": "tuple"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"components": [
|
|
837
|
+
{
|
|
838
|
+
"internalType": "string",
|
|
839
|
+
"name": "name",
|
|
840
|
+
"type": "string"
|
|
841
|
+
}
|
|
842
|
+
],
|
|
843
|
+
"internalType": "struct WireAccount",
|
|
844
|
+
"name": "wireAccount",
|
|
845
|
+
"type": "tuple"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"internalType": "OperatorType",
|
|
849
|
+
"name": "type_",
|
|
850
|
+
"type": "uint8"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"internalType": "OperatorStatus",
|
|
854
|
+
"name": "status",
|
|
855
|
+
"type": "uint8"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"components": [
|
|
859
|
+
{
|
|
860
|
+
"internalType": "TokenKind",
|
|
861
|
+
"name": "kind",
|
|
862
|
+
"type": "uint16"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"internalType": "int64",
|
|
866
|
+
"name": "amount",
|
|
867
|
+
"type": "int64"
|
|
868
|
+
}
|
|
869
|
+
],
|
|
870
|
+
"internalType": "struct TokenAmount",
|
|
871
|
+
"name": "amount",
|
|
872
|
+
"type": "tuple"
|
|
873
|
+
}
|
|
874
|
+
],
|
|
875
|
+
"internalType": "struct OperatorAction",
|
|
876
|
+
"name": "",
|
|
877
|
+
"type": "tuple"
|
|
878
|
+
}
|
|
879
|
+
],
|
|
880
|
+
"stateMutability": "view",
|
|
881
|
+
"type": "function"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"inputs": [
|
|
885
|
+
{
|
|
886
|
+
"internalType": "address",
|
|
887
|
+
"name": "actor",
|
|
888
|
+
"type": "address"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"internalType": "OperatorType",
|
|
892
|
+
"name": "operatorType",
|
|
893
|
+
"type": "uint8"
|
|
894
|
+
}
|
|
895
|
+
],
|
|
896
|
+
"name": "getBonds",
|
|
897
|
+
"outputs": [
|
|
898
|
+
{
|
|
899
|
+
"components": [
|
|
900
|
+
{
|
|
901
|
+
"internalType": "ActionType",
|
|
902
|
+
"name": "actionType",
|
|
903
|
+
"type": "uint8"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"components": [
|
|
907
|
+
{
|
|
908
|
+
"internalType": "ChainKind",
|
|
909
|
+
"name": "kind",
|
|
910
|
+
"type": "uint8"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"internalType": "bytes",
|
|
914
|
+
"name": "address_",
|
|
915
|
+
"type": "bytes"
|
|
916
|
+
}
|
|
917
|
+
],
|
|
918
|
+
"internalType": "struct ChainAddress",
|
|
919
|
+
"name": "actor",
|
|
920
|
+
"type": "tuple"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"components": [
|
|
924
|
+
{
|
|
925
|
+
"internalType": "string",
|
|
926
|
+
"name": "name",
|
|
927
|
+
"type": "string"
|
|
928
|
+
}
|
|
929
|
+
],
|
|
930
|
+
"internalType": "struct WireAccount",
|
|
931
|
+
"name": "wireAccount",
|
|
932
|
+
"type": "tuple"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"internalType": "OperatorType",
|
|
936
|
+
"name": "type_",
|
|
937
|
+
"type": "uint8"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"internalType": "OperatorStatus",
|
|
941
|
+
"name": "status",
|
|
942
|
+
"type": "uint8"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"components": [
|
|
946
|
+
{
|
|
947
|
+
"internalType": "TokenKind",
|
|
948
|
+
"name": "kind",
|
|
949
|
+
"type": "uint16"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"internalType": "int64",
|
|
953
|
+
"name": "amount",
|
|
954
|
+
"type": "int64"
|
|
955
|
+
}
|
|
956
|
+
],
|
|
957
|
+
"internalType": "struct TokenAmount",
|
|
958
|
+
"name": "amount",
|
|
959
|
+
"type": "tuple"
|
|
960
|
+
}
|
|
961
|
+
],
|
|
962
|
+
"internalType": "struct OperatorAction[]",
|
|
963
|
+
"name": "",
|
|
964
|
+
"type": "tuple[]"
|
|
965
|
+
}
|
|
966
|
+
],
|
|
967
|
+
"stateMutability": "view",
|
|
968
|
+
"type": "function"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"inputs": [],
|
|
972
|
+
"name": "getSummaryAttestations",
|
|
973
|
+
"outputs": [
|
|
974
|
+
{
|
|
975
|
+
"components": [
|
|
976
|
+
{
|
|
977
|
+
"internalType": "AttestationType",
|
|
978
|
+
"name": "type_",
|
|
979
|
+
"type": "uint16"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"internalType": "uint32",
|
|
983
|
+
"name": "dataSize",
|
|
984
|
+
"type": "uint32"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"internalType": "bytes",
|
|
988
|
+
"name": "data",
|
|
989
|
+
"type": "bytes"
|
|
990
|
+
}
|
|
991
|
+
],
|
|
992
|
+
"internalType": "struct AttestationEntry[]",
|
|
993
|
+
"name": "",
|
|
994
|
+
"type": "tuple[]"
|
|
995
|
+
}
|
|
996
|
+
],
|
|
997
|
+
"stateMutability": "nonpayable",
|
|
998
|
+
"type": "function"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"inputs": [
|
|
1002
|
+
{
|
|
1003
|
+
"internalType": "address",
|
|
1004
|
+
"name": "_authority",
|
|
1005
|
+
"type": "address"
|
|
1006
|
+
}
|
|
1007
|
+
],
|
|
1008
|
+
"name": "initialize",
|
|
1009
|
+
"outputs": [],
|
|
1010
|
+
"stateMutability": "nonpayable",
|
|
1011
|
+
"type": "function"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"inputs": [],
|
|
1015
|
+
"name": "isConsumingScheduledOp",
|
|
1016
|
+
"outputs": [
|
|
1017
|
+
{
|
|
1018
|
+
"internalType": "bytes4",
|
|
1019
|
+
"name": "",
|
|
1020
|
+
"type": "bytes4"
|
|
1021
|
+
}
|
|
1022
|
+
],
|
|
1023
|
+
"stateMutability": "view",
|
|
1024
|
+
"type": "function"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"inputs": [],
|
|
1028
|
+
"name": "oppAddress",
|
|
1029
|
+
"outputs": [
|
|
1030
|
+
{
|
|
1031
|
+
"internalType": "address",
|
|
1032
|
+
"name": "",
|
|
1033
|
+
"type": "address"
|
|
1034
|
+
}
|
|
1035
|
+
],
|
|
1036
|
+
"stateMutability": "view",
|
|
1037
|
+
"type": "function"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"inputs": [],
|
|
1041
|
+
"name": "oppInboundAddress",
|
|
1042
|
+
"outputs": [
|
|
1043
|
+
{
|
|
1044
|
+
"internalType": "address",
|
|
1045
|
+
"name": "",
|
|
1046
|
+
"type": "address"
|
|
1047
|
+
}
|
|
1048
|
+
],
|
|
1049
|
+
"stateMutability": "view",
|
|
1050
|
+
"type": "function"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"inputs": [],
|
|
1054
|
+
"name": "proxiableUUID",
|
|
1055
|
+
"outputs": [
|
|
1056
|
+
{
|
|
1057
|
+
"internalType": "bytes32",
|
|
1058
|
+
"name": "",
|
|
1059
|
+
"type": "bytes32"
|
|
1060
|
+
}
|
|
1061
|
+
],
|
|
1062
|
+
"stateMutability": "view",
|
|
1063
|
+
"type": "function"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"inputs": [
|
|
1067
|
+
{
|
|
1068
|
+
"internalType": "address",
|
|
1069
|
+
"name": "newAuthority",
|
|
1070
|
+
"type": "address"
|
|
1071
|
+
}
|
|
1072
|
+
],
|
|
1073
|
+
"name": "setAuthority",
|
|
1074
|
+
"outputs": [],
|
|
1075
|
+
"stateMutability": "nonpayable",
|
|
1076
|
+
"type": "function"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"inputs": [
|
|
1080
|
+
{
|
|
1081
|
+
"internalType": "address",
|
|
1082
|
+
"name": "_oppAddress",
|
|
1083
|
+
"type": "address"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"internalType": "address",
|
|
1087
|
+
"name": "_oppInboundAddress",
|
|
1088
|
+
"type": "address"
|
|
1089
|
+
}
|
|
1090
|
+
],
|
|
1091
|
+
"name": "setOPPAddresses",
|
|
1092
|
+
"outputs": [],
|
|
1093
|
+
"stateMutability": "nonpayable",
|
|
1094
|
+
"type": "function"
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"inputs": [
|
|
1098
|
+
{
|
|
1099
|
+
"internalType": "address",
|
|
1100
|
+
"name": "actor",
|
|
1101
|
+
"type": "address"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"internalType": "OperatorType",
|
|
1105
|
+
"name": "operatorType",
|
|
1106
|
+
"type": "uint8"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"components": [
|
|
1110
|
+
{
|
|
1111
|
+
"internalType": "TokenKind",
|
|
1112
|
+
"name": "kind",
|
|
1113
|
+
"type": "uint16"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"internalType": "int64",
|
|
1117
|
+
"name": "amount",
|
|
1118
|
+
"type": "int64"
|
|
1119
|
+
}
|
|
1120
|
+
],
|
|
1121
|
+
"internalType": "struct TokenAmount",
|
|
1122
|
+
"name": "amount",
|
|
1123
|
+
"type": "tuple"
|
|
1124
|
+
}
|
|
1125
|
+
],
|
|
1126
|
+
"name": "unbond",
|
|
1127
|
+
"outputs": [],
|
|
1128
|
+
"stateMutability": "nonpayable",
|
|
1129
|
+
"type": "function"
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"inputs": [
|
|
1133
|
+
{
|
|
1134
|
+
"internalType": "address",
|
|
1135
|
+
"name": "newImplementation",
|
|
1136
|
+
"type": "address"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"internalType": "bytes",
|
|
1140
|
+
"name": "data",
|
|
1141
|
+
"type": "bytes"
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"name": "upgradeToAndCall",
|
|
1145
|
+
"outputs": [],
|
|
1146
|
+
"stateMutability": "payable",
|
|
1147
|
+
"type": "function"
|
|
1148
|
+
}
|
|
1149
|
+
],
|
|
1150
|
+
"bytecode": "0x60a08060405234602957306080526126bb908161002f823960805181818161039c0152611eaa0152f35b600080fdfe6080604052600436101561001257600080fd5b60003560e01c80634f1ef2861461013757806352d1902d1461013257806354c532251461012d578063712c2782146101285780637a9e5e4b1461012357806385b38fee1461011e5780638fb360371461011957806395bfa89714610114578063ad3cb1cc1461010f578063bf7e214f1461010a578063c360b5e914610105578063c4d66de814610100578063ca34df47146100fb578063cde78421146100f6578063d1280690146100f1578063d425139e146100ec578063df3bb129146100e75763f3997fd5146100e257600080fd5b610e17565b610d8e565b610c9d565b610b5e565b610b05565b610acf565b610a08565b6108dc565b6108a6565b610860565b6107f7565b6107a4565b6106f5565b610572565b6104e1565b61043c565b610389565b61023b565b600435906001600160a01b038216820361015257565b600080fd5b634e487b7160e01b600052604160045260246000fd5b60c081019081106001600160401b0382111761018857604052565b610157565b604081019081106001600160401b0382111761018857604052565b602081019081106001600160401b0382111761018857604052565b6001600160401b03811161018857604052565b90601f801991011681019081106001600160401b0382111761018857604052565b604051906102048261018d565b565b60405190610204826101a8565b604051906102048261016d565b6001600160401b03811161018857601f01601f191660200190565b60403660031901126101525761024f61013c565b602435906001600160401b038211610152573660238301121561015257816004013561027a81610220565b9261028860405194856101d6565b8184523660248383010111610152578160009260246020930183870137840101526102b1611ea0565b6102bb36336117e7565b6102c3611ea0565b6040516352d1902d60e01b8152916020836004816001600160a01b0386165afa6000938161034d575b5061031257604051634c9c8ce360e01b81526001600160a01b0383166004820152602490fd5b90600080516020612606833981519152830361033457610332925061209e565b005b604051632a87526960e21b815260048101849052602490fd5b61037091945060203d602011610377575b61036881836101d6565b810190611efa565b92386102ec565b503d61035e565b600091031261015257565b34610152576000366003190112610152577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031630036103e25760206040516000805160206126068339815191528152f35b60405163703e46dd60e11b8152600490fd5b60005b8381106104075750506000910152565b81810151838201526020016103f7565b90602091610430815180928185528580860191016103f4565b601f01601f1916010190565b34610152576000366003190112610152576040805161045a816101a8565b60008152815190602080830181845282518091528484019180868360051b8701019401926000965b83881061048f5786860387f35b909192939483806104d0600193603f198b820301875289518660609161ffff815116845263ffffffff86820151168685015201519181888201520190610417565b970193019701969093929193610482565b34610152576040366003190112610152576104fa61013c565b6001600160a01b039060243582811691908290036101525761051c36336117e7565b6bffffffffffffffffffffffff60a01b926000805160206126468339815191529116838254161790557f706675a12eeff0661731f01589a945c9c5e9663916191034a16d20b6fcc93dd991825416179055600080f35b346101525760203660031901126101525761058b61013c565b6000805160206125e6833981519152546001600160a01b039190821633036105d657803b156105bd576103329061190d565b6040516361798f2f60e11b815291166004820152602490fd5b60405162d1953b60e31b8152336004820152602490fd5b6024359060ff8216820361015257565b9061068e9060ff835116815260a08061065861063d60208088015160e08288015260ff81511660e088015201516040610100870152610120860190610417565b60206040880151868303604088015251918181520190610417565b60608087015160ff16908501529460808181015160ff169085015201519101906020809161ffff8151168452015160070b910152565b90565b6020808201906020835283518092526040830192602060408460051b8301019501936000915b8483106106c75750505050505090565b90919293949584806106e5600193603f198682030187528a516105fd565b98019301930191949392906106b7565b346101525760403660031901126101525761070e61013c565b6107166105ed565b60009160018060a01b0316825261074360209183602052604084209060ff16600052602052604060002090565b80549061074f82610e34565b9261075d60405194856101d6565b828452602084019185526020852094915b83831061078757604051806107838782610691565b0390f35b60068260019261079689610f69565b81520196019201919461076e565b34610152576000366003190112610152576000805160206125e68339815191525460a01c60ff16156107ee576020638fb3603760e01b5b6040516001600160e01b03199091168152f35b602060006107db565b3461015257604036600319011261015257602061084461081561013c565b61081d6105ed565b9060018060a01b03166000526000835260406000209060ff16600052602052604060002090565b54604051908152f35b6040519061085a826101a8565b60008252565b34610152576000366003190112610152576107836040516108808161018d565b60058152640352e302e360dc1b6020820152604051918291602083526020830190610417565b34610152576000366003190112610152576000805160206125e6833981519152546040516001600160a01b039091168152602090f35b34610152576020366003190112610152576108f561013c565b60008051602061266683398151915254906001600160401b0360ff8360401c1615921680159081610a00575b60011490816109f6575b1590816109ed575b506109db57600080516020612666833981519152805467ffffffffffffffff1916600117905561096790826109b657610ff8565b61096d57005b600080516020612666833981519152805460ff60401b19169055604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a1005b600080516020612666833981519152805460ff60401b1916600160401b179055610ff8565b60405163f92ee8a960e01b8152600490fd5b90501538610933565b303b15915061092b565b839150610921565b3461015257602036600319011261015257610a2161013c565b60008051602061266683398151915254906001600160401b0360ff8360401c1615921680159081610ac7575b6001149081610abd575b159081610ab4575b506109db57600080516020612666833981519152805467ffffffffffffffff1916600117905561096790821561102957600080516020612666833981519152805460ff60401b1916600160401b179055611029565b90501538610a5f565b303b159150610a57565b839150610a4d565b3461015257600036600319011261015257600080516020612646833981519152546040516001600160a01b039091168152602090f35b34610152576000366003190112610152577f706675a12eeff0661731f01589a945c9c5e9663916191034a16d20b6fcc93dd9546040516001600160a01b039091168152602090f35b90602061068e9281815201906105fd565b3461015257606036600319011261015257610783610b7a61013c565b610c2d610c27610b886105ed565b92610c226040948551610b9a8161016d565b60a06000918281528851610bad8161018d565b8381526060602082015260208201528851610bc7816101a8565b6060815289820152826060820152826080820152885192610be78461018d565b80845260208401520152610c106044359360018060a01b03166000526000602052604060002090565b9060ff16600052602052604060002090565b611078565b50610f69565b905191829182610b4d565b6080600319820112610152576004356001600160a01b038116810361015257916040610c626105ed565b92604319011261015257604051610c788161018d565b60443561ffff811681036101525781526064358060070b810361015257602082015290565b3461015257610cab36610c38565b60008051602061264683398151915254919290916001600160a01b0316908115610d7c575a90823b15610152576040516327e935a160e01b815260048101839052600095909490868660248183895af1928315610d60578796610d1394610d69575b50611506565b813b15610d655760405163f5786b4b60e01b8152600481019190915291908290602490829084905af18015610d6057610d4a575080f35b80610d57610d5d926101c3565b8061037e565b80f35b611099565b5050fd5b80610d57610d76926101c3565b38610d0d565b604051632ea0fec960e11b8152600490fd5b3461015257610d9c36610c38565b60008051602061264683398151915254919290916001600160a01b0316908115610d7c575a90823b15610152576040516327e935a160e01b815260048101839052600095909490868660248183895af1928315610d60578796610d1394610e04575b506116a7565b80610d57610e11926101c3565b38610dfe565b346101525760003660031901126101525760206040516107d18152f35b6001600160401b0381116101885760051b60200190565b90600182811c92168015610e7b575b6020831014610e6557565b634e487b7160e01b600052602260045260246000fd5b91607f1691610e5a565b805460009392610e9482610e4b565b91828252602093600191600181169081600014610efc5750600114610ebb575b5050505050565b90939495506000929192528360002092846000945b838610610ee857505050500101903880808080610eb4565b805485870183015294019385908201610ed0565b60ff19168685015250505090151560051b010191503880808080610eb4565b90610f3c604051610f2b816101a8565b610f43819460405193848092610e85565b03836101d6565b52565b90604051610f538161018d565b915461ffff8116835260101c60070b6020830152565b90604051610f768161016d565b60a0610ff36005839560ff8154168552604051610f928161018d565b60ff6001830154168152604051610fb781610fb08160028701610e85565b03826101d6565b60208201526020860152610fcd60038201610f1b565b6040860152600481015460ff808216606088015260089190911c16608086015201610f46565b910152565b61101190611004611f98565b61100c611f98565b61190d565b611019611f98565b611021611f98565b610204611f98565b61103590611004611f98565b61103d611f98565b611045611f98565b600160801b60008051602061262683398151915255610204611f98565b634e487b7160e01b600052603260045260246000fd5b8054821015611094576000526006602060002091020190600090565b611062565b6040513d6000823e3d90fd5b634e487b7160e01b600052600060045260246000fd5b8181106110c6575050565b600081556001016110bb565b9190601f81116110e157505050565b610204926000526020600020906020601f840160051c8301931061110d575b601f0160051c01906110bb565b9091508190611100565b9190519182516001600160401b0381116101885761113f816111398454610e4b565b846110d2565b602080601f831160011461118257508190611173939495600092611177575b50508160011b916000199060031b1c19161790565b9055565b01519050388061115e565b90601f1983169561119885600052602060002090565b926000905b8882106111d5575050836001959697106111bc575b505050811b019055565b015160001960f88460031b161c191690553880806111b2565b8060018596829496860151815501950193019061119d565b908154600160401b8110156101885761120e90600193600182018155611078565b9290926113c7578151835460ff191660ff9190911617835560209060208301519161124a60ff845116600187019060ff1660ff19825416179055565b6020600286019301518051926001600160401b03841161018857611278846112728754610e4b565b876110d2565b602092601f851160011461134b575050926112b58360a0946102049897946005976000926111775750508160011b916000199060031b1c19161790565b90555b6112c9604082015160038601611117565b61130c600485016112f16112e1606085015160ff1690565b825460ff191660ff909116178255565b6080830151815461ff00191660089190911b61ff0016179055565b015191019061ffff81511660208354928261ffff198516178555015160101b69ffffffffffffffff0000169169ffffffffffffffffffff191617179055565b929190601f1985169061136387600052602060002090565b946000915b8383106113b05750505093610204979693600596936001938360a09810611397575b505050811b0190556112b8565b015160001960f88460031b161c1916905538808061138a565b848601518755958601959481019491810191611368565b6110a5565b634e487b7160e01b600052601160045260246000fd5b6113ec8154610e4b565b90816113f6575050565b81601f60009311600114611408575055565b908083918252611427601f60208420940160051c8401600185016110bb565b5555565b805460008083558161143c57505050565b6006928260060292600684040361150157815260208120918201915b8281106114655750505050565b8082859255826001818184015560028301906114818254610e4b565b90816114aa575b50505050611498600382016113e2565b82600482015582600582015501611458565b601f8083116001146114c457505050555b82388080611488565b6114fc9450906114ec92916114de85600052602060002090565b920160051c820191016110bb565b6000908082528160208120915555565b6114bb565b6113cc565b91909161152983610c108360018060a01b03166000526000602052604060002090565b80541561167d57604051606083901b6bffffffffffffffffffffffff191660208201527f2d65b7822062e8b3e793b28928f3641a2e5ebd1d1754db7850f4e3f6845075979392916115f4916115ef9061158f81603481015b03601f1981018352826101d6565b6115976101f7565b600281529060208201526115a9610206565b6115b161084d565b81526115bb610213565b60028152916020830152604082015260ff8816606082015260f060808201528560a08201526115ea81846111ed565b61197e565b611e07565b15611650575b61164b611617602061160e855161ffff1690565b94015160070b90565b6040805160ff909716875261ffff909416602087015260070b928501929092526001600160a01b0316929081906060820190565b0390a2565b61167861167385610c108460018060a01b03166000526000602052604060002090565b61142b565b6115fa565b604051630fad384d60e21b81526001600160a01b038316600482015260ff85166024820152604490fd5b917fb6b5d007f2598889fd1b25d064466fce6947b56cd43caafbb8a69fcd94606c6591926115fa6040516116f98161158185602083016014916bffffffffffffffffffffffff199060601b1681520190565b6117016101f7565b60028152906020820152611713610206565b61171b61084d565b8152611725610213565b60018152916020830152604082015260ff86166060820152600360808201528360a08201526115ea8161176e88610c108760018060a01b03166000526000602052604060002090565b6111ed565b60041161015257600090600490565b6001600160e01b0319903581811693926004811061179f57505050565b60040360031b82901b16169150565b6001600160a01b0390911681526040602082018190528101829052606091806000848401376000828201840152601f01601f1916010190565b6000805160206125e68339815191528054611820906001600160a01b031661181761181186611773565b90611782565b90843091611f09565b901561182d575b50505050565b63ffffffff16156118ed576000805160206125e6833981519152805460ff60a01b1916600160a01b17905561187b9061186f908190546001600160a01b031690565b6001600160a01b031690565b91823b15610152576118a79260009283604051809681958294634a63ebf760e11b8452600484016117ae565b03925af18015610d60576118da575b506000805160206125e6833981519152805460ff60a01b1916905538808080611827565b80610d576118e7926101c3565b386118b6565b60405162d1953b60e31b81526001600160a01b0383166004820152602490fd5b6000805160206125e683398151915280546001600160a01b0319166001600160a01b0390921691821790556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602090a1565b90816020910312610152575180151581036101525790565b600080516020612646833981519152546000805160206126268339815191528054909290916001600160a01b03168015610d7c576020600491604051928380926372277dad60e11b82525afa908115610d6057600091611a46575b5015611a34576119fd6001611a0293811b1760008051602061262683398151915255565b611a75565b54600180821614611a225760011c60008051602061262683398151915255565b604051636f3e1d3560e01b8152600490fd5b60405163738c481160e01b8152600490fd5b611a68915060203d602011611a6e575b611a6081836101d6565b810190611966565b386119d9565b503d611a56565b611a7d61084d565b90611a86612186565b91604080518094602093848301611a9c91611fc7565b611aa591611fc7565b0392601f19938481018652611aba90866101d6565b8051611ac89060ff16612242565b948251958691858301611ada91611fc7565b611ae391611fc7565b038481018652611af390866101d6565b611afb61219d565b948251958691858301611b0d91611fc7565b611b1691611fc7565b038481018652611b2690866101d6565b82810151611b33906122c3565b948551611b46906001600160401b031690565b611b4f90612242565b908351918291868301611b6191611fc7565b611b6a91611fc7565b038581018252611b7a90826101d6565b8251958691858301611b8b91611fc7565b611b9491611fc7565b038481018652611ba490866101d6565b611bac6121b0565b948251958691858301611bbe91611fc7565b611bc791611fc7565b038481018652611bd790866101d6565b81810151611be4906123a3565b948551611bf7906001600160401b031690565b611c0090612242565b908351918291868301611c1291611fc7565b611c1b91611fc7565b038581018252611c2b90826101d6565b8251958691858301611c3c91611fc7565b611c4591611fc7565b038481018652611c5590866101d6565b611c5d6121c3565b948251958691858301611c6f91611fc7565b611c7891611fc7565b038481018652611c8890866101d6565b6060810151611c999060ff16612242565b948251958691858301611cab91611fc7565b611cb491611fc7565b038481018652611cc490866101d6565b611ccc6121d6565b948251958691858301611cde91611fc7565b611ce791611fc7565b038481018652611cf790866101d6565b6080810151611d089060ff16612242565b948251958691858301611d1a91611fc7565b611d2391611fc7565b038481018652611d3390866101d6565b611d3b6121e9565b948251958691858301611d4d91611fc7565b611d5691611fc7565b038481018652611d6690866101d6565b60a00151611d739061244d565b908151611d86906001600160401b031690565b611d8f90612242565b948151958691858301611da191611fc7565b611daa91611fc7565b038481018652611dba90866101d6565b519384928301611dc991611fc7565b611dd291611fc7565b039081018252611de290826101d6565b61020490611ff7565b9190916000838201938412911290801582169115161761150157565b90600080805b8454831015611e9a57600160ff611e248588611078565b50541603611e6557611e5c600191611e56611e506005611e44888b611078565b50015460101c60070b90565b60070b90565b90611deb565b925b0191611e0d565b6005611e718487611078565b50015460101c60070b908282820392128183128116918313901516176115015760019092611e5e565b93505050565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116308114918215611ede575b50506103e257565b6000805160206126068339815191525416141590503880611ed6565b90816020910312610152575190565b60405163b700961360e01b602082019081526001600160a01b0393841660248301529290931660448401526001600160e01b03199093166064808401919091528252600093849390928492909160a08301916001600160401b0383118484101761018857604093859385528380528360205251915afa611f865750565b9150915051906020518060201c150290565b60ff6000805160206126668339815191525460401c1615611fb557565b604051631afcd79f60e31b8152600490fd5b90611fda602092828151948592016103f4565b0190565b90604061068e926107d181528160208201520190610417565b60008051602061262683398151915280546001811615612086576001191690556000805160206126468339815191525461203b9061186f906001600160a01b031681565b803b1561015257604051631c18295560e31b81529160009183918290849082906120689060048301611fde565b03925af18015610d60576120795750565b80610d57610204926101c3565b60249060405190633b48047760e01b82526004820152fd5b90813b156121245760008051602061260683398151915280546001600160a01b0319166001600160a01b0384169081179091557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2805115612109576121069161250c565b50565b50503461211257565b60405163b398979f60e01b8152600490fd5b604051634c9c8ce360e01b81526001600160a01b0383166004820152602490fd5b604051906121528261018d565b6001825260203681840137565b6040519061216c8261018d565b600a825260203681840137565b8051156110945760200190565b61218e612145565b600861219982612179565b5390565b6121a5612145565b601261219982612179565b6121b8612145565b601a61219982612179565b6121cb612145565b602861219982612179565b6121de612145565b605061219982612179565b6121f161215f565b60a260005b607f8083111561221b5790608060019284161760208286010153019060071c906121f6565b50607f600192166020828501015301815290565b612237612145565b601061219982612179565b9060809160806001600160401b0382161061229e5761225f61215f565b60005b607f8084111561228657908560019285161760208285010153019160071c91612262565b5090929350607f600192166020828501015301815290565b9091506122a9612145565b9060f81b6001600160f81b03191660001a61219982612179565b61068e61230361230361239761238760206123039661238061230361235a6122e961084d565b6123096122f4612186565b6040519b8c9389850190611fc7565b90611fc7565b039861231d601f199a8b81018352826101d6565b61234e61233f61233a612334612334895160ff1690565b60ff1690565b612242565b60405194859389850190611fc7565b038981018352826101d6565b61237461236561219d565b60405198899387850190611fc7565b038781018752866101d6565b0151612552565b6040519586936020850190611fc7565b039081018352826101d6565b61068e61241461242d926040516123b9816101a8565b6000815261241a6123c8612145565b92600a6123d485612179565b536040519485946020968791826123f481840198898151938492016103f4565b8201612408825180938680850191016103f4565b010380875201856101d6565b51612552565b90604051958693518092868601906103f4565b8201612441825180938680850191016103f4565b010380845201826101d6565b61068e61230361230361239761238761233a6125006020612303986124f86123036124d261247961084d565b612493612484612186565b6040519d8e9389850190611fc7565b039a6124a7601f199c8d81018352826101d6565b6124c661233f61233a6124bf6124bf895161ffff1690565b61ffff1690565b038b81018352826101d6565b6124ec6124dd61222f565b6040519a8b9387850190611fc7565b038981018952886101d6565b015160070b90565b6001600160401b031690565b60008061068e93602081519101845af43d1561254a573d9161252d83610220565b9261253b60405194856101d6565b83523d6000602085013e612582565b606091612582565b61068e602061256a6001600160401b03845116612242565b604051938161242d86935180928680870191016103f4565b906125a9575080511561259757602081519101fd5b60405163d6bda27560e01b8152600490fd5b815115806125dc575b6125ba575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b156125b256fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc7a7ef2e786f2e2e26f0a8d1c18e1ce8d0e9a183cd1289abd7052371335196d43706675a12eeff0661731f01589a945c9c5e9663916191034a16d20b6fcc93dd8f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220967cf5cbd364f92cef05eaaa02858325f4e8970208f248a9783e2bbfa288ffce64736f6c63430008190033",
|
|
1151
|
+
"deployedBytecode": "0x6080604052600436101561001257600080fd5b60003560e01c80634f1ef2861461013757806352d1902d1461013257806354c532251461012d578063712c2782146101285780637a9e5e4b1461012357806385b38fee1461011e5780638fb360371461011957806395bfa89714610114578063ad3cb1cc1461010f578063bf7e214f1461010a578063c360b5e914610105578063c4d66de814610100578063ca34df47146100fb578063cde78421146100f6578063d1280690146100f1578063d425139e146100ec578063df3bb129146100e75763f3997fd5146100e257600080fd5b610e17565b610d8e565b610c9d565b610b5e565b610b05565b610acf565b610a08565b6108dc565b6108a6565b610860565b6107f7565b6107a4565b6106f5565b610572565b6104e1565b61043c565b610389565b61023b565b600435906001600160a01b038216820361015257565b600080fd5b634e487b7160e01b600052604160045260246000fd5b60c081019081106001600160401b0382111761018857604052565b610157565b604081019081106001600160401b0382111761018857604052565b602081019081106001600160401b0382111761018857604052565b6001600160401b03811161018857604052565b90601f801991011681019081106001600160401b0382111761018857604052565b604051906102048261018d565b565b60405190610204826101a8565b604051906102048261016d565b6001600160401b03811161018857601f01601f191660200190565b60403660031901126101525761024f61013c565b602435906001600160401b038211610152573660238301121561015257816004013561027a81610220565b9261028860405194856101d6565b8184523660248383010111610152578160009260246020930183870137840101526102b1611ea0565b6102bb36336117e7565b6102c3611ea0565b6040516352d1902d60e01b8152916020836004816001600160a01b0386165afa6000938161034d575b5061031257604051634c9c8ce360e01b81526001600160a01b0383166004820152602490fd5b90600080516020612606833981519152830361033457610332925061209e565b005b604051632a87526960e21b815260048101849052602490fd5b61037091945060203d602011610377575b61036881836101d6565b810190611efa565b92386102ec565b503d61035e565b600091031261015257565b34610152576000366003190112610152577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031630036103e25760206040516000805160206126068339815191528152f35b60405163703e46dd60e11b8152600490fd5b60005b8381106104075750506000910152565b81810151838201526020016103f7565b90602091610430815180928185528580860191016103f4565b601f01601f1916010190565b34610152576000366003190112610152576040805161045a816101a8565b60008152815190602080830181845282518091528484019180868360051b8701019401926000965b83881061048f5786860387f35b909192939483806104d0600193603f198b820301875289518660609161ffff815116845263ffffffff86820151168685015201519181888201520190610417565b970193019701969093929193610482565b34610152576040366003190112610152576104fa61013c565b6001600160a01b039060243582811691908290036101525761051c36336117e7565b6bffffffffffffffffffffffff60a01b926000805160206126468339815191529116838254161790557f706675a12eeff0661731f01589a945c9c5e9663916191034a16d20b6fcc93dd991825416179055600080f35b346101525760203660031901126101525761058b61013c565b6000805160206125e6833981519152546001600160a01b039190821633036105d657803b156105bd576103329061190d565b6040516361798f2f60e11b815291166004820152602490fd5b60405162d1953b60e31b8152336004820152602490fd5b6024359060ff8216820361015257565b9061068e9060ff835116815260a08061065861063d60208088015160e08288015260ff81511660e088015201516040610100870152610120860190610417565b60206040880151868303604088015251918181520190610417565b60608087015160ff16908501529460808181015160ff169085015201519101906020809161ffff8151168452015160070b910152565b90565b6020808201906020835283518092526040830192602060408460051b8301019501936000915b8483106106c75750505050505090565b90919293949584806106e5600193603f198682030187528a516105fd565b98019301930191949392906106b7565b346101525760403660031901126101525761070e61013c565b6107166105ed565b60009160018060a01b0316825261074360209183602052604084209060ff16600052602052604060002090565b80549061074f82610e34565b9261075d60405194856101d6565b828452602084019185526020852094915b83831061078757604051806107838782610691565b0390f35b60068260019261079689610f69565b81520196019201919461076e565b34610152576000366003190112610152576000805160206125e68339815191525460a01c60ff16156107ee576020638fb3603760e01b5b6040516001600160e01b03199091168152f35b602060006107db565b3461015257604036600319011261015257602061084461081561013c565b61081d6105ed565b9060018060a01b03166000526000835260406000209060ff16600052602052604060002090565b54604051908152f35b6040519061085a826101a8565b60008252565b34610152576000366003190112610152576107836040516108808161018d565b60058152640352e302e360dc1b6020820152604051918291602083526020830190610417565b34610152576000366003190112610152576000805160206125e6833981519152546040516001600160a01b039091168152602090f35b34610152576020366003190112610152576108f561013c565b60008051602061266683398151915254906001600160401b0360ff8360401c1615921680159081610a00575b60011490816109f6575b1590816109ed575b506109db57600080516020612666833981519152805467ffffffffffffffff1916600117905561096790826109b657610ff8565b61096d57005b600080516020612666833981519152805460ff60401b19169055604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a1005b600080516020612666833981519152805460ff60401b1916600160401b179055610ff8565b60405163f92ee8a960e01b8152600490fd5b90501538610933565b303b15915061092b565b839150610921565b3461015257602036600319011261015257610a2161013c565b60008051602061266683398151915254906001600160401b0360ff8360401c1615921680159081610ac7575b6001149081610abd575b159081610ab4575b506109db57600080516020612666833981519152805467ffffffffffffffff1916600117905561096790821561102957600080516020612666833981519152805460ff60401b1916600160401b179055611029565b90501538610a5f565b303b159150610a57565b839150610a4d565b3461015257600036600319011261015257600080516020612646833981519152546040516001600160a01b039091168152602090f35b34610152576000366003190112610152577f706675a12eeff0661731f01589a945c9c5e9663916191034a16d20b6fcc93dd9546040516001600160a01b039091168152602090f35b90602061068e9281815201906105fd565b3461015257606036600319011261015257610783610b7a61013c565b610c2d610c27610b886105ed565b92610c226040948551610b9a8161016d565b60a06000918281528851610bad8161018d565b8381526060602082015260208201528851610bc7816101a8565b6060815289820152826060820152826080820152885192610be78461018d565b80845260208401520152610c106044359360018060a01b03166000526000602052604060002090565b9060ff16600052602052604060002090565b611078565b50610f69565b905191829182610b4d565b6080600319820112610152576004356001600160a01b038116810361015257916040610c626105ed565b92604319011261015257604051610c788161018d565b60443561ffff811681036101525781526064358060070b810361015257602082015290565b3461015257610cab36610c38565b60008051602061264683398151915254919290916001600160a01b0316908115610d7c575a90823b15610152576040516327e935a160e01b815260048101839052600095909490868660248183895af1928315610d60578796610d1394610d69575b50611506565b813b15610d655760405163f5786b4b60e01b8152600481019190915291908290602490829084905af18015610d6057610d4a575080f35b80610d57610d5d926101c3565b8061037e565b80f35b611099565b5050fd5b80610d57610d76926101c3565b38610d0d565b604051632ea0fec960e11b8152600490fd5b3461015257610d9c36610c38565b60008051602061264683398151915254919290916001600160a01b0316908115610d7c575a90823b15610152576040516327e935a160e01b815260048101839052600095909490868660248183895af1928315610d60578796610d1394610e04575b506116a7565b80610d57610e11926101c3565b38610dfe565b346101525760003660031901126101525760206040516107d18152f35b6001600160401b0381116101885760051b60200190565b90600182811c92168015610e7b575b6020831014610e6557565b634e487b7160e01b600052602260045260246000fd5b91607f1691610e5a565b805460009392610e9482610e4b565b91828252602093600191600181169081600014610efc5750600114610ebb575b5050505050565b90939495506000929192528360002092846000945b838610610ee857505050500101903880808080610eb4565b805485870183015294019385908201610ed0565b60ff19168685015250505090151560051b010191503880808080610eb4565b90610f3c604051610f2b816101a8565b610f43819460405193848092610e85565b03836101d6565b52565b90604051610f538161018d565b915461ffff8116835260101c60070b6020830152565b90604051610f768161016d565b60a0610ff36005839560ff8154168552604051610f928161018d565b60ff6001830154168152604051610fb781610fb08160028701610e85565b03826101d6565b60208201526020860152610fcd60038201610f1b565b6040860152600481015460ff808216606088015260089190911c16608086015201610f46565b910152565b61101190611004611f98565b61100c611f98565b61190d565b611019611f98565b611021611f98565b610204611f98565b61103590611004611f98565b61103d611f98565b611045611f98565b600160801b60008051602061262683398151915255610204611f98565b634e487b7160e01b600052603260045260246000fd5b8054821015611094576000526006602060002091020190600090565b611062565b6040513d6000823e3d90fd5b634e487b7160e01b600052600060045260246000fd5b8181106110c6575050565b600081556001016110bb565b9190601f81116110e157505050565b610204926000526020600020906020601f840160051c8301931061110d575b601f0160051c01906110bb565b9091508190611100565b9190519182516001600160401b0381116101885761113f816111398454610e4b565b846110d2565b602080601f831160011461118257508190611173939495600092611177575b50508160011b916000199060031b1c19161790565b9055565b01519050388061115e565b90601f1983169561119885600052602060002090565b926000905b8882106111d5575050836001959697106111bc575b505050811b019055565b015160001960f88460031b161c191690553880806111b2565b8060018596829496860151815501950193019061119d565b908154600160401b8110156101885761120e90600193600182018155611078565b9290926113c7578151835460ff191660ff9190911617835560209060208301519161124a60ff845116600187019060ff1660ff19825416179055565b6020600286019301518051926001600160401b03841161018857611278846112728754610e4b565b876110d2565b602092601f851160011461134b575050926112b58360a0946102049897946005976000926111775750508160011b916000199060031b1c19161790565b90555b6112c9604082015160038601611117565b61130c600485016112f16112e1606085015160ff1690565b825460ff191660ff909116178255565b6080830151815461ff00191660089190911b61ff0016179055565b015191019061ffff81511660208354928261ffff198516178555015160101b69ffffffffffffffff0000169169ffffffffffffffffffff191617179055565b929190601f1985169061136387600052602060002090565b946000915b8383106113b05750505093610204979693600596936001938360a09810611397575b505050811b0190556112b8565b015160001960f88460031b161c1916905538808061138a565b848601518755958601959481019491810191611368565b6110a5565b634e487b7160e01b600052601160045260246000fd5b6113ec8154610e4b565b90816113f6575050565b81601f60009311600114611408575055565b908083918252611427601f60208420940160051c8401600185016110bb565b5555565b805460008083558161143c57505050565b6006928260060292600684040361150157815260208120918201915b8281106114655750505050565b8082859255826001818184015560028301906114818254610e4b565b90816114aa575b50505050611498600382016113e2565b82600482015582600582015501611458565b601f8083116001146114c457505050555b82388080611488565b6114fc9450906114ec92916114de85600052602060002090565b920160051c820191016110bb565b6000908082528160208120915555565b6114bb565b6113cc565b91909161152983610c108360018060a01b03166000526000602052604060002090565b80541561167d57604051606083901b6bffffffffffffffffffffffff191660208201527f2d65b7822062e8b3e793b28928f3641a2e5ebd1d1754db7850f4e3f6845075979392916115f4916115ef9061158f81603481015b03601f1981018352826101d6565b6115976101f7565b600281529060208201526115a9610206565b6115b161084d565b81526115bb610213565b60028152916020830152604082015260ff8816606082015260f060808201528560a08201526115ea81846111ed565b61197e565b611e07565b15611650575b61164b611617602061160e855161ffff1690565b94015160070b90565b6040805160ff909716875261ffff909416602087015260070b928501929092526001600160a01b0316929081906060820190565b0390a2565b61167861167385610c108460018060a01b03166000526000602052604060002090565b61142b565b6115fa565b604051630fad384d60e21b81526001600160a01b038316600482015260ff85166024820152604490fd5b917fb6b5d007f2598889fd1b25d064466fce6947b56cd43caafbb8a69fcd94606c6591926115fa6040516116f98161158185602083016014916bffffffffffffffffffffffff199060601b1681520190565b6117016101f7565b60028152906020820152611713610206565b61171b61084d565b8152611725610213565b60018152916020830152604082015260ff86166060820152600360808201528360a08201526115ea8161176e88610c108760018060a01b03166000526000602052604060002090565b6111ed565b60041161015257600090600490565b6001600160e01b0319903581811693926004811061179f57505050565b60040360031b82901b16169150565b6001600160a01b0390911681526040602082018190528101829052606091806000848401376000828201840152601f01601f1916010190565b6000805160206125e68339815191528054611820906001600160a01b031661181761181186611773565b90611782565b90843091611f09565b901561182d575b50505050565b63ffffffff16156118ed576000805160206125e6833981519152805460ff60a01b1916600160a01b17905561187b9061186f908190546001600160a01b031690565b6001600160a01b031690565b91823b15610152576118a79260009283604051809681958294634a63ebf760e11b8452600484016117ae565b03925af18015610d60576118da575b506000805160206125e6833981519152805460ff60a01b1916905538808080611827565b80610d576118e7926101c3565b386118b6565b60405162d1953b60e31b81526001600160a01b0383166004820152602490fd5b6000805160206125e683398151915280546001600160a01b0319166001600160a01b0390921691821790556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602090a1565b90816020910312610152575180151581036101525790565b600080516020612646833981519152546000805160206126268339815191528054909290916001600160a01b03168015610d7c576020600491604051928380926372277dad60e11b82525afa908115610d6057600091611a46575b5015611a34576119fd6001611a0293811b1760008051602061262683398151915255565b611a75565b54600180821614611a225760011c60008051602061262683398151915255565b604051636f3e1d3560e01b8152600490fd5b60405163738c481160e01b8152600490fd5b611a68915060203d602011611a6e575b611a6081836101d6565b810190611966565b386119d9565b503d611a56565b611a7d61084d565b90611a86612186565b91604080518094602093848301611a9c91611fc7565b611aa591611fc7565b0392601f19938481018652611aba90866101d6565b8051611ac89060ff16612242565b948251958691858301611ada91611fc7565b611ae391611fc7565b038481018652611af390866101d6565b611afb61219d565b948251958691858301611b0d91611fc7565b611b1691611fc7565b038481018652611b2690866101d6565b82810151611b33906122c3565b948551611b46906001600160401b031690565b611b4f90612242565b908351918291868301611b6191611fc7565b611b6a91611fc7565b038581018252611b7a90826101d6565b8251958691858301611b8b91611fc7565b611b9491611fc7565b038481018652611ba490866101d6565b611bac6121b0565b948251958691858301611bbe91611fc7565b611bc791611fc7565b038481018652611bd790866101d6565b81810151611be4906123a3565b948551611bf7906001600160401b031690565b611c0090612242565b908351918291868301611c1291611fc7565b611c1b91611fc7565b038581018252611c2b90826101d6565b8251958691858301611c3c91611fc7565b611c4591611fc7565b038481018652611c5590866101d6565b611c5d6121c3565b948251958691858301611c6f91611fc7565b611c7891611fc7565b038481018652611c8890866101d6565b6060810151611c999060ff16612242565b948251958691858301611cab91611fc7565b611cb491611fc7565b038481018652611cc490866101d6565b611ccc6121d6565b948251958691858301611cde91611fc7565b611ce791611fc7565b038481018652611cf790866101d6565b6080810151611d089060ff16612242565b948251958691858301611d1a91611fc7565b611d2391611fc7565b038481018652611d3390866101d6565b611d3b6121e9565b948251958691858301611d4d91611fc7565b611d5691611fc7565b038481018652611d6690866101d6565b60a00151611d739061244d565b908151611d86906001600160401b031690565b611d8f90612242565b948151958691858301611da191611fc7565b611daa91611fc7565b038481018652611dba90866101d6565b519384928301611dc991611fc7565b611dd291611fc7565b039081018252611de290826101d6565b61020490611ff7565b9190916000838201938412911290801582169115161761150157565b90600080805b8454831015611e9a57600160ff611e248588611078565b50541603611e6557611e5c600191611e56611e506005611e44888b611078565b50015460101c60070b90565b60070b90565b90611deb565b925b0191611e0d565b6005611e718487611078565b50015460101c60070b908282820392128183128116918313901516176115015760019092611e5e565b93505050565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116308114918215611ede575b50506103e257565b6000805160206126068339815191525416141590503880611ed6565b90816020910312610152575190565b60405163b700961360e01b602082019081526001600160a01b0393841660248301529290931660448401526001600160e01b03199093166064808401919091528252600093849390928492909160a08301916001600160401b0383118484101761018857604093859385528380528360205251915afa611f865750565b9150915051906020518060201c150290565b60ff6000805160206126668339815191525460401c1615611fb557565b604051631afcd79f60e31b8152600490fd5b90611fda602092828151948592016103f4565b0190565b90604061068e926107d181528160208201520190610417565b60008051602061262683398151915280546001811615612086576001191690556000805160206126468339815191525461203b9061186f906001600160a01b031681565b803b1561015257604051631c18295560e31b81529160009183918290849082906120689060048301611fde565b03925af18015610d60576120795750565b80610d57610204926101c3565b60249060405190633b48047760e01b82526004820152fd5b90813b156121245760008051602061260683398151915280546001600160a01b0319166001600160a01b0384169081179091557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2805115612109576121069161250c565b50565b50503461211257565b60405163b398979f60e01b8152600490fd5b604051634c9c8ce360e01b81526001600160a01b0383166004820152602490fd5b604051906121528261018d565b6001825260203681840137565b6040519061216c8261018d565b600a825260203681840137565b8051156110945760200190565b61218e612145565b600861219982612179565b5390565b6121a5612145565b601261219982612179565b6121b8612145565b601a61219982612179565b6121cb612145565b602861219982612179565b6121de612145565b605061219982612179565b6121f161215f565b60a260005b607f8083111561221b5790608060019284161760208286010153019060071c906121f6565b50607f600192166020828501015301815290565b612237612145565b601061219982612179565b9060809160806001600160401b0382161061229e5761225f61215f565b60005b607f8084111561228657908560019285161760208285010153019160071c91612262565b5090929350607f600192166020828501015301815290565b9091506122a9612145565b9060f81b6001600160f81b03191660001a61219982612179565b61068e61230361230361239761238760206123039661238061230361235a6122e961084d565b6123096122f4612186565b6040519b8c9389850190611fc7565b90611fc7565b039861231d601f199a8b81018352826101d6565b61234e61233f61233a612334612334895160ff1690565b60ff1690565b612242565b60405194859389850190611fc7565b038981018352826101d6565b61237461236561219d565b60405198899387850190611fc7565b038781018752866101d6565b0151612552565b6040519586936020850190611fc7565b039081018352826101d6565b61068e61241461242d926040516123b9816101a8565b6000815261241a6123c8612145565b92600a6123d485612179565b536040519485946020968791826123f481840198898151938492016103f4565b8201612408825180938680850191016103f4565b010380875201856101d6565b51612552565b90604051958693518092868601906103f4565b8201612441825180938680850191016103f4565b010380845201826101d6565b61068e61230361230361239761238761233a6125006020612303986124f86123036124d261247961084d565b612493612484612186565b6040519d8e9389850190611fc7565b039a6124a7601f199c8d81018352826101d6565b6124c661233f61233a6124bf6124bf895161ffff1690565b61ffff1690565b038b81018352826101d6565b6124ec6124dd61222f565b6040519a8b9387850190611fc7565b038981018952886101d6565b015160070b90565b6001600160401b031690565b60008061068e93602081519101845af43d1561254a573d9161252d83610220565b9261253b60405194856101d6565b83523d6000602085013e612582565b606091612582565b61068e602061256a6001600160401b03845116612242565b604051938161242d86935180928680870191016103f4565b906125a9575080511561259757602081519101fd5b60405163d6bda27560e01b8152600490fd5b815115806125dc575b6125ba575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b156125b256fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc7a7ef2e786f2e2e26f0a8d1c18e1ce8d0e9a183cd1289abd7052371335196d43706675a12eeff0661731f01589a945c9c5e9663916191034a16d20b6fcc93dd8f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220967cf5cbd364f92cef05eaaa02858325f4e8970208f248a9783e2bbfa288ffce64736f6c63430008190033",
|
|
1152
|
+
"linkReferences": {},
|
|
1153
|
+
"deployedLinkReferences": {}
|
|
1154
|
+
}
|