@keep-network/tbtc-v2 0.1.0 → 0.1.1-dev
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.adoc +12 -0
- package/artifacts/.chainId +1 -1
- package/artifacts/Bank.json +807 -0
- package/artifacts/Bridge.json +2300 -0
- package/artifacts/Deposit.json +117 -0
- package/artifacts/DepositSweep.json +77 -0
- package/artifacts/EcdsaDkgValidator.json +532 -0
- package/artifacts/EcdsaInactivity.json +156 -0
- package/artifacts/EcdsaSortitionPool.json +1004 -0
- package/artifacts/Fraud.json +164 -0
- package/artifacts/KeepRegistry.json +99 -0
- package/artifacts/KeepStake.json +286 -0
- package/artifacts/KeepToken.json +711 -0
- package/artifacts/KeepTokenStaking.json +483 -0
- package/artifacts/MovingFunds.json +249 -0
- package/artifacts/NuCypherStakingEscrow.json +256 -0
- package/artifacts/NuCypherToken.json +711 -0
- package/artifacts/RandomBeaconStub.json +141 -0
- package/artifacts/Redemption.json +174 -0
- package/artifacts/ReimbursementPool.json +509 -0
- package/artifacts/Relay.json +123 -0
- package/artifacts/T.json +1148 -0
- package/artifacts/TBTC.json +36 -35
- package/artifacts/TBTCToken.json +738 -0
- package/artifacts/TBTCVault.json +691 -0
- package/artifacts/TokenStaking.json +2288 -0
- package/artifacts/TokenholderGovernor.json +1795 -0
- package/artifacts/TokenholderTimelock.json +1058 -0
- package/artifacts/VendingMachine.json +34 -33
- package/artifacts/VendingMachineKeep.json +400 -0
- package/artifacts/VendingMachineNuCypher.json +400 -0
- package/artifacts/WalletRegistry.json +1843 -0
- package/artifacts/WalletRegistryGovernance.json +2754 -0
- package/artifacts/Wallets.json +186 -0
- package/artifacts/solcInputs/5e62cff1ead0900b07facca4b559e818.json +314 -0
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.json +2 -2
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +4 -0
- package/build/contracts/bank/Bank.sol/Bank.json +542 -0
- package/build/contracts/bank/IReceiveBalanceApproval.sol/IReceiveBalanceApproval.dbg.json +4 -0
- package/build/contracts/bank/IReceiveBalanceApproval.sol/IReceiveBalanceApproval.json +34 -0
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +4 -0
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +10 -0
- package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +4 -0
- package/build/contracts/bridge/Bridge.sol/Bridge.json +2686 -0
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +4 -0
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +226 -0
- package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +4 -0
- package/build/contracts/bridge/Deposit.sol/Deposit.json +72 -0
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +4 -0
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +30 -0
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +4 -0
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.json +10 -0
- package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +4 -0
- package/build/contracts/bridge/Fraud.sol/Fraud.json +86 -0
- package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +4 -0
- package/build/contracts/bridge/Heartbeat.sol/Heartbeat.json +10 -0
- package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +4 -0
- package/build/contracts/bridge/IRelay.sol/IRelay.json +37 -0
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +4 -0
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +138 -0
- package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +4 -0
- package/build/contracts/bridge/Redemption.sol/OutboundTx.json +10 -0
- package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +4 -0
- package/build/contracts/bridge/Redemption.sol/Redemption.json +92 -0
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.json +2 -2
- package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +4 -0
- package/build/contracts/bridge/Wallets.sol/Wallets.json +112 -0
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/token/TBTC.sol/TBTC.json +4 -4
- package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +4 -0
- package/build/contracts/vault/DonationVault.sol/DonationVault.json +108 -0
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +4 -0
- package/build/contracts/vault/IVault.sol/IVault.json +52 -0
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +4 -0
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.json +449 -0
- package/contracts/GovernanceUtils.sol +4 -4
- package/contracts/bank/Bank.sol +436 -0
- package/contracts/bank/IReceiveBalanceApproval.sol +45 -0
- package/contracts/bridge/BitcoinTx.sol +326 -0
- package/contracts/bridge/Bridge.sol +1793 -0
- package/contracts/bridge/BridgeState.sol +739 -0
- package/contracts/bridge/Deposit.sol +269 -0
- package/contracts/bridge/DepositSweep.sol +574 -0
- package/contracts/bridge/EcdsaLib.sol +45 -0
- package/contracts/bridge/Fraud.sol +579 -0
- package/contracts/bridge/Heartbeat.sol +112 -0
- package/contracts/bridge/IRelay.sol +28 -0
- package/contracts/bridge/MovingFunds.sol +1077 -0
- package/contracts/bridge/Redemption.sol +1020 -0
- package/contracts/bridge/VendingMachine.sol +2 -2
- package/contracts/bridge/Wallets.sol +719 -0
- package/contracts/hardhat-dependency-compiler/.hardhat-dependency-compiler +1 -0
- package/contracts/hardhat-dependency-compiler/@keep-network/ecdsa/contracts/WalletRegistry.sol +3 -0
- package/contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol +3 -0
- package/contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol +3 -0
- package/contracts/token/TBTC.sol +1 -1
- package/contracts/vault/DonationVault.sol +125 -0
- package/contracts/vault/IVault.sol +44 -0
- package/contracts/vault/TBTCVault.sol +305 -0
- package/deploy/00_resolve_relay.ts +28 -0
- package/deploy/00_resolve_tbtc_v1_token.ts +1 -1
- package/deploy/01_deploy_tbtc_v2_token.ts +8 -1
- package/deploy/02_deploy_vending_machine.ts +7 -0
- package/deploy/{03_transfer_roles.ts → 03_transfer_vending_machine_roles.ts} +1 -1
- package/deploy/04_deploy_bank.ts +27 -0
- package/deploy/05_deploy_bridge.ts +80 -0
- package/deploy/06_deploy_tbtc_vault.ts +30 -0
- package/deploy/07_bank_update_bridge.ts +19 -0
- package/deploy/08_transfer_bank_ownership.ts +15 -0
- package/deploy/09_transfer_tbtc_vault_ownership.ts +15 -0
- package/deploy/10_transfer_bridge_governance.ts +20 -0
- package/deploy/11_initialize_wallet_owner.ts +18 -0
- package/deploy/11_transfer_proxy_admin_ownership.ts +30 -0
- package/deploy/12_deploy_proxy_admin_with_deputy.ts +33 -0
- package/export/deploy/00_resolve_relay.js +24 -0
- package/export/deploy/00_resolve_tbtc_v1_token.js +24 -0
- package/export/deploy/01_deploy_tbtc_v2_token.js +19 -0
- package/export/deploy/02_deploy_vending_machine.js +25 -0
- package/export/deploy/03_transfer_vending_machine_roles.js +19 -0
- package/export/deploy/04_deploy_bank.js +21 -0
- package/export/deploy/05_deploy_bridge.js +69 -0
- package/export/deploy/06_deploy_tbtc_vault.js +24 -0
- package/export/deploy/07_bank_update_bridge.js +13 -0
- package/export/deploy/08_transfer_bank_ownership.js +11 -0
- package/export/deploy/09_transfer_tbtc_vault_ownership.js +11 -0
- package/export/deploy/10_transfer_bridge_governance.js +11 -0
- package/export/deploy/11_initialize_wallet_owner.js +14 -0
- package/export/deploy/11_transfer_proxy_admin_ownership.js +23 -0
- package/export/deploy/12_deploy_proxy_admin_with_deputy.js +22 -0
- package/export/hardhat.config.js +169 -0
- package/export/test/bank/Bank.test.js +1012 -0
- package/export/test/bridge/Bridge.Deployment.test.js +76 -0
- package/export/test/bridge/Bridge.Deposit.test.js +1834 -0
- package/export/test/bridge/Bridge.Frauds.test.js +1349 -0
- package/export/test/bridge/Bridge.MovingFunds.test.js +2437 -0
- package/export/test/bridge/Bridge.Parameters.test.js +400 -0
- package/export/test/bridge/Bridge.Redemption.test.js +2523 -0
- package/export/test/bridge/Bridge.Vaults.test.js +74 -0
- package/export/test/bridge/Bridge.Wallets.test.js +1017 -0
- package/export/test/bridge/EcdsaLib.test.js +46 -0
- package/export/test/bridge/Heartbeat.test.js +77 -0
- package/export/test/bridge/VendingMachine.Upgrade.test.js +160 -0
- package/export/test/bridge/VendingMachine.test.js +762 -0
- package/export/test/data/deposit-sweep.js +655 -0
- package/export/test/data/ecdsa.js +18 -0
- package/export/test/data/fraud.js +158 -0
- package/export/test/data/moving-funds.js +815 -0
- package/export/test/data/redemption.js +1011 -0
- package/export/test/fixtures/bridge.js +54 -0
- package/export/test/fixtures/index.js +57 -0
- package/export/test/helpers/contract-test-helpers.js +18 -0
- package/export/test/integration/Slashing.test.js +279 -0
- package/export/test/integration/WalleCreation.test.js +66 -0
- package/export/test/integration/utils/ecdsa-wallet-registry.js +137 -0
- package/export/test/integration/utils/fixture.js +77 -0
- package/export/test/integration/utils/gas.js +36 -0
- package/export/test/integration/utils/random-beacon.js +26 -0
- package/export/test/integration/utils/staking.js +19 -0
- package/export/test/vault/DonationVault.test.js +202 -0
- package/export/test/vault/TBTCVault.Redemption.test.js +357 -0
- package/export/test/vault/TBTCVault.test.js +768 -0
- package/export/typechain/BTCUtils.js +2 -0
- package/export/typechain/Bank.js +2 -0
- package/export/typechain/BankStub.js +2 -0
- package/export/typechain/Bridge.js +2 -0
- package/export/typechain/BridgeState.js +2 -0
- package/export/typechain/BridgeStub.js +2 -0
- package/export/typechain/Deposit.js +2 -0
- package/export/typechain/DepositSweep.js +2 -0
- package/export/typechain/DonationVault.js +2 -0
- package/export/typechain/ERC165.js +2 -0
- package/export/typechain/ERC1967Proxy.js +2 -0
- package/export/typechain/ERC1967Upgrade.js +2 -0
- package/export/typechain/ERC20WithPermit.js +2 -0
- package/export/typechain/ERC721.js +2 -0
- package/export/typechain/EcdsaAuthorization.js +2 -0
- package/export/typechain/EcdsaDkg.js +2 -0
- package/export/typechain/EcdsaDkgValidator.js +2 -0
- package/export/typechain/EcdsaInactivity.js +2 -0
- package/export/typechain/Fraud.js +2 -0
- package/export/typechain/Governable.js +2 -0
- package/export/typechain/HeartbeatStub.js +2 -0
- package/export/typechain/IApplication.js +2 -0
- package/export/typechain/IApproveAndCall.js +2 -0
- package/export/typechain/IBeacon.js +2 -0
- package/export/typechain/IERC165.js +2 -0
- package/export/typechain/IERC1822Proxiable.js +2 -0
- package/export/typechain/IERC20.js +2 -0
- package/export/typechain/IERC20Metadata.js +2 -0
- package/export/typechain/IERC20WithPermit.js +2 -0
- package/export/typechain/IERC721.js +2 -0
- package/export/typechain/IERC721Metadata.js +2 -0
- package/export/typechain/IERC721Receiver.js +2 -0
- package/export/typechain/IRandomBeacon.js +2 -0
- package/export/typechain/IRandomBeaconConsumer.js +2 -0
- package/export/typechain/IReceiveApproval.js +2 -0
- package/export/typechain/IReceiveBalanceApproval.js +2 -0
- package/export/typechain/IRelay.js +2 -0
- package/export/typechain/IStaking.js +2 -0
- package/export/typechain/IVault.js +2 -0
- package/export/typechain/IWalletOwner.js +2 -0
- package/export/typechain/IWalletRegistry.js +2 -0
- package/export/typechain/Initializable.js +2 -0
- package/export/typechain/MisfundRecovery.js +2 -0
- package/export/typechain/MovingFunds.js +2 -0
- package/export/typechain/Ownable.js +2 -0
- package/export/typechain/Proxy.js +2 -0
- package/export/typechain/ProxyAdmin.js +2 -0
- package/export/typechain/ReceiveApprovalStub.js +2 -0
- package/export/typechain/Redemption.js +2 -0
- package/export/typechain/Reimbursable.js +2 -0
- package/export/typechain/ReimbursementPool.js +2 -0
- package/export/typechain/Rewards.js +2 -0
- package/export/typechain/SortitionPool.js +2 -0
- package/export/typechain/SortitionTree.js +2 -0
- package/export/typechain/TBTC.js +2 -0
- package/export/typechain/TBTCVault.js +2 -0
- package/export/typechain/TestERC20.js +2 -0
- package/export/typechain/TestERC721.js +2 -0
- package/export/typechain/TestEcdsaLib.js +2 -0
- package/export/typechain/TestRelay.js +2 -0
- package/export/typechain/TransparentUpgradeableProxy.js +2 -0
- package/export/typechain/VendingMachine.js +2 -0
- package/export/typechain/WalletRegistry.js +2 -0
- package/export/typechain/Wallets.js +2 -0
- package/export/typechain/common.js +2 -0
- package/export/typechain/factories/BTCUtils__factory.js +94 -0
- package/export/typechain/factories/BankStub__factory.js +586 -0
- package/export/typechain/factories/Bank__factory.js +573 -0
- package/export/typechain/factories/BridgeState__factory.js +257 -0
- package/export/typechain/factories/BridgeStub__factory.js +2912 -0
- package/export/typechain/factories/Bridge__factory.js +2526 -0
- package/export/typechain/factories/DepositSweep__factory.js +61 -0
- package/export/typechain/factories/Deposit__factory.js +103 -0
- package/export/typechain/factories/DonationVault__factory.js +139 -0
- package/export/typechain/factories/ERC165__factory.js +38 -0
- package/export/typechain/factories/ERC1967Proxy__factory.js +111 -0
- package/export/typechain/factories/ERC1967Upgrade__factory.js +64 -0
- package/export/typechain/factories/ERC20WithPermit__factory.js +524 -0
- package/export/typechain/factories/ERC721__factory.js +388 -0
- package/export/typechain/factories/EcdsaAuthorization__factory.js +211 -0
- package/export/typechain/factories/EcdsaDkgValidator__factory.js +441 -0
- package/export/typechain/factories/EcdsaDkg__factory.js +192 -0
- package/export/typechain/factories/EcdsaInactivity__factory.js +134 -0
- package/export/typechain/factories/Fraud__factory.js +117 -0
- package/export/typechain/factories/Governable__factory.js +64 -0
- package/export/typechain/factories/HeartbeatStub__factory.js +61 -0
- package/export/typechain/factories/IApplication__factory.js +152 -0
- package/export/typechain/factories/IApproveAndCall__factory.js +48 -0
- package/export/typechain/factories/IBeacon__factory.js +32 -0
- package/export/typechain/factories/IERC165__factory.js +38 -0
- package/export/typechain/factories/IERC1822Proxiable__factory.js +32 -0
- package/export/typechain/factories/IERC20Metadata__factory.js +241 -0
- package/export/typechain/factories/IERC20WithPermit__factory.js +389 -0
- package/export/typechain/factories/IERC20__factory.js +202 -0
- package/export/typechain/factories/IERC721Metadata__factory.js +349 -0
- package/export/typechain/factories/IERC721Receiver__factory.js +53 -0
- package/export/typechain/factories/IERC721__factory.js +304 -0
- package/export/typechain/factories/IRandomBeaconConsumer__factory.js +37 -0
- package/export/typechain/factories/IRandomBeacon__factory.js +32 -0
- package/export/typechain/factories/IReceiveApproval__factory.js +47 -0
- package/export/typechain/factories/IReceiveBalanceApproval__factory.js +42 -0
- package/export/typechain/factories/IRelay__factory.js +45 -0
- package/export/typechain/factories/IStaking__factory.js +722 -0
- package/export/typechain/factories/IVault__factory.js +60 -0
- package/export/typechain/factories/IWalletOwner__factory.js +65 -0
- package/export/typechain/factories/IWalletRegistry__factory.js +138 -0
- package/export/typechain/factories/Initializable__factory.js +32 -0
- package/export/typechain/factories/MisfundRecovery__factory.js +145 -0
- package/export/typechain/factories/MovingFunds__factory.js +169 -0
- package/export/typechain/factories/Ownable__factory.js +71 -0
- package/export/typechain/factories/ProxyAdmin__factory.js +191 -0
- package/export/typechain/factories/Proxy__factory.js +27 -0
- package/export/typechain/factories/ReceiveApprovalStub__factory.js +127 -0
- package/export/typechain/factories/Redemption__factory.js +123 -0
- package/export/typechain/factories/Reimbursable__factory.js +58 -0
- package/export/typechain/factories/ReimbursementPool__factory.js +350 -0
- package/export/typechain/factories/Rewards__factory.js +117 -0
- package/export/typechain/factories/SortitionPool__factory.js +610 -0
- package/export/typechain/factories/SortitionTree__factory.js +149 -0
- package/export/typechain/factories/TBTCVault__factory.js +480 -0
- package/export/typechain/factories/TBTC__factory.js +564 -0
- package/export/typechain/factories/TestERC20__factory.js +539 -0
- package/export/typechain/factories/TestERC721__factory.js +421 -0
- package/export/typechain/factories/TestEcdsaLib__factory.js +66 -0
- package/export/typechain/factories/TestRelay__factory.js +94 -0
- package/export/typechain/factories/TransparentUpgradeableProxy__factory.js +186 -0
- package/export/typechain/factories/VendingMachine__factory.js +549 -0
- package/export/typechain/factories/WalletRegistry__factory.js +1919 -0
- package/export/typechain/factories/Wallets__factory.js +143 -0
- package/export/typechain/index.js +132 -0
- package/export.json +15932 -503
- package/package.json +47 -26
- package/artifacts/solcInputs/7cc3eda3cb3ff2522d18b5e7b31ea228.json +0 -104
|
@@ -0,0 +1,2686 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "Bridge",
|
|
4
|
+
"sourceName": "contracts/bridge/Bridge.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"anonymous": false,
|
|
8
|
+
"inputs": [
|
|
9
|
+
{
|
|
10
|
+
"indexed": false,
|
|
11
|
+
"internalType": "uint64",
|
|
12
|
+
"name": "depositDustThreshold",
|
|
13
|
+
"type": "uint64"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"indexed": false,
|
|
17
|
+
"internalType": "uint64",
|
|
18
|
+
"name": "depositTreasuryFeeDivisor",
|
|
19
|
+
"type": "uint64"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"indexed": false,
|
|
23
|
+
"internalType": "uint64",
|
|
24
|
+
"name": "depositTxMaxFee",
|
|
25
|
+
"type": "uint64"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"name": "DepositParametersUpdated",
|
|
29
|
+
"type": "event"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"anonymous": false,
|
|
33
|
+
"inputs": [
|
|
34
|
+
{
|
|
35
|
+
"indexed": false,
|
|
36
|
+
"internalType": "bytes32",
|
|
37
|
+
"name": "fundingTxHash",
|
|
38
|
+
"type": "bytes32"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"indexed": false,
|
|
42
|
+
"internalType": "uint32",
|
|
43
|
+
"name": "fundingOutputIndex",
|
|
44
|
+
"type": "uint32"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"indexed": true,
|
|
48
|
+
"internalType": "address",
|
|
49
|
+
"name": "depositor",
|
|
50
|
+
"type": "address"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"indexed": false,
|
|
54
|
+
"internalType": "uint64",
|
|
55
|
+
"name": "amount",
|
|
56
|
+
"type": "uint64"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"indexed": false,
|
|
60
|
+
"internalType": "bytes8",
|
|
61
|
+
"name": "blindingFactor",
|
|
62
|
+
"type": "bytes8"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"indexed": true,
|
|
66
|
+
"internalType": "bytes20",
|
|
67
|
+
"name": "walletPubKeyHash",
|
|
68
|
+
"type": "bytes20"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"indexed": false,
|
|
72
|
+
"internalType": "bytes20",
|
|
73
|
+
"name": "refundPubKeyHash",
|
|
74
|
+
"type": "bytes20"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"indexed": false,
|
|
78
|
+
"internalType": "bytes4",
|
|
79
|
+
"name": "refundLocktime",
|
|
80
|
+
"type": "bytes4"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"indexed": false,
|
|
84
|
+
"internalType": "address",
|
|
85
|
+
"name": "vault",
|
|
86
|
+
"type": "address"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"name": "DepositRevealed",
|
|
90
|
+
"type": "event"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"anonymous": false,
|
|
94
|
+
"inputs": [
|
|
95
|
+
{
|
|
96
|
+
"indexed": false,
|
|
97
|
+
"internalType": "bytes20",
|
|
98
|
+
"name": "walletPubKeyHash",
|
|
99
|
+
"type": "bytes20"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"indexed": false,
|
|
103
|
+
"internalType": "bytes32",
|
|
104
|
+
"name": "sweepTxHash",
|
|
105
|
+
"type": "bytes32"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"name": "DepositsSwept",
|
|
109
|
+
"type": "event"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"anonymous": false,
|
|
113
|
+
"inputs": [
|
|
114
|
+
{
|
|
115
|
+
"indexed": true,
|
|
116
|
+
"internalType": "bytes20",
|
|
117
|
+
"name": "walletPubKeyHash",
|
|
118
|
+
"type": "bytes20"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"indexed": false,
|
|
122
|
+
"internalType": "bytes32",
|
|
123
|
+
"name": "sighash",
|
|
124
|
+
"type": "bytes32"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"name": "FraudChallengeDefeatTimedOut",
|
|
128
|
+
"type": "event"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"anonymous": false,
|
|
132
|
+
"inputs": [
|
|
133
|
+
{
|
|
134
|
+
"indexed": true,
|
|
135
|
+
"internalType": "bytes20",
|
|
136
|
+
"name": "walletPubKeyHash",
|
|
137
|
+
"type": "bytes20"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"indexed": false,
|
|
141
|
+
"internalType": "bytes32",
|
|
142
|
+
"name": "sighash",
|
|
143
|
+
"type": "bytes32"
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"name": "FraudChallengeDefeated",
|
|
147
|
+
"type": "event"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"anonymous": false,
|
|
151
|
+
"inputs": [
|
|
152
|
+
{
|
|
153
|
+
"indexed": true,
|
|
154
|
+
"internalType": "bytes20",
|
|
155
|
+
"name": "walletPubKeyHash",
|
|
156
|
+
"type": "bytes20"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"indexed": false,
|
|
160
|
+
"internalType": "bytes32",
|
|
161
|
+
"name": "sighash",
|
|
162
|
+
"type": "bytes32"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"indexed": false,
|
|
166
|
+
"internalType": "uint8",
|
|
167
|
+
"name": "v",
|
|
168
|
+
"type": "uint8"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"indexed": false,
|
|
172
|
+
"internalType": "bytes32",
|
|
173
|
+
"name": "r",
|
|
174
|
+
"type": "bytes32"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"indexed": false,
|
|
178
|
+
"internalType": "bytes32",
|
|
179
|
+
"name": "s",
|
|
180
|
+
"type": "bytes32"
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"name": "FraudChallengeSubmitted",
|
|
184
|
+
"type": "event"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"anonymous": false,
|
|
188
|
+
"inputs": [
|
|
189
|
+
{
|
|
190
|
+
"indexed": false,
|
|
191
|
+
"internalType": "uint256",
|
|
192
|
+
"name": "fraudChallengeDepositAmount",
|
|
193
|
+
"type": "uint256"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"indexed": false,
|
|
197
|
+
"internalType": "uint256",
|
|
198
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
199
|
+
"type": "uint256"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"indexed": false,
|
|
203
|
+
"internalType": "uint96",
|
|
204
|
+
"name": "fraudSlashingAmount",
|
|
205
|
+
"type": "uint96"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"indexed": false,
|
|
209
|
+
"internalType": "uint256",
|
|
210
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
211
|
+
"type": "uint256"
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"name": "FraudParametersUpdated",
|
|
215
|
+
"type": "event"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"anonymous": false,
|
|
219
|
+
"inputs": [
|
|
220
|
+
{
|
|
221
|
+
"indexed": false,
|
|
222
|
+
"internalType": "address",
|
|
223
|
+
"name": "oldGovernance",
|
|
224
|
+
"type": "address"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"indexed": false,
|
|
228
|
+
"internalType": "address",
|
|
229
|
+
"name": "newGovernance",
|
|
230
|
+
"type": "address"
|
|
231
|
+
}
|
|
232
|
+
],
|
|
233
|
+
"name": "GovernanceTransferred",
|
|
234
|
+
"type": "event"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"anonymous": false,
|
|
238
|
+
"inputs": [
|
|
239
|
+
{
|
|
240
|
+
"indexed": false,
|
|
241
|
+
"internalType": "uint8",
|
|
242
|
+
"name": "version",
|
|
243
|
+
"type": "uint8"
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"name": "Initialized",
|
|
247
|
+
"type": "event"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"anonymous": false,
|
|
251
|
+
"inputs": [
|
|
252
|
+
{
|
|
253
|
+
"indexed": true,
|
|
254
|
+
"internalType": "bytes20",
|
|
255
|
+
"name": "walletPubKeyHash",
|
|
256
|
+
"type": "bytes20"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"indexed": false,
|
|
260
|
+
"internalType": "bytes32",
|
|
261
|
+
"name": "movingFundsTxHash",
|
|
262
|
+
"type": "bytes32"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"indexed": false,
|
|
266
|
+
"internalType": "uint32",
|
|
267
|
+
"name": "movingFundsTxOutputIndex",
|
|
268
|
+
"type": "uint32"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"name": "MovedFundsSweepTimedOut",
|
|
272
|
+
"type": "event"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"anonymous": false,
|
|
276
|
+
"inputs": [
|
|
277
|
+
{
|
|
278
|
+
"indexed": true,
|
|
279
|
+
"internalType": "bytes20",
|
|
280
|
+
"name": "walletPubKeyHash",
|
|
281
|
+
"type": "bytes20"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"indexed": false,
|
|
285
|
+
"internalType": "bytes32",
|
|
286
|
+
"name": "sweepTxHash",
|
|
287
|
+
"type": "bytes32"
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
"name": "MovedFundsSwept",
|
|
291
|
+
"type": "event"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"anonymous": false,
|
|
295
|
+
"inputs": [
|
|
296
|
+
{
|
|
297
|
+
"indexed": true,
|
|
298
|
+
"internalType": "bytes20",
|
|
299
|
+
"name": "walletPubKeyHash",
|
|
300
|
+
"type": "bytes20"
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"name": "MovingFundsBelowDustReported",
|
|
304
|
+
"type": "event"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"anonymous": false,
|
|
308
|
+
"inputs": [
|
|
309
|
+
{
|
|
310
|
+
"indexed": true,
|
|
311
|
+
"internalType": "bytes20",
|
|
312
|
+
"name": "walletPubKeyHash",
|
|
313
|
+
"type": "bytes20"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"indexed": false,
|
|
317
|
+
"internalType": "bytes20[]",
|
|
318
|
+
"name": "targetWallets",
|
|
319
|
+
"type": "bytes20[]"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"indexed": false,
|
|
323
|
+
"internalType": "address",
|
|
324
|
+
"name": "submitter",
|
|
325
|
+
"type": "address"
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
"name": "MovingFundsCommitmentSubmitted",
|
|
329
|
+
"type": "event"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"anonymous": false,
|
|
333
|
+
"inputs": [
|
|
334
|
+
{
|
|
335
|
+
"indexed": true,
|
|
336
|
+
"internalType": "bytes20",
|
|
337
|
+
"name": "walletPubKeyHash",
|
|
338
|
+
"type": "bytes20"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"indexed": false,
|
|
342
|
+
"internalType": "bytes32",
|
|
343
|
+
"name": "movingFundsTxHash",
|
|
344
|
+
"type": "bytes32"
|
|
345
|
+
}
|
|
346
|
+
],
|
|
347
|
+
"name": "MovingFundsCompleted",
|
|
348
|
+
"type": "event"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"anonymous": false,
|
|
352
|
+
"inputs": [
|
|
353
|
+
{
|
|
354
|
+
"indexed": false,
|
|
355
|
+
"internalType": "uint64",
|
|
356
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
357
|
+
"type": "uint64"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"indexed": false,
|
|
361
|
+
"internalType": "uint64",
|
|
362
|
+
"name": "movingFundsDustThreshold",
|
|
363
|
+
"type": "uint64"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"indexed": false,
|
|
367
|
+
"internalType": "uint32",
|
|
368
|
+
"name": "movingFundsTimeoutResetDelay",
|
|
369
|
+
"type": "uint32"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"indexed": false,
|
|
373
|
+
"internalType": "uint32",
|
|
374
|
+
"name": "movingFundsTimeout",
|
|
375
|
+
"type": "uint32"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"indexed": false,
|
|
379
|
+
"internalType": "uint96",
|
|
380
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
381
|
+
"type": "uint96"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"indexed": false,
|
|
385
|
+
"internalType": "uint256",
|
|
386
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
387
|
+
"type": "uint256"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"indexed": false,
|
|
391
|
+
"internalType": "uint64",
|
|
392
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
393
|
+
"type": "uint64"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"indexed": false,
|
|
397
|
+
"internalType": "uint32",
|
|
398
|
+
"name": "movedFundsSweepTimeout",
|
|
399
|
+
"type": "uint32"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"indexed": false,
|
|
403
|
+
"internalType": "uint96",
|
|
404
|
+
"name": "movedFundsSweepTimeoutSlashingAmount",
|
|
405
|
+
"type": "uint96"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"indexed": false,
|
|
409
|
+
"internalType": "uint256",
|
|
410
|
+
"name": "movedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
411
|
+
"type": "uint256"
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"name": "MovingFundsParametersUpdated",
|
|
415
|
+
"type": "event"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"anonymous": false,
|
|
419
|
+
"inputs": [
|
|
420
|
+
{
|
|
421
|
+
"indexed": true,
|
|
422
|
+
"internalType": "bytes20",
|
|
423
|
+
"name": "walletPubKeyHash",
|
|
424
|
+
"type": "bytes20"
|
|
425
|
+
}
|
|
426
|
+
],
|
|
427
|
+
"name": "MovingFundsTimedOut",
|
|
428
|
+
"type": "event"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"anonymous": false,
|
|
432
|
+
"inputs": [
|
|
433
|
+
{
|
|
434
|
+
"indexed": true,
|
|
435
|
+
"internalType": "bytes20",
|
|
436
|
+
"name": "walletPubKeyHash",
|
|
437
|
+
"type": "bytes20"
|
|
438
|
+
}
|
|
439
|
+
],
|
|
440
|
+
"name": "MovingFundsTimeoutReset",
|
|
441
|
+
"type": "event"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"anonymous": false,
|
|
445
|
+
"inputs": [
|
|
446
|
+
{
|
|
447
|
+
"indexed": true,
|
|
448
|
+
"internalType": "bytes32",
|
|
449
|
+
"name": "ecdsaWalletID",
|
|
450
|
+
"type": "bytes32"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"indexed": true,
|
|
454
|
+
"internalType": "bytes20",
|
|
455
|
+
"name": "walletPubKeyHash",
|
|
456
|
+
"type": "bytes20"
|
|
457
|
+
}
|
|
458
|
+
],
|
|
459
|
+
"name": "NewWalletRegistered",
|
|
460
|
+
"type": "event"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"anonymous": false,
|
|
464
|
+
"inputs": [],
|
|
465
|
+
"name": "NewWalletRequested",
|
|
466
|
+
"type": "event"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"anonymous": false,
|
|
470
|
+
"inputs": [
|
|
471
|
+
{
|
|
472
|
+
"indexed": false,
|
|
473
|
+
"internalType": "uint64",
|
|
474
|
+
"name": "redemptionDustThreshold",
|
|
475
|
+
"type": "uint64"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"indexed": false,
|
|
479
|
+
"internalType": "uint64",
|
|
480
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
481
|
+
"type": "uint64"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"indexed": false,
|
|
485
|
+
"internalType": "uint64",
|
|
486
|
+
"name": "redemptionTxMaxFee",
|
|
487
|
+
"type": "uint64"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"indexed": false,
|
|
491
|
+
"internalType": "uint256",
|
|
492
|
+
"name": "redemptionTimeout",
|
|
493
|
+
"type": "uint256"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"indexed": false,
|
|
497
|
+
"internalType": "uint96",
|
|
498
|
+
"name": "redemptionTimeoutSlashingAmount",
|
|
499
|
+
"type": "uint96"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"indexed": false,
|
|
503
|
+
"internalType": "uint256",
|
|
504
|
+
"name": "redemptionTimeoutNotifierRewardMultiplier",
|
|
505
|
+
"type": "uint256"
|
|
506
|
+
}
|
|
507
|
+
],
|
|
508
|
+
"name": "RedemptionParametersUpdated",
|
|
509
|
+
"type": "event"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"anonymous": false,
|
|
513
|
+
"inputs": [
|
|
514
|
+
{
|
|
515
|
+
"indexed": true,
|
|
516
|
+
"internalType": "bytes20",
|
|
517
|
+
"name": "walletPubKeyHash",
|
|
518
|
+
"type": "bytes20"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"indexed": false,
|
|
522
|
+
"internalType": "bytes",
|
|
523
|
+
"name": "redeemerOutputScript",
|
|
524
|
+
"type": "bytes"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"indexed": true,
|
|
528
|
+
"internalType": "address",
|
|
529
|
+
"name": "redeemer",
|
|
530
|
+
"type": "address"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"indexed": false,
|
|
534
|
+
"internalType": "uint64",
|
|
535
|
+
"name": "requestedAmount",
|
|
536
|
+
"type": "uint64"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"indexed": false,
|
|
540
|
+
"internalType": "uint64",
|
|
541
|
+
"name": "treasuryFee",
|
|
542
|
+
"type": "uint64"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"indexed": false,
|
|
546
|
+
"internalType": "uint64",
|
|
547
|
+
"name": "txMaxFee",
|
|
548
|
+
"type": "uint64"
|
|
549
|
+
}
|
|
550
|
+
],
|
|
551
|
+
"name": "RedemptionRequested",
|
|
552
|
+
"type": "event"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"anonymous": false,
|
|
556
|
+
"inputs": [
|
|
557
|
+
{
|
|
558
|
+
"indexed": true,
|
|
559
|
+
"internalType": "bytes20",
|
|
560
|
+
"name": "walletPubKeyHash",
|
|
561
|
+
"type": "bytes20"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"indexed": false,
|
|
565
|
+
"internalType": "bytes",
|
|
566
|
+
"name": "redeemerOutputScript",
|
|
567
|
+
"type": "bytes"
|
|
568
|
+
}
|
|
569
|
+
],
|
|
570
|
+
"name": "RedemptionTimedOut",
|
|
571
|
+
"type": "event"
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"anonymous": false,
|
|
575
|
+
"inputs": [
|
|
576
|
+
{
|
|
577
|
+
"indexed": true,
|
|
578
|
+
"internalType": "bytes20",
|
|
579
|
+
"name": "walletPubKeyHash",
|
|
580
|
+
"type": "bytes20"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"indexed": false,
|
|
584
|
+
"internalType": "bytes32",
|
|
585
|
+
"name": "redemptionTxHash",
|
|
586
|
+
"type": "bytes32"
|
|
587
|
+
}
|
|
588
|
+
],
|
|
589
|
+
"name": "RedemptionsCompleted",
|
|
590
|
+
"type": "event"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"anonymous": false,
|
|
594
|
+
"inputs": [
|
|
595
|
+
{
|
|
596
|
+
"indexed": true,
|
|
597
|
+
"internalType": "address",
|
|
598
|
+
"name": "vault",
|
|
599
|
+
"type": "address"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"indexed": false,
|
|
603
|
+
"internalType": "bool",
|
|
604
|
+
"name": "isTrusted",
|
|
605
|
+
"type": "bool"
|
|
606
|
+
}
|
|
607
|
+
],
|
|
608
|
+
"name": "VaultStatusUpdated",
|
|
609
|
+
"type": "event"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"anonymous": false,
|
|
613
|
+
"inputs": [
|
|
614
|
+
{
|
|
615
|
+
"indexed": true,
|
|
616
|
+
"internalType": "bytes32",
|
|
617
|
+
"name": "ecdsaWalletID",
|
|
618
|
+
"type": "bytes32"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"indexed": true,
|
|
622
|
+
"internalType": "bytes20",
|
|
623
|
+
"name": "walletPubKeyHash",
|
|
624
|
+
"type": "bytes20"
|
|
625
|
+
}
|
|
626
|
+
],
|
|
627
|
+
"name": "WalletClosed",
|
|
628
|
+
"type": "event"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"anonymous": false,
|
|
632
|
+
"inputs": [
|
|
633
|
+
{
|
|
634
|
+
"indexed": true,
|
|
635
|
+
"internalType": "bytes32",
|
|
636
|
+
"name": "ecdsaWalletID",
|
|
637
|
+
"type": "bytes32"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"indexed": true,
|
|
641
|
+
"internalType": "bytes20",
|
|
642
|
+
"name": "walletPubKeyHash",
|
|
643
|
+
"type": "bytes20"
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"name": "WalletClosing",
|
|
647
|
+
"type": "event"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"anonymous": false,
|
|
651
|
+
"inputs": [
|
|
652
|
+
{
|
|
653
|
+
"indexed": true,
|
|
654
|
+
"internalType": "bytes32",
|
|
655
|
+
"name": "ecdsaWalletID",
|
|
656
|
+
"type": "bytes32"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"indexed": true,
|
|
660
|
+
"internalType": "bytes20",
|
|
661
|
+
"name": "walletPubKeyHash",
|
|
662
|
+
"type": "bytes20"
|
|
663
|
+
}
|
|
664
|
+
],
|
|
665
|
+
"name": "WalletMovingFunds",
|
|
666
|
+
"type": "event"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"anonymous": false,
|
|
670
|
+
"inputs": [
|
|
671
|
+
{
|
|
672
|
+
"indexed": false,
|
|
673
|
+
"internalType": "uint32",
|
|
674
|
+
"name": "walletCreationPeriod",
|
|
675
|
+
"type": "uint32"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"indexed": false,
|
|
679
|
+
"internalType": "uint64",
|
|
680
|
+
"name": "walletCreationMinBtcBalance",
|
|
681
|
+
"type": "uint64"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"indexed": false,
|
|
685
|
+
"internalType": "uint64",
|
|
686
|
+
"name": "walletCreationMaxBtcBalance",
|
|
687
|
+
"type": "uint64"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"indexed": false,
|
|
691
|
+
"internalType": "uint64",
|
|
692
|
+
"name": "walletClosureMinBtcBalance",
|
|
693
|
+
"type": "uint64"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"indexed": false,
|
|
697
|
+
"internalType": "uint32",
|
|
698
|
+
"name": "walletMaxAge",
|
|
699
|
+
"type": "uint32"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"indexed": false,
|
|
703
|
+
"internalType": "uint64",
|
|
704
|
+
"name": "walletMaxBtcTransfer",
|
|
705
|
+
"type": "uint64"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"indexed": false,
|
|
709
|
+
"internalType": "uint32",
|
|
710
|
+
"name": "walletClosingPeriod",
|
|
711
|
+
"type": "uint32"
|
|
712
|
+
}
|
|
713
|
+
],
|
|
714
|
+
"name": "WalletParametersUpdated",
|
|
715
|
+
"type": "event"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"anonymous": false,
|
|
719
|
+
"inputs": [
|
|
720
|
+
{
|
|
721
|
+
"indexed": true,
|
|
722
|
+
"internalType": "bytes32",
|
|
723
|
+
"name": "ecdsaWalletID",
|
|
724
|
+
"type": "bytes32"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"indexed": true,
|
|
728
|
+
"internalType": "bytes20",
|
|
729
|
+
"name": "walletPubKeyHash",
|
|
730
|
+
"type": "bytes20"
|
|
731
|
+
}
|
|
732
|
+
],
|
|
733
|
+
"name": "WalletTerminated",
|
|
734
|
+
"type": "event"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"inputs": [
|
|
738
|
+
{
|
|
739
|
+
"internalType": "bytes32",
|
|
740
|
+
"name": "ecdsaWalletID",
|
|
741
|
+
"type": "bytes32"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"internalType": "bytes32",
|
|
745
|
+
"name": "publicKeyX",
|
|
746
|
+
"type": "bytes32"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"internalType": "bytes32",
|
|
750
|
+
"name": "publicKeyY",
|
|
751
|
+
"type": "bytes32"
|
|
752
|
+
}
|
|
753
|
+
],
|
|
754
|
+
"name": "__ecdsaWalletCreatedCallback",
|
|
755
|
+
"outputs": [],
|
|
756
|
+
"stateMutability": "nonpayable",
|
|
757
|
+
"type": "function"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"inputs": [
|
|
761
|
+
{
|
|
762
|
+
"internalType": "bytes32",
|
|
763
|
+
"name": "",
|
|
764
|
+
"type": "bytes32"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"internalType": "bytes32",
|
|
768
|
+
"name": "publicKeyX",
|
|
769
|
+
"type": "bytes32"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"internalType": "bytes32",
|
|
773
|
+
"name": "publicKeyY",
|
|
774
|
+
"type": "bytes32"
|
|
775
|
+
}
|
|
776
|
+
],
|
|
777
|
+
"name": "__ecdsaWalletHeartbeatFailedCallback",
|
|
778
|
+
"outputs": [],
|
|
779
|
+
"stateMutability": "nonpayable",
|
|
780
|
+
"type": "function"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"inputs": [],
|
|
784
|
+
"name": "activeWalletPubKeyHash",
|
|
785
|
+
"outputs": [
|
|
786
|
+
{
|
|
787
|
+
"internalType": "bytes20",
|
|
788
|
+
"name": "",
|
|
789
|
+
"type": "bytes20"
|
|
790
|
+
}
|
|
791
|
+
],
|
|
792
|
+
"stateMutability": "view",
|
|
793
|
+
"type": "function"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"inputs": [],
|
|
797
|
+
"name": "contractReferences",
|
|
798
|
+
"outputs": [
|
|
799
|
+
{
|
|
800
|
+
"internalType": "contract Bank",
|
|
801
|
+
"name": "bank",
|
|
802
|
+
"type": "address"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"internalType": "contract IRelay",
|
|
806
|
+
"name": "relay",
|
|
807
|
+
"type": "address"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"internalType": "contract IWalletRegistry",
|
|
811
|
+
"name": "ecdsaWalletRegistry",
|
|
812
|
+
"type": "address"
|
|
813
|
+
}
|
|
814
|
+
],
|
|
815
|
+
"stateMutability": "view",
|
|
816
|
+
"type": "function"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"inputs": [
|
|
820
|
+
{
|
|
821
|
+
"internalType": "bytes",
|
|
822
|
+
"name": "walletPublicKey",
|
|
823
|
+
"type": "bytes"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"internalType": "bytes",
|
|
827
|
+
"name": "preimage",
|
|
828
|
+
"type": "bytes"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"internalType": "bool",
|
|
832
|
+
"name": "witness",
|
|
833
|
+
"type": "bool"
|
|
834
|
+
}
|
|
835
|
+
],
|
|
836
|
+
"name": "defeatFraudChallenge",
|
|
837
|
+
"outputs": [],
|
|
838
|
+
"stateMutability": "nonpayable",
|
|
839
|
+
"type": "function"
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"inputs": [
|
|
843
|
+
{
|
|
844
|
+
"internalType": "bytes",
|
|
845
|
+
"name": "walletPublicKey",
|
|
846
|
+
"type": "bytes"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"internalType": "bytes",
|
|
850
|
+
"name": "heartbeatMessage",
|
|
851
|
+
"type": "bytes"
|
|
852
|
+
}
|
|
853
|
+
],
|
|
854
|
+
"name": "defeatFraudChallengeWithHeartbeat",
|
|
855
|
+
"outputs": [],
|
|
856
|
+
"stateMutability": "nonpayable",
|
|
857
|
+
"type": "function"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"inputs": [],
|
|
861
|
+
"name": "depositParameters",
|
|
862
|
+
"outputs": [
|
|
863
|
+
{
|
|
864
|
+
"internalType": "uint64",
|
|
865
|
+
"name": "depositDustThreshold",
|
|
866
|
+
"type": "uint64"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"internalType": "uint64",
|
|
870
|
+
"name": "depositTreasuryFeeDivisor",
|
|
871
|
+
"type": "uint64"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"internalType": "uint64",
|
|
875
|
+
"name": "depositTxMaxFee",
|
|
876
|
+
"type": "uint64"
|
|
877
|
+
}
|
|
878
|
+
],
|
|
879
|
+
"stateMutability": "view",
|
|
880
|
+
"type": "function"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"inputs": [
|
|
884
|
+
{
|
|
885
|
+
"internalType": "uint256",
|
|
886
|
+
"name": "depositKey",
|
|
887
|
+
"type": "uint256"
|
|
888
|
+
}
|
|
889
|
+
],
|
|
890
|
+
"name": "deposits",
|
|
891
|
+
"outputs": [
|
|
892
|
+
{
|
|
893
|
+
"components": [
|
|
894
|
+
{
|
|
895
|
+
"internalType": "address",
|
|
896
|
+
"name": "depositor",
|
|
897
|
+
"type": "address"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"internalType": "uint64",
|
|
901
|
+
"name": "amount",
|
|
902
|
+
"type": "uint64"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"internalType": "uint32",
|
|
906
|
+
"name": "revealedAt",
|
|
907
|
+
"type": "uint32"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"internalType": "address",
|
|
911
|
+
"name": "vault",
|
|
912
|
+
"type": "address"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"internalType": "uint64",
|
|
916
|
+
"name": "treasuryFee",
|
|
917
|
+
"type": "uint64"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"internalType": "uint32",
|
|
921
|
+
"name": "sweptAt",
|
|
922
|
+
"type": "uint32"
|
|
923
|
+
}
|
|
924
|
+
],
|
|
925
|
+
"internalType": "struct Deposit.DepositRequest",
|
|
926
|
+
"name": "",
|
|
927
|
+
"type": "tuple"
|
|
928
|
+
}
|
|
929
|
+
],
|
|
930
|
+
"stateMutability": "view",
|
|
931
|
+
"type": "function"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"inputs": [
|
|
935
|
+
{
|
|
936
|
+
"internalType": "uint256",
|
|
937
|
+
"name": "challengeKey",
|
|
938
|
+
"type": "uint256"
|
|
939
|
+
}
|
|
940
|
+
],
|
|
941
|
+
"name": "fraudChallenges",
|
|
942
|
+
"outputs": [
|
|
943
|
+
{
|
|
944
|
+
"components": [
|
|
945
|
+
{
|
|
946
|
+
"internalType": "address",
|
|
947
|
+
"name": "challenger",
|
|
948
|
+
"type": "address"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"internalType": "uint256",
|
|
952
|
+
"name": "depositAmount",
|
|
953
|
+
"type": "uint256"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"internalType": "uint32",
|
|
957
|
+
"name": "reportedAt",
|
|
958
|
+
"type": "uint32"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"internalType": "bool",
|
|
962
|
+
"name": "resolved",
|
|
963
|
+
"type": "bool"
|
|
964
|
+
}
|
|
965
|
+
],
|
|
966
|
+
"internalType": "struct Fraud.FraudChallenge",
|
|
967
|
+
"name": "",
|
|
968
|
+
"type": "tuple"
|
|
969
|
+
}
|
|
970
|
+
],
|
|
971
|
+
"stateMutability": "view",
|
|
972
|
+
"type": "function"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"inputs": [],
|
|
976
|
+
"name": "fraudParameters",
|
|
977
|
+
"outputs": [
|
|
978
|
+
{
|
|
979
|
+
"internalType": "uint256",
|
|
980
|
+
"name": "fraudChallengeDepositAmount",
|
|
981
|
+
"type": "uint256"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"internalType": "uint256",
|
|
985
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
986
|
+
"type": "uint256"
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"internalType": "uint96",
|
|
990
|
+
"name": "fraudSlashingAmount",
|
|
991
|
+
"type": "uint96"
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"internalType": "uint256",
|
|
995
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
996
|
+
"type": "uint256"
|
|
997
|
+
}
|
|
998
|
+
],
|
|
999
|
+
"stateMutability": "view",
|
|
1000
|
+
"type": "function"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"inputs": [],
|
|
1004
|
+
"name": "governance",
|
|
1005
|
+
"outputs": [
|
|
1006
|
+
{
|
|
1007
|
+
"internalType": "address",
|
|
1008
|
+
"name": "",
|
|
1009
|
+
"type": "address"
|
|
1010
|
+
}
|
|
1011
|
+
],
|
|
1012
|
+
"stateMutability": "view",
|
|
1013
|
+
"type": "function"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"inputs": [
|
|
1017
|
+
{
|
|
1018
|
+
"internalType": "address",
|
|
1019
|
+
"name": "_bank",
|
|
1020
|
+
"type": "address"
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"internalType": "address",
|
|
1024
|
+
"name": "_relay",
|
|
1025
|
+
"type": "address"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"internalType": "address",
|
|
1029
|
+
"name": "_treasury",
|
|
1030
|
+
"type": "address"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"internalType": "address",
|
|
1034
|
+
"name": "_ecdsaWalletRegistry",
|
|
1035
|
+
"type": "address"
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"internalType": "uint256",
|
|
1039
|
+
"name": "_txProofDifficultyFactor",
|
|
1040
|
+
"type": "uint256"
|
|
1041
|
+
}
|
|
1042
|
+
],
|
|
1043
|
+
"name": "initialize",
|
|
1044
|
+
"outputs": [],
|
|
1045
|
+
"stateMutability": "nonpayable",
|
|
1046
|
+
"type": "function"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"inputs": [
|
|
1050
|
+
{
|
|
1051
|
+
"internalType": "address",
|
|
1052
|
+
"name": "vault",
|
|
1053
|
+
"type": "address"
|
|
1054
|
+
}
|
|
1055
|
+
],
|
|
1056
|
+
"name": "isVaultTrusted",
|
|
1057
|
+
"outputs": [
|
|
1058
|
+
{
|
|
1059
|
+
"internalType": "bool",
|
|
1060
|
+
"name": "",
|
|
1061
|
+
"type": "bool"
|
|
1062
|
+
}
|
|
1063
|
+
],
|
|
1064
|
+
"stateMutability": "view",
|
|
1065
|
+
"type": "function"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"inputs": [],
|
|
1069
|
+
"name": "liveWalletsCount",
|
|
1070
|
+
"outputs": [
|
|
1071
|
+
{
|
|
1072
|
+
"internalType": "uint32",
|
|
1073
|
+
"name": "",
|
|
1074
|
+
"type": "uint32"
|
|
1075
|
+
}
|
|
1076
|
+
],
|
|
1077
|
+
"stateMutability": "view",
|
|
1078
|
+
"type": "function"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"inputs": [
|
|
1082
|
+
{
|
|
1083
|
+
"internalType": "uint256",
|
|
1084
|
+
"name": "requestKey",
|
|
1085
|
+
"type": "uint256"
|
|
1086
|
+
}
|
|
1087
|
+
],
|
|
1088
|
+
"name": "movedFundsSweepRequests",
|
|
1089
|
+
"outputs": [
|
|
1090
|
+
{
|
|
1091
|
+
"components": [
|
|
1092
|
+
{
|
|
1093
|
+
"internalType": "bytes20",
|
|
1094
|
+
"name": "walletPubKeyHash",
|
|
1095
|
+
"type": "bytes20"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"internalType": "uint64",
|
|
1099
|
+
"name": "value",
|
|
1100
|
+
"type": "uint64"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"internalType": "uint32",
|
|
1104
|
+
"name": "createdAt",
|
|
1105
|
+
"type": "uint32"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"internalType": "enum MovingFunds.MovedFundsSweepRequestState",
|
|
1109
|
+
"name": "state",
|
|
1110
|
+
"type": "uint8"
|
|
1111
|
+
}
|
|
1112
|
+
],
|
|
1113
|
+
"internalType": "struct MovingFunds.MovedFundsSweepRequest",
|
|
1114
|
+
"name": "",
|
|
1115
|
+
"type": "tuple"
|
|
1116
|
+
}
|
|
1117
|
+
],
|
|
1118
|
+
"stateMutability": "view",
|
|
1119
|
+
"type": "function"
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"inputs": [],
|
|
1123
|
+
"name": "movingFundsParameters",
|
|
1124
|
+
"outputs": [
|
|
1125
|
+
{
|
|
1126
|
+
"internalType": "uint64",
|
|
1127
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
1128
|
+
"type": "uint64"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"internalType": "uint64",
|
|
1132
|
+
"name": "movingFundsDustThreshold",
|
|
1133
|
+
"type": "uint64"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"internalType": "uint32",
|
|
1137
|
+
"name": "movingFundsTimeoutResetDelay",
|
|
1138
|
+
"type": "uint32"
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"internalType": "uint32",
|
|
1142
|
+
"name": "movingFundsTimeout",
|
|
1143
|
+
"type": "uint32"
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"internalType": "uint96",
|
|
1147
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
1148
|
+
"type": "uint96"
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"internalType": "uint256",
|
|
1152
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
1153
|
+
"type": "uint256"
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"internalType": "uint64",
|
|
1157
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
1158
|
+
"type": "uint64"
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
"internalType": "uint32",
|
|
1162
|
+
"name": "movedFundsSweepTimeout",
|
|
1163
|
+
"type": "uint32"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"internalType": "uint96",
|
|
1167
|
+
"name": "movedFundsSweepTimeoutSlashingAmount",
|
|
1168
|
+
"type": "uint96"
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"internalType": "uint256",
|
|
1172
|
+
"name": "movedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
1173
|
+
"type": "uint256"
|
|
1174
|
+
}
|
|
1175
|
+
],
|
|
1176
|
+
"stateMutability": "view",
|
|
1177
|
+
"type": "function"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"inputs": [
|
|
1181
|
+
{
|
|
1182
|
+
"internalType": "bytes",
|
|
1183
|
+
"name": "walletPublicKey",
|
|
1184
|
+
"type": "bytes"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"internalType": "uint32[]",
|
|
1188
|
+
"name": "walletMembersIDs",
|
|
1189
|
+
"type": "uint32[]"
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"internalType": "bytes",
|
|
1193
|
+
"name": "preimageSha256",
|
|
1194
|
+
"type": "bytes"
|
|
1195
|
+
}
|
|
1196
|
+
],
|
|
1197
|
+
"name": "notifyFraudChallengeDefeatTimeout",
|
|
1198
|
+
"outputs": [],
|
|
1199
|
+
"stateMutability": "nonpayable",
|
|
1200
|
+
"type": "function"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"inputs": [
|
|
1204
|
+
{
|
|
1205
|
+
"internalType": "bytes32",
|
|
1206
|
+
"name": "movingFundsTxHash",
|
|
1207
|
+
"type": "bytes32"
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"internalType": "uint32",
|
|
1211
|
+
"name": "movingFundsTxOutputIndex",
|
|
1212
|
+
"type": "uint32"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"internalType": "uint32[]",
|
|
1216
|
+
"name": "walletMembersIDs",
|
|
1217
|
+
"type": "uint32[]"
|
|
1218
|
+
}
|
|
1219
|
+
],
|
|
1220
|
+
"name": "notifyMovedFundsSweepTimeout",
|
|
1221
|
+
"outputs": [],
|
|
1222
|
+
"stateMutability": "nonpayable",
|
|
1223
|
+
"type": "function"
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"inputs": [
|
|
1227
|
+
{
|
|
1228
|
+
"internalType": "bytes20",
|
|
1229
|
+
"name": "walletPubKeyHash",
|
|
1230
|
+
"type": "bytes20"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"components": [
|
|
1234
|
+
{
|
|
1235
|
+
"internalType": "bytes32",
|
|
1236
|
+
"name": "txHash",
|
|
1237
|
+
"type": "bytes32"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"internalType": "uint32",
|
|
1241
|
+
"name": "txOutputIndex",
|
|
1242
|
+
"type": "uint32"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"internalType": "uint64",
|
|
1246
|
+
"name": "txOutputValue",
|
|
1247
|
+
"type": "uint64"
|
|
1248
|
+
}
|
|
1249
|
+
],
|
|
1250
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1251
|
+
"name": "mainUtxo",
|
|
1252
|
+
"type": "tuple"
|
|
1253
|
+
}
|
|
1254
|
+
],
|
|
1255
|
+
"name": "notifyMovingFundsBelowDust",
|
|
1256
|
+
"outputs": [],
|
|
1257
|
+
"stateMutability": "nonpayable",
|
|
1258
|
+
"type": "function"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"inputs": [
|
|
1262
|
+
{
|
|
1263
|
+
"internalType": "bytes20",
|
|
1264
|
+
"name": "walletPubKeyHash",
|
|
1265
|
+
"type": "bytes20"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"internalType": "uint32[]",
|
|
1269
|
+
"name": "walletMembersIDs",
|
|
1270
|
+
"type": "uint32[]"
|
|
1271
|
+
}
|
|
1272
|
+
],
|
|
1273
|
+
"name": "notifyMovingFundsTimeout",
|
|
1274
|
+
"outputs": [],
|
|
1275
|
+
"stateMutability": "nonpayable",
|
|
1276
|
+
"type": "function"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"inputs": [
|
|
1280
|
+
{
|
|
1281
|
+
"internalType": "bytes20",
|
|
1282
|
+
"name": "walletPubKeyHash",
|
|
1283
|
+
"type": "bytes20"
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"internalType": "uint32[]",
|
|
1287
|
+
"name": "walletMembersIDs",
|
|
1288
|
+
"type": "uint32[]"
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"internalType": "bytes",
|
|
1292
|
+
"name": "redeemerOutputScript",
|
|
1293
|
+
"type": "bytes"
|
|
1294
|
+
}
|
|
1295
|
+
],
|
|
1296
|
+
"name": "notifyRedemptionTimeout",
|
|
1297
|
+
"outputs": [],
|
|
1298
|
+
"stateMutability": "nonpayable",
|
|
1299
|
+
"type": "function"
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"inputs": [
|
|
1303
|
+
{
|
|
1304
|
+
"internalType": "bytes20",
|
|
1305
|
+
"name": "walletPubKeyHash",
|
|
1306
|
+
"type": "bytes20"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"components": [
|
|
1310
|
+
{
|
|
1311
|
+
"internalType": "bytes32",
|
|
1312
|
+
"name": "txHash",
|
|
1313
|
+
"type": "bytes32"
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"internalType": "uint32",
|
|
1317
|
+
"name": "txOutputIndex",
|
|
1318
|
+
"type": "uint32"
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"internalType": "uint64",
|
|
1322
|
+
"name": "txOutputValue",
|
|
1323
|
+
"type": "uint64"
|
|
1324
|
+
}
|
|
1325
|
+
],
|
|
1326
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1327
|
+
"name": "walletMainUtxo",
|
|
1328
|
+
"type": "tuple"
|
|
1329
|
+
}
|
|
1330
|
+
],
|
|
1331
|
+
"name": "notifyWalletCloseable",
|
|
1332
|
+
"outputs": [],
|
|
1333
|
+
"stateMutability": "nonpayable",
|
|
1334
|
+
"type": "function"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"inputs": [
|
|
1338
|
+
{
|
|
1339
|
+
"internalType": "bytes20",
|
|
1340
|
+
"name": "walletPubKeyHash",
|
|
1341
|
+
"type": "bytes20"
|
|
1342
|
+
}
|
|
1343
|
+
],
|
|
1344
|
+
"name": "notifyWalletClosingPeriodElapsed",
|
|
1345
|
+
"outputs": [],
|
|
1346
|
+
"stateMutability": "nonpayable",
|
|
1347
|
+
"type": "function"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"inputs": [
|
|
1351
|
+
{
|
|
1352
|
+
"internalType": "uint256",
|
|
1353
|
+
"name": "redemptionKey",
|
|
1354
|
+
"type": "uint256"
|
|
1355
|
+
}
|
|
1356
|
+
],
|
|
1357
|
+
"name": "pendingRedemptions",
|
|
1358
|
+
"outputs": [
|
|
1359
|
+
{
|
|
1360
|
+
"components": [
|
|
1361
|
+
{
|
|
1362
|
+
"internalType": "address",
|
|
1363
|
+
"name": "redeemer",
|
|
1364
|
+
"type": "address"
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"internalType": "uint64",
|
|
1368
|
+
"name": "requestedAmount",
|
|
1369
|
+
"type": "uint64"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"internalType": "uint64",
|
|
1373
|
+
"name": "treasuryFee",
|
|
1374
|
+
"type": "uint64"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"internalType": "uint64",
|
|
1378
|
+
"name": "txMaxFee",
|
|
1379
|
+
"type": "uint64"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"internalType": "uint32",
|
|
1383
|
+
"name": "requestedAt",
|
|
1384
|
+
"type": "uint32"
|
|
1385
|
+
}
|
|
1386
|
+
],
|
|
1387
|
+
"internalType": "struct Redemption.RedemptionRequest",
|
|
1388
|
+
"name": "",
|
|
1389
|
+
"type": "tuple"
|
|
1390
|
+
}
|
|
1391
|
+
],
|
|
1392
|
+
"stateMutability": "view",
|
|
1393
|
+
"type": "function"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"inputs": [
|
|
1397
|
+
{
|
|
1398
|
+
"internalType": "address",
|
|
1399
|
+
"name": "balanceOwner",
|
|
1400
|
+
"type": "address"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"internalType": "uint256",
|
|
1404
|
+
"name": "amount",
|
|
1405
|
+
"type": "uint256"
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"internalType": "bytes",
|
|
1409
|
+
"name": "redemptionData",
|
|
1410
|
+
"type": "bytes"
|
|
1411
|
+
}
|
|
1412
|
+
],
|
|
1413
|
+
"name": "receiveBalanceApproval",
|
|
1414
|
+
"outputs": [],
|
|
1415
|
+
"stateMutability": "nonpayable",
|
|
1416
|
+
"type": "function"
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
"inputs": [],
|
|
1420
|
+
"name": "redemptionParameters",
|
|
1421
|
+
"outputs": [
|
|
1422
|
+
{
|
|
1423
|
+
"internalType": "uint64",
|
|
1424
|
+
"name": "redemptionDustThreshold",
|
|
1425
|
+
"type": "uint64"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"internalType": "uint64",
|
|
1429
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
1430
|
+
"type": "uint64"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"internalType": "uint64",
|
|
1434
|
+
"name": "redemptionTxMaxFee",
|
|
1435
|
+
"type": "uint64"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"internalType": "uint256",
|
|
1439
|
+
"name": "redemptionTimeout",
|
|
1440
|
+
"type": "uint256"
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"internalType": "uint96",
|
|
1444
|
+
"name": "redemptionTimeoutSlashingAmount",
|
|
1445
|
+
"type": "uint96"
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
"internalType": "uint256",
|
|
1449
|
+
"name": "redemptionTimeoutNotifierRewardMultiplier",
|
|
1450
|
+
"type": "uint256"
|
|
1451
|
+
}
|
|
1452
|
+
],
|
|
1453
|
+
"stateMutability": "view",
|
|
1454
|
+
"type": "function"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"inputs": [
|
|
1458
|
+
{
|
|
1459
|
+
"components": [
|
|
1460
|
+
{
|
|
1461
|
+
"internalType": "bytes32",
|
|
1462
|
+
"name": "txHash",
|
|
1463
|
+
"type": "bytes32"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"internalType": "uint32",
|
|
1467
|
+
"name": "txOutputIndex",
|
|
1468
|
+
"type": "uint32"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"internalType": "uint64",
|
|
1472
|
+
"name": "txOutputValue",
|
|
1473
|
+
"type": "uint64"
|
|
1474
|
+
}
|
|
1475
|
+
],
|
|
1476
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1477
|
+
"name": "activeWalletMainUtxo",
|
|
1478
|
+
"type": "tuple"
|
|
1479
|
+
}
|
|
1480
|
+
],
|
|
1481
|
+
"name": "requestNewWallet",
|
|
1482
|
+
"outputs": [],
|
|
1483
|
+
"stateMutability": "nonpayable",
|
|
1484
|
+
"type": "function"
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"inputs": [
|
|
1488
|
+
{
|
|
1489
|
+
"internalType": "bytes20",
|
|
1490
|
+
"name": "walletPubKeyHash",
|
|
1491
|
+
"type": "bytes20"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"components": [
|
|
1495
|
+
{
|
|
1496
|
+
"internalType": "bytes32",
|
|
1497
|
+
"name": "txHash",
|
|
1498
|
+
"type": "bytes32"
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"internalType": "uint32",
|
|
1502
|
+
"name": "txOutputIndex",
|
|
1503
|
+
"type": "uint32"
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"internalType": "uint64",
|
|
1507
|
+
"name": "txOutputValue",
|
|
1508
|
+
"type": "uint64"
|
|
1509
|
+
}
|
|
1510
|
+
],
|
|
1511
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1512
|
+
"name": "mainUtxo",
|
|
1513
|
+
"type": "tuple"
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"internalType": "bytes",
|
|
1517
|
+
"name": "redeemerOutputScript",
|
|
1518
|
+
"type": "bytes"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"internalType": "uint64",
|
|
1522
|
+
"name": "amount",
|
|
1523
|
+
"type": "uint64"
|
|
1524
|
+
}
|
|
1525
|
+
],
|
|
1526
|
+
"name": "requestRedemption",
|
|
1527
|
+
"outputs": [],
|
|
1528
|
+
"stateMutability": "nonpayable",
|
|
1529
|
+
"type": "function"
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
"inputs": [
|
|
1533
|
+
{
|
|
1534
|
+
"internalType": "bytes20",
|
|
1535
|
+
"name": "walletPubKeyHash",
|
|
1536
|
+
"type": "bytes20"
|
|
1537
|
+
}
|
|
1538
|
+
],
|
|
1539
|
+
"name": "resetMovingFundsTimeout",
|
|
1540
|
+
"outputs": [],
|
|
1541
|
+
"stateMutability": "nonpayable",
|
|
1542
|
+
"type": "function"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"inputs": [
|
|
1546
|
+
{
|
|
1547
|
+
"components": [
|
|
1548
|
+
{
|
|
1549
|
+
"internalType": "bytes4",
|
|
1550
|
+
"name": "version",
|
|
1551
|
+
"type": "bytes4"
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"internalType": "bytes",
|
|
1555
|
+
"name": "inputVector",
|
|
1556
|
+
"type": "bytes"
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"internalType": "bytes",
|
|
1560
|
+
"name": "outputVector",
|
|
1561
|
+
"type": "bytes"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"internalType": "bytes4",
|
|
1565
|
+
"name": "locktime",
|
|
1566
|
+
"type": "bytes4"
|
|
1567
|
+
}
|
|
1568
|
+
],
|
|
1569
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1570
|
+
"name": "fundingTx",
|
|
1571
|
+
"type": "tuple"
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"components": [
|
|
1575
|
+
{
|
|
1576
|
+
"internalType": "uint32",
|
|
1577
|
+
"name": "fundingOutputIndex",
|
|
1578
|
+
"type": "uint32"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"internalType": "address",
|
|
1582
|
+
"name": "depositor",
|
|
1583
|
+
"type": "address"
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
"internalType": "bytes8",
|
|
1587
|
+
"name": "blindingFactor",
|
|
1588
|
+
"type": "bytes8"
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"internalType": "bytes20",
|
|
1592
|
+
"name": "walletPubKeyHash",
|
|
1593
|
+
"type": "bytes20"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"internalType": "bytes20",
|
|
1597
|
+
"name": "refundPubKeyHash",
|
|
1598
|
+
"type": "bytes20"
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"internalType": "bytes4",
|
|
1602
|
+
"name": "refundLocktime",
|
|
1603
|
+
"type": "bytes4"
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"internalType": "address",
|
|
1607
|
+
"name": "vault",
|
|
1608
|
+
"type": "address"
|
|
1609
|
+
}
|
|
1610
|
+
],
|
|
1611
|
+
"internalType": "struct Deposit.DepositRevealInfo",
|
|
1612
|
+
"name": "reveal",
|
|
1613
|
+
"type": "tuple"
|
|
1614
|
+
}
|
|
1615
|
+
],
|
|
1616
|
+
"name": "revealDeposit",
|
|
1617
|
+
"outputs": [],
|
|
1618
|
+
"stateMutability": "nonpayable",
|
|
1619
|
+
"type": "function"
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"inputs": [
|
|
1623
|
+
{
|
|
1624
|
+
"internalType": "address",
|
|
1625
|
+
"name": "vault",
|
|
1626
|
+
"type": "address"
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
"internalType": "bool",
|
|
1630
|
+
"name": "isTrusted",
|
|
1631
|
+
"type": "bool"
|
|
1632
|
+
}
|
|
1633
|
+
],
|
|
1634
|
+
"name": "setVaultStatus",
|
|
1635
|
+
"outputs": [],
|
|
1636
|
+
"stateMutability": "nonpayable",
|
|
1637
|
+
"type": "function"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"inputs": [
|
|
1641
|
+
{
|
|
1642
|
+
"internalType": "uint256",
|
|
1643
|
+
"name": "utxoKey",
|
|
1644
|
+
"type": "uint256"
|
|
1645
|
+
}
|
|
1646
|
+
],
|
|
1647
|
+
"name": "spentMainUTXOs",
|
|
1648
|
+
"outputs": [
|
|
1649
|
+
{
|
|
1650
|
+
"internalType": "bool",
|
|
1651
|
+
"name": "",
|
|
1652
|
+
"type": "bool"
|
|
1653
|
+
}
|
|
1654
|
+
],
|
|
1655
|
+
"stateMutability": "view",
|
|
1656
|
+
"type": "function"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"inputs": [
|
|
1660
|
+
{
|
|
1661
|
+
"components": [
|
|
1662
|
+
{
|
|
1663
|
+
"internalType": "bytes4",
|
|
1664
|
+
"name": "version",
|
|
1665
|
+
"type": "bytes4"
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"internalType": "bytes",
|
|
1669
|
+
"name": "inputVector",
|
|
1670
|
+
"type": "bytes"
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"internalType": "bytes",
|
|
1674
|
+
"name": "outputVector",
|
|
1675
|
+
"type": "bytes"
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
"internalType": "bytes4",
|
|
1679
|
+
"name": "locktime",
|
|
1680
|
+
"type": "bytes4"
|
|
1681
|
+
}
|
|
1682
|
+
],
|
|
1683
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1684
|
+
"name": "sweepTx",
|
|
1685
|
+
"type": "tuple"
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
"components": [
|
|
1689
|
+
{
|
|
1690
|
+
"internalType": "bytes",
|
|
1691
|
+
"name": "merkleProof",
|
|
1692
|
+
"type": "bytes"
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
"internalType": "uint256",
|
|
1696
|
+
"name": "txIndexInBlock",
|
|
1697
|
+
"type": "uint256"
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
"internalType": "bytes",
|
|
1701
|
+
"name": "bitcoinHeaders",
|
|
1702
|
+
"type": "bytes"
|
|
1703
|
+
}
|
|
1704
|
+
],
|
|
1705
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
1706
|
+
"name": "sweepProof",
|
|
1707
|
+
"type": "tuple"
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
"components": [
|
|
1711
|
+
{
|
|
1712
|
+
"internalType": "bytes32",
|
|
1713
|
+
"name": "txHash",
|
|
1714
|
+
"type": "bytes32"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"internalType": "uint32",
|
|
1718
|
+
"name": "txOutputIndex",
|
|
1719
|
+
"type": "uint32"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"internalType": "uint64",
|
|
1723
|
+
"name": "txOutputValue",
|
|
1724
|
+
"type": "uint64"
|
|
1725
|
+
}
|
|
1726
|
+
],
|
|
1727
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1728
|
+
"name": "mainUtxo",
|
|
1729
|
+
"type": "tuple"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"internalType": "address",
|
|
1733
|
+
"name": "vault",
|
|
1734
|
+
"type": "address"
|
|
1735
|
+
}
|
|
1736
|
+
],
|
|
1737
|
+
"name": "submitDepositSweepProof",
|
|
1738
|
+
"outputs": [],
|
|
1739
|
+
"stateMutability": "nonpayable",
|
|
1740
|
+
"type": "function"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"inputs": [
|
|
1744
|
+
{
|
|
1745
|
+
"internalType": "bytes",
|
|
1746
|
+
"name": "walletPublicKey",
|
|
1747
|
+
"type": "bytes"
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
"internalType": "bytes",
|
|
1751
|
+
"name": "preimageSha256",
|
|
1752
|
+
"type": "bytes"
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
"components": [
|
|
1756
|
+
{
|
|
1757
|
+
"internalType": "bytes32",
|
|
1758
|
+
"name": "r",
|
|
1759
|
+
"type": "bytes32"
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
"internalType": "bytes32",
|
|
1763
|
+
"name": "s",
|
|
1764
|
+
"type": "bytes32"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"internalType": "uint8",
|
|
1768
|
+
"name": "v",
|
|
1769
|
+
"type": "uint8"
|
|
1770
|
+
}
|
|
1771
|
+
],
|
|
1772
|
+
"internalType": "struct BitcoinTx.RSVSignature",
|
|
1773
|
+
"name": "signature",
|
|
1774
|
+
"type": "tuple"
|
|
1775
|
+
}
|
|
1776
|
+
],
|
|
1777
|
+
"name": "submitFraudChallenge",
|
|
1778
|
+
"outputs": [],
|
|
1779
|
+
"stateMutability": "payable",
|
|
1780
|
+
"type": "function"
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"inputs": [
|
|
1784
|
+
{
|
|
1785
|
+
"components": [
|
|
1786
|
+
{
|
|
1787
|
+
"internalType": "bytes4",
|
|
1788
|
+
"name": "version",
|
|
1789
|
+
"type": "bytes4"
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"internalType": "bytes",
|
|
1793
|
+
"name": "inputVector",
|
|
1794
|
+
"type": "bytes"
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"internalType": "bytes",
|
|
1798
|
+
"name": "outputVector",
|
|
1799
|
+
"type": "bytes"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"internalType": "bytes4",
|
|
1803
|
+
"name": "locktime",
|
|
1804
|
+
"type": "bytes4"
|
|
1805
|
+
}
|
|
1806
|
+
],
|
|
1807
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1808
|
+
"name": "sweepTx",
|
|
1809
|
+
"type": "tuple"
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"components": [
|
|
1813
|
+
{
|
|
1814
|
+
"internalType": "bytes",
|
|
1815
|
+
"name": "merkleProof",
|
|
1816
|
+
"type": "bytes"
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"internalType": "uint256",
|
|
1820
|
+
"name": "txIndexInBlock",
|
|
1821
|
+
"type": "uint256"
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
"internalType": "bytes",
|
|
1825
|
+
"name": "bitcoinHeaders",
|
|
1826
|
+
"type": "bytes"
|
|
1827
|
+
}
|
|
1828
|
+
],
|
|
1829
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
1830
|
+
"name": "sweepProof",
|
|
1831
|
+
"type": "tuple"
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"components": [
|
|
1835
|
+
{
|
|
1836
|
+
"internalType": "bytes32",
|
|
1837
|
+
"name": "txHash",
|
|
1838
|
+
"type": "bytes32"
|
|
1839
|
+
},
|
|
1840
|
+
{
|
|
1841
|
+
"internalType": "uint32",
|
|
1842
|
+
"name": "txOutputIndex",
|
|
1843
|
+
"type": "uint32"
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"internalType": "uint64",
|
|
1847
|
+
"name": "txOutputValue",
|
|
1848
|
+
"type": "uint64"
|
|
1849
|
+
}
|
|
1850
|
+
],
|
|
1851
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1852
|
+
"name": "mainUtxo",
|
|
1853
|
+
"type": "tuple"
|
|
1854
|
+
}
|
|
1855
|
+
],
|
|
1856
|
+
"name": "submitMovedFundsSweepProof",
|
|
1857
|
+
"outputs": [],
|
|
1858
|
+
"stateMutability": "nonpayable",
|
|
1859
|
+
"type": "function"
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"inputs": [
|
|
1863
|
+
{
|
|
1864
|
+
"internalType": "bytes20",
|
|
1865
|
+
"name": "walletPubKeyHash",
|
|
1866
|
+
"type": "bytes20"
|
|
1867
|
+
},
|
|
1868
|
+
{
|
|
1869
|
+
"components": [
|
|
1870
|
+
{
|
|
1871
|
+
"internalType": "bytes32",
|
|
1872
|
+
"name": "txHash",
|
|
1873
|
+
"type": "bytes32"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"internalType": "uint32",
|
|
1877
|
+
"name": "txOutputIndex",
|
|
1878
|
+
"type": "uint32"
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
"internalType": "uint64",
|
|
1882
|
+
"name": "txOutputValue",
|
|
1883
|
+
"type": "uint64"
|
|
1884
|
+
}
|
|
1885
|
+
],
|
|
1886
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1887
|
+
"name": "walletMainUtxo",
|
|
1888
|
+
"type": "tuple"
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"internalType": "uint32[]",
|
|
1892
|
+
"name": "walletMembersIDs",
|
|
1893
|
+
"type": "uint32[]"
|
|
1894
|
+
},
|
|
1895
|
+
{
|
|
1896
|
+
"internalType": "uint256",
|
|
1897
|
+
"name": "walletMemberIndex",
|
|
1898
|
+
"type": "uint256"
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"internalType": "bytes20[]",
|
|
1902
|
+
"name": "targetWallets",
|
|
1903
|
+
"type": "bytes20[]"
|
|
1904
|
+
}
|
|
1905
|
+
],
|
|
1906
|
+
"name": "submitMovingFundsCommitment",
|
|
1907
|
+
"outputs": [],
|
|
1908
|
+
"stateMutability": "nonpayable",
|
|
1909
|
+
"type": "function"
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"inputs": [
|
|
1913
|
+
{
|
|
1914
|
+
"components": [
|
|
1915
|
+
{
|
|
1916
|
+
"internalType": "bytes4",
|
|
1917
|
+
"name": "version",
|
|
1918
|
+
"type": "bytes4"
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
"internalType": "bytes",
|
|
1922
|
+
"name": "inputVector",
|
|
1923
|
+
"type": "bytes"
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"internalType": "bytes",
|
|
1927
|
+
"name": "outputVector",
|
|
1928
|
+
"type": "bytes"
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"internalType": "bytes4",
|
|
1932
|
+
"name": "locktime",
|
|
1933
|
+
"type": "bytes4"
|
|
1934
|
+
}
|
|
1935
|
+
],
|
|
1936
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1937
|
+
"name": "movingFundsTx",
|
|
1938
|
+
"type": "tuple"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"components": [
|
|
1942
|
+
{
|
|
1943
|
+
"internalType": "bytes",
|
|
1944
|
+
"name": "merkleProof",
|
|
1945
|
+
"type": "bytes"
|
|
1946
|
+
},
|
|
1947
|
+
{
|
|
1948
|
+
"internalType": "uint256",
|
|
1949
|
+
"name": "txIndexInBlock",
|
|
1950
|
+
"type": "uint256"
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"internalType": "bytes",
|
|
1954
|
+
"name": "bitcoinHeaders",
|
|
1955
|
+
"type": "bytes"
|
|
1956
|
+
}
|
|
1957
|
+
],
|
|
1958
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
1959
|
+
"name": "movingFundsProof",
|
|
1960
|
+
"type": "tuple"
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"components": [
|
|
1964
|
+
{
|
|
1965
|
+
"internalType": "bytes32",
|
|
1966
|
+
"name": "txHash",
|
|
1967
|
+
"type": "bytes32"
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
"internalType": "uint32",
|
|
1971
|
+
"name": "txOutputIndex",
|
|
1972
|
+
"type": "uint32"
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"internalType": "uint64",
|
|
1976
|
+
"name": "txOutputValue",
|
|
1977
|
+
"type": "uint64"
|
|
1978
|
+
}
|
|
1979
|
+
],
|
|
1980
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1981
|
+
"name": "mainUtxo",
|
|
1982
|
+
"type": "tuple"
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"internalType": "bytes20",
|
|
1986
|
+
"name": "walletPubKeyHash",
|
|
1987
|
+
"type": "bytes20"
|
|
1988
|
+
}
|
|
1989
|
+
],
|
|
1990
|
+
"name": "submitMovingFundsProof",
|
|
1991
|
+
"outputs": [],
|
|
1992
|
+
"stateMutability": "nonpayable",
|
|
1993
|
+
"type": "function"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"inputs": [
|
|
1997
|
+
{
|
|
1998
|
+
"components": [
|
|
1999
|
+
{
|
|
2000
|
+
"internalType": "bytes4",
|
|
2001
|
+
"name": "version",
|
|
2002
|
+
"type": "bytes4"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"internalType": "bytes",
|
|
2006
|
+
"name": "inputVector",
|
|
2007
|
+
"type": "bytes"
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"internalType": "bytes",
|
|
2011
|
+
"name": "outputVector",
|
|
2012
|
+
"type": "bytes"
|
|
2013
|
+
},
|
|
2014
|
+
{
|
|
2015
|
+
"internalType": "bytes4",
|
|
2016
|
+
"name": "locktime",
|
|
2017
|
+
"type": "bytes4"
|
|
2018
|
+
}
|
|
2019
|
+
],
|
|
2020
|
+
"internalType": "struct BitcoinTx.Info",
|
|
2021
|
+
"name": "redemptionTx",
|
|
2022
|
+
"type": "tuple"
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
"components": [
|
|
2026
|
+
{
|
|
2027
|
+
"internalType": "bytes",
|
|
2028
|
+
"name": "merkleProof",
|
|
2029
|
+
"type": "bytes"
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"internalType": "uint256",
|
|
2033
|
+
"name": "txIndexInBlock",
|
|
2034
|
+
"type": "uint256"
|
|
2035
|
+
},
|
|
2036
|
+
{
|
|
2037
|
+
"internalType": "bytes",
|
|
2038
|
+
"name": "bitcoinHeaders",
|
|
2039
|
+
"type": "bytes"
|
|
2040
|
+
}
|
|
2041
|
+
],
|
|
2042
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
2043
|
+
"name": "redemptionProof",
|
|
2044
|
+
"type": "tuple"
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
"components": [
|
|
2048
|
+
{
|
|
2049
|
+
"internalType": "bytes32",
|
|
2050
|
+
"name": "txHash",
|
|
2051
|
+
"type": "bytes32"
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"internalType": "uint32",
|
|
2055
|
+
"name": "txOutputIndex",
|
|
2056
|
+
"type": "uint32"
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
"internalType": "uint64",
|
|
2060
|
+
"name": "txOutputValue",
|
|
2061
|
+
"type": "uint64"
|
|
2062
|
+
}
|
|
2063
|
+
],
|
|
2064
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
2065
|
+
"name": "mainUtxo",
|
|
2066
|
+
"type": "tuple"
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
"internalType": "bytes20",
|
|
2070
|
+
"name": "walletPubKeyHash",
|
|
2071
|
+
"type": "bytes20"
|
|
2072
|
+
}
|
|
2073
|
+
],
|
|
2074
|
+
"name": "submitRedemptionProof",
|
|
2075
|
+
"outputs": [],
|
|
2076
|
+
"stateMutability": "nonpayable",
|
|
2077
|
+
"type": "function"
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
"inputs": [
|
|
2081
|
+
{
|
|
2082
|
+
"internalType": "uint256",
|
|
2083
|
+
"name": "redemptionKey",
|
|
2084
|
+
"type": "uint256"
|
|
2085
|
+
}
|
|
2086
|
+
],
|
|
2087
|
+
"name": "timedOutRedemptions",
|
|
2088
|
+
"outputs": [
|
|
2089
|
+
{
|
|
2090
|
+
"components": [
|
|
2091
|
+
{
|
|
2092
|
+
"internalType": "address",
|
|
2093
|
+
"name": "redeemer",
|
|
2094
|
+
"type": "address"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"internalType": "uint64",
|
|
2098
|
+
"name": "requestedAmount",
|
|
2099
|
+
"type": "uint64"
|
|
2100
|
+
},
|
|
2101
|
+
{
|
|
2102
|
+
"internalType": "uint64",
|
|
2103
|
+
"name": "treasuryFee",
|
|
2104
|
+
"type": "uint64"
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"internalType": "uint64",
|
|
2108
|
+
"name": "txMaxFee",
|
|
2109
|
+
"type": "uint64"
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"internalType": "uint32",
|
|
2113
|
+
"name": "requestedAt",
|
|
2114
|
+
"type": "uint32"
|
|
2115
|
+
}
|
|
2116
|
+
],
|
|
2117
|
+
"internalType": "struct Redemption.RedemptionRequest",
|
|
2118
|
+
"name": "",
|
|
2119
|
+
"type": "tuple"
|
|
2120
|
+
}
|
|
2121
|
+
],
|
|
2122
|
+
"stateMutability": "view",
|
|
2123
|
+
"type": "function"
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
"inputs": [
|
|
2127
|
+
{
|
|
2128
|
+
"internalType": "address",
|
|
2129
|
+
"name": "newGovernance",
|
|
2130
|
+
"type": "address"
|
|
2131
|
+
}
|
|
2132
|
+
],
|
|
2133
|
+
"name": "transferGovernance",
|
|
2134
|
+
"outputs": [],
|
|
2135
|
+
"stateMutability": "nonpayable",
|
|
2136
|
+
"type": "function"
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"inputs": [],
|
|
2140
|
+
"name": "treasury",
|
|
2141
|
+
"outputs": [
|
|
2142
|
+
{
|
|
2143
|
+
"internalType": "address",
|
|
2144
|
+
"name": "",
|
|
2145
|
+
"type": "address"
|
|
2146
|
+
}
|
|
2147
|
+
],
|
|
2148
|
+
"stateMutability": "view",
|
|
2149
|
+
"type": "function"
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
"inputs": [],
|
|
2153
|
+
"name": "txProofDifficultyFactor",
|
|
2154
|
+
"outputs": [
|
|
2155
|
+
{
|
|
2156
|
+
"internalType": "uint256",
|
|
2157
|
+
"name": "",
|
|
2158
|
+
"type": "uint256"
|
|
2159
|
+
}
|
|
2160
|
+
],
|
|
2161
|
+
"stateMutability": "view",
|
|
2162
|
+
"type": "function"
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
"inputs": [
|
|
2166
|
+
{
|
|
2167
|
+
"internalType": "uint64",
|
|
2168
|
+
"name": "depositDustThreshold",
|
|
2169
|
+
"type": "uint64"
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
"internalType": "uint64",
|
|
2173
|
+
"name": "depositTreasuryFeeDivisor",
|
|
2174
|
+
"type": "uint64"
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
"internalType": "uint64",
|
|
2178
|
+
"name": "depositTxMaxFee",
|
|
2179
|
+
"type": "uint64"
|
|
2180
|
+
}
|
|
2181
|
+
],
|
|
2182
|
+
"name": "updateDepositParameters",
|
|
2183
|
+
"outputs": [],
|
|
2184
|
+
"stateMutability": "nonpayable",
|
|
2185
|
+
"type": "function"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"inputs": [
|
|
2189
|
+
{
|
|
2190
|
+
"internalType": "uint256",
|
|
2191
|
+
"name": "fraudChallengeDepositAmount",
|
|
2192
|
+
"type": "uint256"
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
"internalType": "uint256",
|
|
2196
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
2197
|
+
"type": "uint256"
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"internalType": "uint96",
|
|
2201
|
+
"name": "fraudSlashingAmount",
|
|
2202
|
+
"type": "uint96"
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"internalType": "uint256",
|
|
2206
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
2207
|
+
"type": "uint256"
|
|
2208
|
+
}
|
|
2209
|
+
],
|
|
2210
|
+
"name": "updateFraudParameters",
|
|
2211
|
+
"outputs": [],
|
|
2212
|
+
"stateMutability": "nonpayable",
|
|
2213
|
+
"type": "function"
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"inputs": [
|
|
2217
|
+
{
|
|
2218
|
+
"internalType": "uint64",
|
|
2219
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
2220
|
+
"type": "uint64"
|
|
2221
|
+
},
|
|
2222
|
+
{
|
|
2223
|
+
"internalType": "uint64",
|
|
2224
|
+
"name": "movingFundsDustThreshold",
|
|
2225
|
+
"type": "uint64"
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"internalType": "uint32",
|
|
2229
|
+
"name": "movingFundsTimeoutResetDelay",
|
|
2230
|
+
"type": "uint32"
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
"internalType": "uint32",
|
|
2234
|
+
"name": "movingFundsTimeout",
|
|
2235
|
+
"type": "uint32"
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"internalType": "uint96",
|
|
2239
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
2240
|
+
"type": "uint96"
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
"internalType": "uint256",
|
|
2244
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
2245
|
+
"type": "uint256"
|
|
2246
|
+
},
|
|
2247
|
+
{
|
|
2248
|
+
"internalType": "uint64",
|
|
2249
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
2250
|
+
"type": "uint64"
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
"internalType": "uint32",
|
|
2254
|
+
"name": "movedFundsSweepTimeout",
|
|
2255
|
+
"type": "uint32"
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"internalType": "uint96",
|
|
2259
|
+
"name": "movedFundsSweepTimeoutSlashingAmount",
|
|
2260
|
+
"type": "uint96"
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
"internalType": "uint256",
|
|
2264
|
+
"name": "movedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
2265
|
+
"type": "uint256"
|
|
2266
|
+
}
|
|
2267
|
+
],
|
|
2268
|
+
"name": "updateMovingFundsParameters",
|
|
2269
|
+
"outputs": [],
|
|
2270
|
+
"stateMutability": "nonpayable",
|
|
2271
|
+
"type": "function"
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"inputs": [
|
|
2275
|
+
{
|
|
2276
|
+
"internalType": "uint64",
|
|
2277
|
+
"name": "redemptionDustThreshold",
|
|
2278
|
+
"type": "uint64"
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"internalType": "uint64",
|
|
2282
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
2283
|
+
"type": "uint64"
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"internalType": "uint64",
|
|
2287
|
+
"name": "redemptionTxMaxFee",
|
|
2288
|
+
"type": "uint64"
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
"internalType": "uint256",
|
|
2292
|
+
"name": "redemptionTimeout",
|
|
2293
|
+
"type": "uint256"
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"internalType": "uint96",
|
|
2297
|
+
"name": "redemptionTimeoutSlashingAmount",
|
|
2298
|
+
"type": "uint96"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"internalType": "uint256",
|
|
2302
|
+
"name": "redemptionTimeoutNotifierRewardMultiplier",
|
|
2303
|
+
"type": "uint256"
|
|
2304
|
+
}
|
|
2305
|
+
],
|
|
2306
|
+
"name": "updateRedemptionParameters",
|
|
2307
|
+
"outputs": [],
|
|
2308
|
+
"stateMutability": "nonpayable",
|
|
2309
|
+
"type": "function"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"inputs": [
|
|
2313
|
+
{
|
|
2314
|
+
"internalType": "uint32",
|
|
2315
|
+
"name": "walletCreationPeriod",
|
|
2316
|
+
"type": "uint32"
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
"internalType": "uint64",
|
|
2320
|
+
"name": "walletCreationMinBtcBalance",
|
|
2321
|
+
"type": "uint64"
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"internalType": "uint64",
|
|
2325
|
+
"name": "walletCreationMaxBtcBalance",
|
|
2326
|
+
"type": "uint64"
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"internalType": "uint64",
|
|
2330
|
+
"name": "walletClosureMinBtcBalance",
|
|
2331
|
+
"type": "uint64"
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
"internalType": "uint32",
|
|
2335
|
+
"name": "walletMaxAge",
|
|
2336
|
+
"type": "uint32"
|
|
2337
|
+
},
|
|
2338
|
+
{
|
|
2339
|
+
"internalType": "uint64",
|
|
2340
|
+
"name": "walletMaxBtcTransfer",
|
|
2341
|
+
"type": "uint64"
|
|
2342
|
+
},
|
|
2343
|
+
{
|
|
2344
|
+
"internalType": "uint32",
|
|
2345
|
+
"name": "walletClosingPeriod",
|
|
2346
|
+
"type": "uint32"
|
|
2347
|
+
}
|
|
2348
|
+
],
|
|
2349
|
+
"name": "updateWalletParameters",
|
|
2350
|
+
"outputs": [],
|
|
2351
|
+
"stateMutability": "nonpayable",
|
|
2352
|
+
"type": "function"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
"inputs": [],
|
|
2356
|
+
"name": "walletParameters",
|
|
2357
|
+
"outputs": [
|
|
2358
|
+
{
|
|
2359
|
+
"internalType": "uint32",
|
|
2360
|
+
"name": "walletCreationPeriod",
|
|
2361
|
+
"type": "uint32"
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"internalType": "uint64",
|
|
2365
|
+
"name": "walletCreationMinBtcBalance",
|
|
2366
|
+
"type": "uint64"
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"internalType": "uint64",
|
|
2370
|
+
"name": "walletCreationMaxBtcBalance",
|
|
2371
|
+
"type": "uint64"
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"internalType": "uint64",
|
|
2375
|
+
"name": "walletClosureMinBtcBalance",
|
|
2376
|
+
"type": "uint64"
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
"internalType": "uint32",
|
|
2380
|
+
"name": "walletMaxAge",
|
|
2381
|
+
"type": "uint32"
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"internalType": "uint64",
|
|
2385
|
+
"name": "walletMaxBtcTransfer",
|
|
2386
|
+
"type": "uint64"
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
"internalType": "uint32",
|
|
2390
|
+
"name": "walletClosingPeriod",
|
|
2391
|
+
"type": "uint32"
|
|
2392
|
+
}
|
|
2393
|
+
],
|
|
2394
|
+
"stateMutability": "view",
|
|
2395
|
+
"type": "function"
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
"inputs": [
|
|
2399
|
+
{
|
|
2400
|
+
"internalType": "bytes20",
|
|
2401
|
+
"name": "walletPubKeyHash",
|
|
2402
|
+
"type": "bytes20"
|
|
2403
|
+
}
|
|
2404
|
+
],
|
|
2405
|
+
"name": "wallets",
|
|
2406
|
+
"outputs": [
|
|
2407
|
+
{
|
|
2408
|
+
"components": [
|
|
2409
|
+
{
|
|
2410
|
+
"internalType": "bytes32",
|
|
2411
|
+
"name": "ecdsaWalletID",
|
|
2412
|
+
"type": "bytes32"
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"internalType": "bytes32",
|
|
2416
|
+
"name": "mainUtxoHash",
|
|
2417
|
+
"type": "bytes32"
|
|
2418
|
+
},
|
|
2419
|
+
{
|
|
2420
|
+
"internalType": "uint64",
|
|
2421
|
+
"name": "pendingRedemptionsValue",
|
|
2422
|
+
"type": "uint64"
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"internalType": "uint32",
|
|
2426
|
+
"name": "createdAt",
|
|
2427
|
+
"type": "uint32"
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"internalType": "uint32",
|
|
2431
|
+
"name": "movingFundsRequestedAt",
|
|
2432
|
+
"type": "uint32"
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
"internalType": "uint32",
|
|
2436
|
+
"name": "closingStartedAt",
|
|
2437
|
+
"type": "uint32"
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"internalType": "uint32",
|
|
2441
|
+
"name": "pendingMovedFundsSweepRequestsCount",
|
|
2442
|
+
"type": "uint32"
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
"internalType": "enum Wallets.WalletState",
|
|
2446
|
+
"name": "state",
|
|
2447
|
+
"type": "uint8"
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
"internalType": "bytes32",
|
|
2451
|
+
"name": "movingFundsTargetWalletsCommitmentHash",
|
|
2452
|
+
"type": "bytes32"
|
|
2453
|
+
}
|
|
2454
|
+
],
|
|
2455
|
+
"internalType": "struct Wallets.Wallet",
|
|
2456
|
+
"name": "",
|
|
2457
|
+
"type": "tuple"
|
|
2458
|
+
}
|
|
2459
|
+
],
|
|
2460
|
+
"stateMutability": "view",
|
|
2461
|
+
"type": "function"
|
|
2462
|
+
}
|
|
2463
|
+
],
|
|
2464
|
+
"bytecode": "0x608060405234801561001057600080fd5b50614c55806100206000396000f3fe60806040526004361061031e5760003560e01c8063883d6a11116101a5578063b7d372a4116100ec578063ded1d24a11610095578063e65e19d51161006f578063e65e19d514610e93578063ee1dd3ea14610ec0578063f18cf1b114610ee0578063f7013ef614610f0d57600080fd5b8063ded1d24a14610e0e578063e44bdd3114610e3a578063e53c0b5514610e5a57600080fd5b8063c8b5d2db116100c6578063c8b5d2db14610dae578063d38bfff414610dce578063d6eccdf014610dee57600080fd5b8063b7d372a414610c8d578063be05abe314610cad578063c42b64d014610d6357600080fd5b8063abaeed8f1161014e578063b216bd3511610128578063b216bd3514610c2d578063b29a604b14610c4d578063b34b321614610c6d57600080fd5b8063abaeed8f14610a8b578063b02c43d014610aab578063b2146cd614610bed57600080fd5b8063a145e2d51161017f578063a145e2d514610a0b578063a8fa0f4214610a2b578063a9de2f3a14610a4b57600080fd5b8063883d6a11146109ab57806392238f32146109cb5780639c49c418146109eb57600080fd5b8063475d05701161026957806361d027b31161021257806375b922d1116101ec57806375b922d11461092457806377145f211461096b57806379fc4eb31461098b57600080fd5b806361d027b314610861578063685ce1b11461087f5780636e70ce411461089257600080fd5b80635c0b4812116102435780635c0b48121461079157806360d712fc146107b157806361ccf97a146107d157600080fd5b8063475d05701461071957806350aea15a146107395780635aa6e6751461075957600080fd5b806324028c11116102cb57806331a4889a116102a557806331a4889a146105fa57806333e957cb1461061a5780633dce9812146106f957600080fd5b806324028c111461058a5780632bb818c2146105bc5780632f429b64146105da57600080fd5b80630b6ba19d116102fc5780630b6ba19d1461048d578063133cafc81461054a57806317c964001461056a57600080fd5b806303d952f7146103235780630674f2661461044b57806307f7d2231461046d575b600080fd5b34801561032f57600080fd5b506103e061033e366004613803565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260456020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b90046001600160401b039081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516104429190600060a0820190506001600160a01b03835116825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561045757600080fd5b5061046b610466366004613864565b610f2d565b005b34801561047957600080fd5b5061046b6104883660046138ff565b610fbc565b34801561049957600080fd5b506103e06104a8366004613803565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260466020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b90046001600160401b039081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b34801561055657600080fd5b5061046b61056536600461395c565b611045565b34801561057657600080fd5b5061046b6105853660046139f8565b61109e565b34801561059657600080fd5b50604e54600160a01b900463ffffffff1660405163ffffffff9091168152602001610442565b3480156105c857600080fd5b50603654604051908152602001610442565b3480156105e657600080fd5b5061046b6105f5366004613a3b565b61110f565b34801561060657600080fd5b5061046b610615366004613af9565b611166565b34801561062657600080fd5b506106b5610635366004613803565b604080516080810182526000808252602082018190529181018290526060810191909152506000908152604b6020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610442919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561070557600080fd5b5061046b610714366004613b79565b6111f8565b34801561072557600080fd5b5061046b610734366004613ba5565b611288565b34801561074557600080fd5b5061046b610754366004613c06565b61132a565b34801561076557600080fd5b50600054610779906001600160a01b031681565b6040516001600160a01b039091168152602001610442565b34801561079d57600080fd5b5061046b6107ac366004613c53565b611383565b3480156107bd57600080fd5b5061046b6107cc366004613cbd565b6113d8565b3480156107dd57600080fd5b50604d54604e54604f546040805163ffffffff80861682526001600160401b036401000000008704811660208401526c010000000000000000000000008704811693830193909352600160a01b860483166060830152600160e01b90950485166080820152600160c01b9093041660a08301529190911660c082015260e001610442565b34801561086d57600080fd5b506037546001600160a01b0316610779565b61046b61088d366004613d89565b611491565b34801561089e57600080fd5b506108dd6041546042546043546044546001600160401b0380851695600160401b8604821695600160801b900490911693926001600160601b03169190565b604080516001600160401b0397881681529587166020870152939095169284019290925260608301526001600160601b0316608082015260a081019190915260c001610442565b34801561093057600080fd5b50604754604854604954604a546040805194855260208501939093526001600160601b03909116918301919091526060820152608001610442565b34801561097757600080fd5b5061046b610986366004613df8565b6114ea565b34801561099757600080fd5b5061046b6109a6366004613e78565b611545565b3480156109b757600080fd5b5061046b6109c6366004613f0b565b6115a0565b3480156109d757600080fd5b5061046b6109e6366004613f91565b61160b565b3480156109f757600080fd5b5061046b610a06366004613ffa565b611662565b348015610a1757600080fd5b5061046b610a263660046140a6565b6116dc565b348015610a3757600080fd5b5061046b610a46366004613b79565b611762565b348015610a5757600080fd5b50603354603454603554604080516001600160a01b0394851681529284166020840152921691810191909152606001610442565b348015610a9757600080fd5b5061046b610aa63660046140c9565b6117c8565b348015610ab757600080fd5b50610b78610ac6366004613803565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260396020908152604091829020825160c08101845281546001600160a01b0380821683526001600160401b03600160a01b80840482169685019690965263ffffffff600160e01b9384900481169785019790975260019094015490811660608401529384049092166080820152910490911660a082015290565b6040516104429190600060c0820190506001600160a01b0380845116835260208401516001600160401b0380821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610bf957600080fd5b50610c1d610c08366004613803565b6000908152604c602052604090205460ff1690565b6040519015158152602001610442565b348015610c3957600080fd5b5061046b610c48366004614164565b611860565b348015610c5957600080fd5b5061046b610c683660046141ca565b6118ca565b348015610c7957600080fd5b5061046b610c88366004613a3b565b611938565b348015610c9957600080fd5b5061046b610ca8366004614207565b611991565b348015610cb957600080fd5b50603b54603c54603d54603e54603f54604080516001600160401b038088168252600160401b8089048216602084015263ffffffff600160801b8a04811694840194909452600160a01b909804831660608301526001600160601b03968716608083015260a082019590955293831660c085015294820490941660e08301526c01000000000000000000000000900490911661010082015261012081019190915261014001610442565b348015610d6f57600080fd5b5060375460385460408051600160a01b9093046001600160401b0390811684528083166020850152600160401b90920490911690820152606001610442565b348015610dba57600080fd5b5061046b610dc9366004614272565b6119e8565b348015610dda57600080fd5b5061046b610de936600461428d565b6119f6565b348015610dfa57600080fd5b5061046b610e093660046142a8565b611ad5565b348015610e1a57600080fd5b50604e5460601b6040516001600160601b03199091168152602001610442565b348015610e4657600080fd5b5061046b610e553660046138ff565b611b32565b348015610e6657600080fd5b50610c1d610e7536600461428d565b6001600160a01b03166000908152603a602052604090205460ff1690565b348015610e9f57600080fd5b50610eb3610eae366004614272565b611b87565b604051610442919061433c565b348015610ecc57600080fd5b5061046b610edb366004614272565b611caa565b348015610eec57600080fd5b50610f00610efb366004613803565b611d0b565b60405161044291906143e0565b348015610f1957600080fd5b5061046b610f28366004614438565b611dc4565b6040517f94fcaf8d00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906394fcaf8d90610f869060339088908890889088906004016144bd565b60006040518083038186803b158015610f9e57600080fd5b505af4158015610fb2573d6000803e3d6000fd5b5050505050505050565b6040517f260b6cde00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063260b6cde90611011906033908690869060040161452f565b60006040518083038186803b15801561102957600080fd5b505af415801561103d573d6000803e3d6000fd5b505050505050565b6040517fd22cd45b00000000000000000000000000000000000000000000000000000000815273__$24f7e155a6d011c1bf9032506ba9b1954c$__9063d22cd45b90610f8690603390889088908890889060040161468c565b6000546001600160a01b031633146110fd5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064015b60405180910390fd5b61110a60338484846121df565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610f869060339088908890889088906004016146e0565b6040517fa76558b300000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a76558b3906111c19060339089908990899089908990600401614779565b60006040518083038186803b1580156111d957600080fd5b505af41580156111ed573d6000803e3d6000fd5b505050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260336004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b15801561126b57600080fd5b505af415801561127f573d6000803e3d6000fd5b50505050505050565b6033546001600160a01b031633146112e25760405162461bcd60e51b815260206004820152601660248201527f43616c6c6572206973206e6f74207468652062616e6b0000000000000000000060448201526064016110f4565b73__$9935b6ea18e0c526c293569ddd26842c9b$__63d253980860338661130887612412565b86866040518663ffffffff1660e01b8152600401610f869594939291906147c3565b6040517f899bef9d00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063899bef9d90610f86906033908890889088908890600401614806565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b906110119060339086908690600401614832565b6000546001600160a01b031633146114325760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b6001600160a01b0382166000818152603a6020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517feb8fdd5d00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063eb8fdd5d90610f8690603390889088908890889060040161498c565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906111c190603390899089908990899089906004016149f3565b6040517f80ffe94a00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906380ffe94a906111c19060339089908990899089908990600401614a36565b6000546001600160a01b031633146115fa5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b61127f603388888888888888612495565b6040517f07f96c4200000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906307f96c429061125390603390879087908790600401614a77565b6000546001600160a01b031633146116bc5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b6116d060338b8b8b8b8b8b8b8b8b8b612858565b50505050505050505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb19061172f906033908590600401614aa1565b60006040518083038186803b15801561174757600080fd5b505af415801561175b573d6000803e3d6000fd5b5050505050565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526033600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401611253565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f7794390611827906033908b908b908b908b908b908b908b90600401614ab5565b60006040518083038186803b15801561183f57600080fd5b505af4158015611853573d6000803e3d6000fd5b5050505050505050505050565b6000546001600160a01b031633146118ba5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b61103d6033878787878787612ef5565b6000546001600160a01b031633146119245760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b6119326033858585856132ae565b50505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610f869060339088908890889088906004016146e0565b6040517fb79a972500000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063b79a97259061125390603390879087908790600401614b40565b6119f3603382613420565b50565b6000546001600160a01b03163314611a505760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b6001600160a01b038116611acc5760405162461bcd60e51b815260206004820152602260248201527f4e657720676f7665726e616e636520697320746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016110f4565b6119f381613552565b6040517ff5ada44200000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063f5ada442906111c1906033908990899033908a908a908a90600401614b84565b6040517f3af3b15400000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__90633af3b15490611011906033908690869060040161452f565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101919091526001600160601b031982166000908152605060209081526040918290208251610120810184528154815260018201549281019290925260028101546001600160401b0381169383019390935263ffffffff600160401b8404811660608401526c01000000000000000000000000840481166080840152600160801b8404811660a0840152600160a01b84041660c0830152909160e083019060ff600160c01b909104166005811115611c8457611c84614312565b6005811115611c9557611c95614312565b81526020016003820154815250509050919050565b6040517f9b69e71d000000000000000000000000000000000000000000000000000000008152603360048201526001600160601b03198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__90639b69e71d9060440161172f565b611d336040805160808101825260008082526020820181905291810182905290606082015290565b6000828152604060208181529181902081516080810183528154606081811b6001600160601b0319168352600160a01b82046001600160401b031695830195909552600160e01b900463ffffffff16928101929092526001810154919290919083019060ff166003811115611daa57611daa614312565b6003811115611dbb57611dbb614312565b90525092915050565b6000611dd060016135c0565b90508015611de8576032805461ff0019166101001790555b6001600160a01b038616611e3e5760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064016110f4565b6033805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03888116919091179091558516611eb95760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f0000000060448201526064016110f4565b6034805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03878116919091179091558316611f5a5760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201527f6e6e6f74206265207a65726f000000000000000000000000000000000000000060648201526084016110f4565b6035805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03858116919091179091558416611fd55760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f0060448201526064016110f4565b6037805460368490556001600160a01b0386166001600160e01b031990911617760f42400000000000000000000000000000000000000000179055603880546fffffffffffffffffffffffffffffffff191669271000000000000007d01790556041805477ffffffffffffffffffffffffffffffffffffffffffffffff1990811671271000000000000007d000000000000f4240179091556202a3006042556043805469021e19e0c9bab24000006001600160601b0319918216811790925560646044819055603b8054851676093a800007e9000000000000004e200000000000002710179055603c8054831684179055603d819055603e805490941675021e19e0c9bab240000000093a80000000000000271017909355603f839055671bc16d674ec8000060475562093a80604855604980549091169091179055604a557eeff1000000000002faf08000000002540be4000000000005f5e10000093a80604d55604e805477ffffffffffffffffffffffffffffffffffffffffffffffff167b3b9aca00000000000000000000000000000000000000000000000000179055604f80546234bc0063ffffffff1990911617905561219233613552565b801561103d576032805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050505050565b6000836001600160401b03161161225e5760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f0000000000000000000000000000000060648201526084016110f4565b6000826001600160401b0316116122dd5760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f0000000000000000000060648201526084016110f4565b6000816001600160401b03161161235c5760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f000000000000000000000060648201526084016110f4565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b6001600160401b03868116918202929092179092556005860180548583166fffffffffffffffffffffffffffffffff199091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b60006001600160401b038211156124915760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203660448201527f342062697473000000000000000000000000000000000000000000000000000060648201526084016110f4565b5090565b856001600160401b0316856001600160401b0316116125425760405162461bcd60e51b815260206004820152605960248201527f57616c6c6574206372656174696f6e206d6178696d756d204254432062616c6160448201527f6e6365206d7573742062652067726561746572207468616e207468652063726560648201527f6174696f6e206d696e696d756d204254432062616c616e636500000000000000608482015260a4016110f4565b6000846001600160401b0316116125c15760405162461bcd60e51b815260206004820152603c60248201527f57616c6c657420636c6f73757265206d696e696d756d204254432062616c616e60448201527f6365206d7573742062652067726561746572207468616e207a65726f0000000060648201526084016110f4565b6000826001600160401b0316116126405760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f000000000000000000000060648201526084016110f4565b60008163ffffffff16116126bc5760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f000000000000000000000000000000000060648201526084016110f4565b8688601a0160006101000a81548163ffffffff021916908363ffffffff1602179055508588601a0160046101000a8154816001600160401b0302191690836001600160401b031602179055508488601a01600c6101000a8154816001600160401b0302191690836001600160401b031602179055508388601a0160146101000a8154816001600160401b0302191690836001600160401b031602179055508288601a01601c6101000a81548163ffffffff021916908363ffffffff1602179055508188601b0160186101000a8154816001600160401b0302191690836001600160401b031602179055508088601c0160006101000a81548163ffffffff021916908363ffffffff1602179055507fc7d3a9af08692aeae771c329fddd95c7237a9f76fec996325f3959eeff07d4ac87878787878787604051612846979695949392919063ffffffff97881681526001600160401b03968716602082015294861660408601529285166060850152908516608084015290921660a0820152911660c082015260e00190565b60405180910390a15050505050505050565b60008a6001600160401b0316116128d9576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f60648201526084016110f4565b6000896001600160401b03161180156129025750600e8b01546001600160401b03908116908a16105b61299a5760405162461bcd60e51b815260206004820152605e60248201527f4d6f76696e672066756e64732064757374207468726573686f6c64206d75737460448201527f2062652067726561746572207468616e207a65726f20616e64206c6f7765722060648201527f7468616e20726564656d7074696f6e2064757374207468726573686f6c640000608482015260a4016110f4565b60008863ffffffff1611612a165760405162461bcd60e51b815260206004820152603a60248201527f4d6f76696e672066756e64732074696d656f75742072657365742064656c617960448201527f206d7573742062652067726561746572207468616e207a65726f00000000000060648201526084016110f4565b8763ffffffff168763ffffffff1611612a975760405162461bcd60e51b815260206004820152603960248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e206974732072657365742064656c61790000000000000060648201526084016110f4565b6064851115612b345760405162461bcd60e51b815260206004820152604d60248201527f4d6f76696e672066756e64732074696d656f7574206e6f74696669657220726560448201527f77617264206d756c7469706c696572206d75737420626520696e20746865207260648201527f616e6765205b302c203130305d00000000000000000000000000000000000000608482015260a4016110f4565b6000846001600160401b031611612bd95760405162461bcd60e51b815260206004820152604560248201527f4d6f7665642066756e6473207377656570207472616e73616374696f6e206d6160448201527f7820746f74616c20666565206d7573742062652067726561746572207468616e60648201527f207a65726f000000000000000000000000000000000000000000000000000000608482015260a4016110f4565b60008363ffffffff1611612c555760405162461bcd60e51b815260206004820152603360248201527f4d6f7665642066756e64732073776565702074696d656f7574206d757374206260448201527f652067726561746572207468616e207a65726f0000000000000000000000000060648201526084016110f4565b6064811115612cf25760405162461bcd60e51b815260206004820152605260248201527f4d6f7665642066756e64732073776565702074696d656f7574206e6f7469666960448201527f657220726577617264206d756c7469706c696572206d75737420626520696e2060648201527f7468652072616e6765205b302c203130305d0000000000000000000000000000608482015260a4016110f4565b898b60080160006101000a8154816001600160401b0302191690836001600160401b03160217905550888b60080160086101000a8154816001600160401b0302191690836001600160401b03160217905550878b60080160106101000a81548163ffffffff021916908363ffffffff160217905550868b60080160146101000a81548163ffffffff021916908363ffffffff160217905550858b60090160006101000a8154816001600160601b0302191690836001600160601b03160217905550848b600a0181905550838b600b0160006101000a8154816001600160401b0302191690836001600160401b03160217905550828b600b0160086101000a81548163ffffffff021916908363ffffffff160217905550818b600b01600c6101000a8154816001600160601b0302191690836001600160601b03160217905550808b600c01819055507f9fbab8abcd4ce947cd4ffe98e310cc5290d30644941a68e43899b3b6e219ca928a8a8a8a8a8a8a8a8a8a604051612ee09a999897969594939291906001600160401b039a8b168152988a1660208a015263ffffffff97881660408a015295871660608901526001600160601b03948516608089015260a0880193909352961660c08601529490921660e084015292166101008201526101208101919091526101400190565b60405180910390a15050505050505050505050565b60088701546001600160401b03600160401b909104811690871611612fa85760405162461bcd60e51b815260206004820152604a60248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e206d6f76696e672066756e6473206475737460648201527f207468726573686f6c6400000000000000000000000000000000000000000000608482015260a4016110f4565b6000856001600160401b0316116130275760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f0000000000000060648201526084016110f4565b6000846001600160401b0316116130a65760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f000000000000000060648201526084016110f4565b6000831161311c5760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f000000000000000000000000000000000000000060648201526084016110f4565b60648111156131b95760405162461bcd60e51b815260206004820152604b60248201527f526564656d7074696f6e2074696d656f7574206e6f746966696572207265776160448201527f7264206d756c7469706c696572206d75737420626520696e207468652072616e60648201527f6765205b302c203130305d000000000000000000000000000000000000000000608482015260a4016110f4565b600e870180546001600160401b038881166fffffffffffffffffffffffffffffffff199092168217600160401b898316908102919091177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff16600160801b92891692830217909355600f8a0186905560108a0180546001600160601b0319166001600160601b03871690811790915560118b018590556040805193845260208401949094529282015260608101859052608081019190915260a081018290527f944cd06e316cc3da4159300dd41ab23416c89a5136c41fa79d57fe8a34bcc10f9060c00160405180910390a150505050505050565b600083116133245760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f000000000000000060648201526084016110f4565b606481111561339b5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d000060648201526084016110f4565b60148501849055601585018390556016850180546001600160601b0319166001600160601b03841690811790915560178601829055604080518681526020810186905290810191909152606081018290527fd0d6d92441fbb139a023c9c62586dbd767824f37869c45da6443fc3aef64194f9060800160405180910390a15050505050565b6001600160601b031981166000908152601d83016020526040902060036002820154600160c01b900460ff16600581111561345d5761345d614312565b146134aa5760405162461bcd60e51b815260206004820152601f60248201527f57616c6c6574206d75737420626520696e20436c6f73696e672073746174650060448201526064016110f4565b601c83015460028201546134ce9163ffffffff90811691600160801b900416614be9565b63ffffffff1642116135485760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f657400000000000000000000000000000000000000000000000000000000000060648201526084016110f4565b61110a83836136fb565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff1983168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b603254600090610100900460ff161561365f578160ff1660011480156135e55750303b155b6136575760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016110f4565b506000919050565b60325460ff8084169116106136dc5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016110f4565b506032805460ff191660ff92909216919091179055600190565b919050565b6001600160601b031981166000818152601d840160205260408082206002810180547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff167804000000000000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb927916137d59160040190815260200190565b600060405180830381600087803b1580156137ef57600080fd5b505af115801561127f573d6000803e3d6000fd5b60006020828403121561381557600080fd5b5035919050565b60008083601f84011261382e57600080fd5b5081356001600160401b0381111561384557600080fd5b60208301915083602082850101111561385d57600080fd5b9250929050565b6000806000806040858703121561387a57600080fd5b84356001600160401b038082111561389157600080fd5b61389d8883890161381c565b909650945060208701359150808211156138b657600080fd5b506138c38782880161381c565b95989497509550505050565b80356001600160601b0319811681146136f657600080fd5b6000606082840312156138f957600080fd5b50919050565b6000806080838503121561391257600080fd5b61391b836138cf565b915061392a84602085016138e7565b90509250929050565b6000608082840312156138f957600080fd5b80356001600160a01b03811681146136f657600080fd5b60008060008060c0858703121561397257600080fd5b84356001600160401b038082111561398957600080fd5b61399588838901613933565b955060208701359150808211156139ab57600080fd5b506139b8878288016138e7565b9350506139c886604087016138e7565b91506139d660a08601613945565b905092959194509250565b80356001600160401b03811681146136f657600080fd5b600080600060608486031215613a0d57600080fd5b613a16846139e1565b9250613a24602085016139e1565b9150613a32604085016139e1565b90509250925092565b60008060008060c08587031215613a5157600080fd5b84356001600160401b0380821115613a6857600080fd5b613a7488838901613933565b95506020870135915080821115613a8a57600080fd5b50613a97878288016138e7565b935050613aa786604087016138e7565b91506139d660a086016138cf565b60008083601f840112613ac757600080fd5b5081356001600160401b03811115613ade57600080fd5b6020830191508360208260051b850101111561385d57600080fd5b600080600080600060608688031215613b1157600080fd5b613b1a866138cf565b945060208601356001600160401b0380821115613b3657600080fd5b613b4289838a01613ab5565b90965094506040880135915080821115613b5b57600080fd5b50613b688882890161381c565b969995985093965092949392505050565b600080600060608486031215613b8e57600080fd5b505081359360208301359350604090920135919050565b60008060008060608587031215613bbb57600080fd5b613bc485613945565b93506020850135925060408501356001600160401b03811115613be657600080fd5b6138c38782880161381c565b803563ffffffff811681146136f657600080fd5b60008060008060608587031215613c1c57600080fd5b84359350613c2c60208601613bf2565b925060408501356001600160401b03811115613c4757600080fd5b6138c387828801613ab5565b600080828403610100811215613c6857600080fd5b83356001600160401b03811115613c7e57600080fd5b613c8a86828701613933565b93505060e0601f1982011215613c9f57600080fd5b506020830190509250929050565b803580151581146136f657600080fd5b60008060408385031215613cd057600080fd5b613cd983613945565b915061392a60208401613cad565b634e487b7160e01b600052604160045260246000fd5b600082601f830112613d0e57600080fd5b81356001600160401b0380821115613d2857613d28613ce7565b604051601f8301601f19908116603f01168101908282118183101715613d5057613d50613ce7565b81604052838152866020858801011115613d6957600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060008060a08587031215613d9f57600080fd5b84356001600160401b0380821115613db657600080fd5b613dc28883890161381c565b90965094506020870135915080821115613ddb57600080fd5b50613de887828801613cfd565b9250506139d686604087016138e7565b600080600080600060608688031215613e1057600080fd5b85356001600160401b0380821115613e2757600080fd5b613e3389838a0161381c565b90975095506020880135915080821115613e4c57600080fd5b50613e598882890161381c565b9094509250613e6c905060408701613cad565b90509295509295909350565b600080600080600060608688031215613e9057600080fd5b85356001600160401b0380821115613ea757600080fd5b613eb389838a0161381c565b90975095506020880135915080821115613ecc57600080fd5b613ed889838a01613ab5565b90955093506040880135915080821115613ef157600080fd5b50613efe88828901613cfd565b9150509295509295909350565b600080600080600080600060e0888a031215613f2657600080fd5b613f2f88613bf2565b9650613f3d602089016139e1565b9550613f4b604089016139e1565b9450613f59606089016139e1565b9350613f6760808901613bf2565b9250613f7560a089016139e1565b9150613f8360c08901613bf2565b905092959891949750929550565b600080600060408486031215613fa657600080fd5b613faf846138cf565b925060208401356001600160401b03811115613fca57600080fd5b613fd686828701613ab5565b9497909650939450505050565b80356001600160601b03811681146136f657600080fd5b6000806000806000806000806000806101408b8d03121561401a57600080fd5b6140238b6139e1565b995061403160208c016139e1565b985061403f60408c01613bf2565b975061404d60608c01613bf2565b965061405b60808c01613fe3565b955060a08b0135945061407060c08c016139e1565b935061407e60e08c01613bf2565b925061408d6101008c01613fe3565b91506101208b013590509295989b9194979a5092959850565b6000606082840312156140b857600080fd5b6140c283836138e7565b9392505050565b600080600080600080600060e0888a0312156140e457600080fd5b6140ed886138cf565b96506140fc8960208a016138e7565b955060808801356001600160401b038082111561411857600080fd5b6141248b838c01613ab5565b909750955060a08a0135945060c08a013591508082111561414457600080fd5b506141518a828b01613ab5565b989b979a50959850939692959293505050565b60008060008060008060c0878903121561417d57600080fd5b614186876139e1565b9550614194602088016139e1565b94506141a2604088016139e1565b9350606087013592506141b760808801613fe3565b915060a087013590509295509295509295565b600080600080608085870312156141e057600080fd5b84359350602085013592506141f760408601613fe3565b9396929550929360600135925050565b600080600060a0848603121561421c57600080fd5b83356001600160401b038082111561423357600080fd5b61423f87838801613933565b9450602086013591508082111561425557600080fd5b50614262868287016138e7565b925050613a3285604086016138e7565b60006020828403121561428457600080fd5b6140c2826138cf565b60006020828403121561429f57600080fd5b6140c282613945565b600080600080600060c086880312156142c057600080fd5b6142c9866138cf565b94506142d887602088016138e7565b935060808601356001600160401b038111156142f357600080fd5b6142ff8882890161381c565b9094509250613e6c905060a087016139e1565b634e487b7160e01b600052602160045260246000fd5b6006811061433857614338614312565b9052565b60006101208201905082518252602083015160208301526001600160401b03604084015116604083015263ffffffff6060840151166060830152608083015161438d608084018263ffffffff169052565b5060a08301516143a560a084018263ffffffff169052565b5060c08301516143bd60c084018263ffffffff169052565b5060e08301516143d060e0840182614328565b5061010092830151919092015290565b81516001600160601b03191681526020808301516001600160401b03169082015260408083015163ffffffff1690820152606082015160808201906004811061442b5761442b614312565b8060608401525092915050565b600080600080600060a0868803121561445057600080fd5b61445986613945565b945061446760208701613945565b935061447560408701613945565b925061448360608701613945565b949793965091946080013592915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8581526060602082015260006144d7606083018688614494565b82810360408401526144ea818587614494565b98975050505050505050565b8035825263ffffffff61450b60208301613bf2565b1660208301526001600160401b03614525604083016139e1565b1660408301525050565b8381526001600160601b03198316602082015260a0810161455360408301846144f6565b949350505050565b80356001600160e01b0319811681146136f657600080fd5b6000808335601e1984360301811261458a57600080fd5b83016020810192503590506001600160401b038111156145a957600080fd5b80360383131561385d57600080fd5b60006001600160e01b0319806145cd8461455b565b1684526145dd6020840184614573565b608060208701526145f2608087018284614494565b9150506146026040850185614573565b8683036040880152614615838284614494565b92505050816146266060860161455b565b166060860152809250505092915050565b60006146438283614573565b60608552614655606086018284614494565b9150506020830135602085015261466f6040840184614573565b8583036040870152614682838284614494565b9695505050505050565b85815260e0602082015260006146a560e08301876145b8565b82810360408401526146b78187614637565b9150506146c760608301856144f6565b6001600160a01b03831660c08301529695505050505050565b85815260e0602082015260006146f960e08301876145b8565b828103604084015261470b8187614637565b91505061471b60608301856144f6565b6001600160601b0319831660c08301529695505050505050565b8183526000602080850194508260005b8581101561476e5763ffffffff61475b83613bf2565b1687529582019590820190600101614745565b509495945050505050565b8681526001600160601b0319861660208201526080604082015260006147a3608083018688614735565b82810360608401526147b6818587614494565b9998505050505050505050565b8581526001600160a01b03851660208201526001600160401b03841660408201526080606082015260006147fb608083018486614494565b979650505050505050565b85815284602082015263ffffffff841660408201526080606082015260006147fb608083018486614735565b600061012085835280602084015261484c818401866145b8565b91505063ffffffff61485d84613bf2565b1660408301526001600160a01b0361487760208501613945565b166060830152604083013577ffffffffffffffffffffffffffffffffffffffffffffffff19811681146148a957600080fd5b77ffffffffffffffffffffffffffffffffffffffffffffffff191660808301526148d5606084016138cf565b6001600160601b03191660a08301526148f0608084016138cf565b6001600160601b03191660c083015261490b60a0840161455b565b6001600160e01b03191660e083015261492660c08401613945565b6001600160a01b03811661010084015250949350505050565b6000815180845260005b8181101561496557602081850181015186830182015201614949565b81811115614977576000602083870101525b50601f01601f19169290920160200192915050565b85815260c0602082015260006149a660c083018688614494565b82810360408401526149b8818661493f565b9150508235606083015260208301356080830152604083013560ff81168082146149e157600080fd5b8060a085015250509695505050505050565b868152608060208201526000614a0d608083018789614494565b8281036040840152614a20818688614494565b9150508215156060830152979650505050505050565b868152608060208201526000614a50608083018789614494565b8281036040840152614a63818688614735565b905082810360608401526147b6818561493f565b8481526001600160601b031984166020820152606060408201526000614682606083018486614735565b828152608081016140c260208301846144f6565b60006101008a835260206001600160601b0319808c1682860152614adc604086018c6144f6565b8260a0860152614aef8386018a8c614735565b60c0860189905285810360e0870152868152879350820160005b87811015614b2e5782614b1b866138cf565b1682529383019390830190600101614b09565b509d9c50505050505050505050505050565b84815260c060208201526000614b5960c08301866145b8565b8281036040840152614b6b8186614637565b915050614b7b60608301846144f6565b95945050505050565b8781526001600160601b0319871660208201526000610100614ba960408401896144f6565b6001600160a01b03871660a08401528060c0840152614bcb8184018688614494565b9150506001600160401b03831660e083015298975050505050505050565b600063ffffffff808316818516808303821115614c1657634e487b7160e01b600052601160045260246000fd5b0194935050505056fea264697066735822122029a6a8a7b87979dec78aee440625eca1aa1dcf00fdce110fcaba9164aa8094b264736f6c63430008090033",
|
|
2465
|
+
"deployedBytecode": "0x60806040526004361061031e5760003560e01c8063883d6a11116101a5578063b7d372a4116100ec578063ded1d24a11610095578063e65e19d51161006f578063e65e19d514610e93578063ee1dd3ea14610ec0578063f18cf1b114610ee0578063f7013ef614610f0d57600080fd5b8063ded1d24a14610e0e578063e44bdd3114610e3a578063e53c0b5514610e5a57600080fd5b8063c8b5d2db116100c6578063c8b5d2db14610dae578063d38bfff414610dce578063d6eccdf014610dee57600080fd5b8063b7d372a414610c8d578063be05abe314610cad578063c42b64d014610d6357600080fd5b8063abaeed8f1161014e578063b216bd3511610128578063b216bd3514610c2d578063b29a604b14610c4d578063b34b321614610c6d57600080fd5b8063abaeed8f14610a8b578063b02c43d014610aab578063b2146cd614610bed57600080fd5b8063a145e2d51161017f578063a145e2d514610a0b578063a8fa0f4214610a2b578063a9de2f3a14610a4b57600080fd5b8063883d6a11146109ab57806392238f32146109cb5780639c49c418146109eb57600080fd5b8063475d05701161026957806361d027b31161021257806375b922d1116101ec57806375b922d11461092457806377145f211461096b57806379fc4eb31461098b57600080fd5b806361d027b314610861578063685ce1b11461087f5780636e70ce411461089257600080fd5b80635c0b4812116102435780635c0b48121461079157806360d712fc146107b157806361ccf97a146107d157600080fd5b8063475d05701461071957806350aea15a146107395780635aa6e6751461075957600080fd5b806324028c11116102cb57806331a4889a116102a557806331a4889a146105fa57806333e957cb1461061a5780633dce9812146106f957600080fd5b806324028c111461058a5780632bb818c2146105bc5780632f429b64146105da57600080fd5b80630b6ba19d116102fc5780630b6ba19d1461048d578063133cafc81461054a57806317c964001461056a57600080fd5b806303d952f7146103235780630674f2661461044b57806307f7d2231461046d575b600080fd5b34801561032f57600080fd5b506103e061033e366004613803565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260456020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b90046001600160401b039081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516104429190600060a0820190506001600160a01b03835116825260208301516001600160401b038082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561045757600080fd5b5061046b610466366004613864565b610f2d565b005b34801561047957600080fd5b5061046b6104883660046138ff565b610fbc565b34801561049957600080fd5b506103e06104a8366004613803565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260466020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b90046001600160401b039081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b34801561055657600080fd5b5061046b61056536600461395c565b611045565b34801561057657600080fd5b5061046b6105853660046139f8565b61109e565b34801561059657600080fd5b50604e54600160a01b900463ffffffff1660405163ffffffff9091168152602001610442565b3480156105c857600080fd5b50603654604051908152602001610442565b3480156105e657600080fd5b5061046b6105f5366004613a3b565b61110f565b34801561060657600080fd5b5061046b610615366004613af9565b611166565b34801561062657600080fd5b506106b5610635366004613803565b604080516080810182526000808252602082018190529181018290526060810191909152506000908152604b6020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b604051610442919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561070557600080fd5b5061046b610714366004613b79565b6111f8565b34801561072557600080fd5b5061046b610734366004613ba5565b611288565b34801561074557600080fd5b5061046b610754366004613c06565b61132a565b34801561076557600080fd5b50600054610779906001600160a01b031681565b6040516001600160a01b039091168152602001610442565b34801561079d57600080fd5b5061046b6107ac366004613c53565b611383565b3480156107bd57600080fd5b5061046b6107cc366004613cbd565b6113d8565b3480156107dd57600080fd5b50604d54604e54604f546040805163ffffffff80861682526001600160401b036401000000008704811660208401526c010000000000000000000000008704811693830193909352600160a01b860483166060830152600160e01b90950485166080820152600160c01b9093041660a08301529190911660c082015260e001610442565b34801561086d57600080fd5b506037546001600160a01b0316610779565b61046b61088d366004613d89565b611491565b34801561089e57600080fd5b506108dd6041546042546043546044546001600160401b0380851695600160401b8604821695600160801b900490911693926001600160601b03169190565b604080516001600160401b0397881681529587166020870152939095169284019290925260608301526001600160601b0316608082015260a081019190915260c001610442565b34801561093057600080fd5b50604754604854604954604a546040805194855260208501939093526001600160601b03909116918301919091526060820152608001610442565b34801561097757600080fd5b5061046b610986366004613df8565b6114ea565b34801561099757600080fd5b5061046b6109a6366004613e78565b611545565b3480156109b757600080fd5b5061046b6109c6366004613f0b565b6115a0565b3480156109d757600080fd5b5061046b6109e6366004613f91565b61160b565b3480156109f757600080fd5b5061046b610a06366004613ffa565b611662565b348015610a1757600080fd5b5061046b610a263660046140a6565b6116dc565b348015610a3757600080fd5b5061046b610a46366004613b79565b611762565b348015610a5757600080fd5b50603354603454603554604080516001600160a01b0394851681529284166020840152921691810191909152606001610442565b348015610a9757600080fd5b5061046b610aa63660046140c9565b6117c8565b348015610ab757600080fd5b50610b78610ac6366004613803565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260396020908152604091829020825160c08101845281546001600160a01b0380821683526001600160401b03600160a01b80840482169685019690965263ffffffff600160e01b9384900481169785019790975260019094015490811660608401529384049092166080820152910490911660a082015290565b6040516104429190600060c0820190506001600160a01b0380845116835260208401516001600160401b0380821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610bf957600080fd5b50610c1d610c08366004613803565b6000908152604c602052604090205460ff1690565b6040519015158152602001610442565b348015610c3957600080fd5b5061046b610c48366004614164565b611860565b348015610c5957600080fd5b5061046b610c683660046141ca565b6118ca565b348015610c7957600080fd5b5061046b610c88366004613a3b565b611938565b348015610c9957600080fd5b5061046b610ca8366004614207565b611991565b348015610cb957600080fd5b50603b54603c54603d54603e54603f54604080516001600160401b038088168252600160401b8089048216602084015263ffffffff600160801b8a04811694840194909452600160a01b909804831660608301526001600160601b03968716608083015260a082019590955293831660c085015294820490941660e08301526c01000000000000000000000000900490911661010082015261012081019190915261014001610442565b348015610d6f57600080fd5b5060375460385460408051600160a01b9093046001600160401b0390811684528083166020850152600160401b90920490911690820152606001610442565b348015610dba57600080fd5b5061046b610dc9366004614272565b6119e8565b348015610dda57600080fd5b5061046b610de936600461428d565b6119f6565b348015610dfa57600080fd5b5061046b610e093660046142a8565b611ad5565b348015610e1a57600080fd5b50604e5460601b6040516001600160601b03199091168152602001610442565b348015610e4657600080fd5b5061046b610e553660046138ff565b611b32565b348015610e6657600080fd5b50610c1d610e7536600461428d565b6001600160a01b03166000908152603a602052604090205460ff1690565b348015610e9f57600080fd5b50610eb3610eae366004614272565b611b87565b604051610442919061433c565b348015610ecc57600080fd5b5061046b610edb366004614272565b611caa565b348015610eec57600080fd5b50610f00610efb366004613803565b611d0b565b60405161044291906143e0565b348015610f1957600080fd5b5061046b610f28366004614438565b611dc4565b6040517f94fcaf8d00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906394fcaf8d90610f869060339088908890889088906004016144bd565b60006040518083038186803b158015610f9e57600080fd5b505af4158015610fb2573d6000803e3d6000fd5b5050505050505050565b6040517f260b6cde00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063260b6cde90611011906033908690869060040161452f565b60006040518083038186803b15801561102957600080fd5b505af415801561103d573d6000803e3d6000fd5b505050505050565b6040517fd22cd45b00000000000000000000000000000000000000000000000000000000815273__$24f7e155a6d011c1bf9032506ba9b1954c$__9063d22cd45b90610f8690603390889088908890889060040161468c565b6000546001600160a01b031633146110fd5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064015b60405180910390fd5b61110a60338484846121df565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610f869060339088908890889088906004016146e0565b6040517fa76558b300000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a76558b3906111c19060339089908990899089908990600401614779565b60006040518083038186803b1580156111d957600080fd5b505af41580156111ed573d6000803e3d6000fd5b505050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260336004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b15801561126b57600080fd5b505af415801561127f573d6000803e3d6000fd5b50505050505050565b6033546001600160a01b031633146112e25760405162461bcd60e51b815260206004820152601660248201527f43616c6c6572206973206e6f74207468652062616e6b0000000000000000000060448201526064016110f4565b73__$9935b6ea18e0c526c293569ddd26842c9b$__63d253980860338661130887612412565b86866040518663ffffffff1660e01b8152600401610f869594939291906147c3565b6040517f899bef9d00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063899bef9d90610f86906033908890889088908890600401614806565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b906110119060339086908690600401614832565b6000546001600160a01b031633146114325760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b6001600160a01b0382166000818152603a6020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517feb8fdd5d00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063eb8fdd5d90610f8690603390889088908890889060040161498c565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906111c190603390899089908990899089906004016149f3565b6040517f80ffe94a00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906380ffe94a906111c19060339089908990899089908990600401614a36565b6000546001600160a01b031633146115fa5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b61127f603388888888888888612495565b6040517f07f96c4200000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906307f96c429061125390603390879087908790600401614a77565b6000546001600160a01b031633146116bc5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b6116d060338b8b8b8b8b8b8b8b8b8b612858565b50505050505050505050565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb19061172f906033908590600401614aa1565b60006040518083038186803b15801561174757600080fd5b505af415801561175b573d6000803e3d6000fd5b5050505050565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526033600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401611253565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f7794390611827906033908b908b908b908b908b908b908b90600401614ab5565b60006040518083038186803b15801561183f57600080fd5b505af4158015611853573d6000803e3d6000fd5b5050505050505050505050565b6000546001600160a01b031633146118ba5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b61103d6033878787878787612ef5565b6000546001600160a01b031633146119245760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b6119326033858585856132ae565b50505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610f869060339088908890889088906004016146e0565b6040517fb79a972500000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063b79a97259061125390603390879087908790600401614b40565b6119f3603382613420565b50565b6000546001600160a01b03163314611a505760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064016110f4565b6001600160a01b038116611acc5760405162461bcd60e51b815260206004820152602260248201527f4e657720676f7665726e616e636520697320746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016110f4565b6119f381613552565b6040517ff5ada44200000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063f5ada442906111c1906033908990899033908a908a908a90600401614b84565b6040517f3af3b15400000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__90633af3b15490611011906033908690869060040161452f565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101919091526001600160601b031982166000908152605060209081526040918290208251610120810184528154815260018201549281019290925260028101546001600160401b0381169383019390935263ffffffff600160401b8404811660608401526c01000000000000000000000000840481166080840152600160801b8404811660a0840152600160a01b84041660c0830152909160e083019060ff600160c01b909104166005811115611c8457611c84614312565b6005811115611c9557611c95614312565b81526020016003820154815250509050919050565b6040517f9b69e71d000000000000000000000000000000000000000000000000000000008152603360048201526001600160601b03198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__90639b69e71d9060440161172f565b611d336040805160808101825260008082526020820181905291810182905290606082015290565b6000828152604060208181529181902081516080810183528154606081811b6001600160601b0319168352600160a01b82046001600160401b031695830195909552600160e01b900463ffffffff16928101929092526001810154919290919083019060ff166003811115611daa57611daa614312565b6003811115611dbb57611dbb614312565b90525092915050565b6000611dd060016135c0565b90508015611de8576032805461ff0019166101001790555b6001600160a01b038616611e3e5760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064016110f4565b6033805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03888116919091179091558516611eb95760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f0000000060448201526064016110f4565b6034805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03878116919091179091558316611f5a5760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201527f6e6e6f74206265207a65726f000000000000000000000000000000000000000060648201526084016110f4565b6035805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03858116919091179091558416611fd55760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f0060448201526064016110f4565b6037805460368490556001600160a01b0386166001600160e01b031990911617760f42400000000000000000000000000000000000000000179055603880546fffffffffffffffffffffffffffffffff191669271000000000000007d01790556041805477ffffffffffffffffffffffffffffffffffffffffffffffff1990811671271000000000000007d000000000000f4240179091556202a3006042556043805469021e19e0c9bab24000006001600160601b0319918216811790925560646044819055603b8054851676093a800007e9000000000000004e200000000000002710179055603c8054831684179055603d819055603e805490941675021e19e0c9bab240000000093a80000000000000271017909355603f839055671bc16d674ec8000060475562093a80604855604980549091169091179055604a557eeff1000000000002faf08000000002540be4000000000005f5e10000093a80604d55604e805477ffffffffffffffffffffffffffffffffffffffffffffffff167b3b9aca00000000000000000000000000000000000000000000000000179055604f80546234bc0063ffffffff1990911617905561219233613552565b801561103d576032805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050505050565b6000836001600160401b03161161225e5760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f0000000000000000000000000000000060648201526084016110f4565b6000826001600160401b0316116122dd5760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f0000000000000000000060648201526084016110f4565b6000816001600160401b03161161235c5760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f000000000000000000000060648201526084016110f4565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b6001600160401b03868116918202929092179092556005860180548583166fffffffffffffffffffffffffffffffff199091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b60006001600160401b038211156124915760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203660448201527f342062697473000000000000000000000000000000000000000000000000000060648201526084016110f4565b5090565b856001600160401b0316856001600160401b0316116125425760405162461bcd60e51b815260206004820152605960248201527f57616c6c6574206372656174696f6e206d6178696d756d204254432062616c6160448201527f6e6365206d7573742062652067726561746572207468616e207468652063726560648201527f6174696f6e206d696e696d756d204254432062616c616e636500000000000000608482015260a4016110f4565b6000846001600160401b0316116125c15760405162461bcd60e51b815260206004820152603c60248201527f57616c6c657420636c6f73757265206d696e696d756d204254432062616c616e60448201527f6365206d7573742062652067726561746572207468616e207a65726f0000000060648201526084016110f4565b6000826001600160401b0316116126405760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f000000000000000000000060648201526084016110f4565b60008163ffffffff16116126bc5760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f000000000000000000000000000000000060648201526084016110f4565b8688601a0160006101000a81548163ffffffff021916908363ffffffff1602179055508588601a0160046101000a8154816001600160401b0302191690836001600160401b031602179055508488601a01600c6101000a8154816001600160401b0302191690836001600160401b031602179055508388601a0160146101000a8154816001600160401b0302191690836001600160401b031602179055508288601a01601c6101000a81548163ffffffff021916908363ffffffff1602179055508188601b0160186101000a8154816001600160401b0302191690836001600160401b031602179055508088601c0160006101000a81548163ffffffff021916908363ffffffff1602179055507fc7d3a9af08692aeae771c329fddd95c7237a9f76fec996325f3959eeff07d4ac87878787878787604051612846979695949392919063ffffffff97881681526001600160401b03968716602082015294861660408601529285166060850152908516608084015290921660a0820152911660c082015260e00190565b60405180910390a15050505050505050565b60008a6001600160401b0316116128d9576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f60648201526084016110f4565b6000896001600160401b03161180156129025750600e8b01546001600160401b03908116908a16105b61299a5760405162461bcd60e51b815260206004820152605e60248201527f4d6f76696e672066756e64732064757374207468726573686f6c64206d75737460448201527f2062652067726561746572207468616e207a65726f20616e64206c6f7765722060648201527f7468616e20726564656d7074696f6e2064757374207468726573686f6c640000608482015260a4016110f4565b60008863ffffffff1611612a165760405162461bcd60e51b815260206004820152603a60248201527f4d6f76696e672066756e64732074696d656f75742072657365742064656c617960448201527f206d7573742062652067726561746572207468616e207a65726f00000000000060648201526084016110f4565b8763ffffffff168763ffffffff1611612a975760405162461bcd60e51b815260206004820152603960248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e206974732072657365742064656c61790000000000000060648201526084016110f4565b6064851115612b345760405162461bcd60e51b815260206004820152604d60248201527f4d6f76696e672066756e64732074696d656f7574206e6f74696669657220726560448201527f77617264206d756c7469706c696572206d75737420626520696e20746865207260648201527f616e6765205b302c203130305d00000000000000000000000000000000000000608482015260a4016110f4565b6000846001600160401b031611612bd95760405162461bcd60e51b815260206004820152604560248201527f4d6f7665642066756e6473207377656570207472616e73616374696f6e206d6160448201527f7820746f74616c20666565206d7573742062652067726561746572207468616e60648201527f207a65726f000000000000000000000000000000000000000000000000000000608482015260a4016110f4565b60008363ffffffff1611612c555760405162461bcd60e51b815260206004820152603360248201527f4d6f7665642066756e64732073776565702074696d656f7574206d757374206260448201527f652067726561746572207468616e207a65726f0000000000000000000000000060648201526084016110f4565b6064811115612cf25760405162461bcd60e51b815260206004820152605260248201527f4d6f7665642066756e64732073776565702074696d656f7574206e6f7469666960448201527f657220726577617264206d756c7469706c696572206d75737420626520696e2060648201527f7468652072616e6765205b302c203130305d0000000000000000000000000000608482015260a4016110f4565b898b60080160006101000a8154816001600160401b0302191690836001600160401b03160217905550888b60080160086101000a8154816001600160401b0302191690836001600160401b03160217905550878b60080160106101000a81548163ffffffff021916908363ffffffff160217905550868b60080160146101000a81548163ffffffff021916908363ffffffff160217905550858b60090160006101000a8154816001600160601b0302191690836001600160601b03160217905550848b600a0181905550838b600b0160006101000a8154816001600160401b0302191690836001600160401b03160217905550828b600b0160086101000a81548163ffffffff021916908363ffffffff160217905550818b600b01600c6101000a8154816001600160601b0302191690836001600160601b03160217905550808b600c01819055507f9fbab8abcd4ce947cd4ffe98e310cc5290d30644941a68e43899b3b6e219ca928a8a8a8a8a8a8a8a8a8a604051612ee09a999897969594939291906001600160401b039a8b168152988a1660208a015263ffffffff97881660408a015295871660608901526001600160601b03948516608089015260a0880193909352961660c08601529490921660e084015292166101008201526101208101919091526101400190565b60405180910390a15050505050505050505050565b60088701546001600160401b03600160401b909104811690871611612fa85760405162461bcd60e51b815260206004820152604a60248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e206d6f76696e672066756e6473206475737460648201527f207468726573686f6c6400000000000000000000000000000000000000000000608482015260a4016110f4565b6000856001600160401b0316116130275760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f0000000000000060648201526084016110f4565b6000846001600160401b0316116130a65760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f000000000000000060648201526084016110f4565b6000831161311c5760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f000000000000000000000000000000000000000060648201526084016110f4565b60648111156131b95760405162461bcd60e51b815260206004820152604b60248201527f526564656d7074696f6e2074696d656f7574206e6f746966696572207265776160448201527f7264206d756c7469706c696572206d75737420626520696e207468652072616e60648201527f6765205b302c203130305d000000000000000000000000000000000000000000608482015260a4016110f4565b600e870180546001600160401b038881166fffffffffffffffffffffffffffffffff199092168217600160401b898316908102919091177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff16600160801b92891692830217909355600f8a0186905560108a0180546001600160601b0319166001600160601b03871690811790915560118b018590556040805193845260208401949094529282015260608101859052608081019190915260a081018290527f944cd06e316cc3da4159300dd41ab23416c89a5136c41fa79d57fe8a34bcc10f9060c00160405180910390a150505050505050565b600083116133245760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f000000000000000060648201526084016110f4565b606481111561339b5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d000060648201526084016110f4565b60148501849055601585018390556016850180546001600160601b0319166001600160601b03841690811790915560178601829055604080518681526020810186905290810191909152606081018290527fd0d6d92441fbb139a023c9c62586dbd767824f37869c45da6443fc3aef64194f9060800160405180910390a15050505050565b6001600160601b031981166000908152601d83016020526040902060036002820154600160c01b900460ff16600581111561345d5761345d614312565b146134aa5760405162461bcd60e51b815260206004820152601f60248201527f57616c6c6574206d75737420626520696e20436c6f73696e672073746174650060448201526064016110f4565b601c83015460028201546134ce9163ffffffff90811691600160801b900416614be9565b63ffffffff1642116135485760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f657400000000000000000000000000000000000000000000000000000000000060648201526084016110f4565b61110a83836136fb565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff1983168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b603254600090610100900460ff161561365f578160ff1660011480156135e55750303b155b6136575760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016110f4565b506000919050565b60325460ff8084169116106136dc5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016110f4565b506032805460ff191660ff92909216919091179055600190565b919050565b6001600160601b031981166000818152601d840160205260408082206002810180547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff167804000000000000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb927916137d59160040190815260200190565b600060405180830381600087803b1580156137ef57600080fd5b505af115801561127f573d6000803e3d6000fd5b60006020828403121561381557600080fd5b5035919050565b60008083601f84011261382e57600080fd5b5081356001600160401b0381111561384557600080fd5b60208301915083602082850101111561385d57600080fd5b9250929050565b6000806000806040858703121561387a57600080fd5b84356001600160401b038082111561389157600080fd5b61389d8883890161381c565b909650945060208701359150808211156138b657600080fd5b506138c38782880161381c565b95989497509550505050565b80356001600160601b0319811681146136f657600080fd5b6000606082840312156138f957600080fd5b50919050565b6000806080838503121561391257600080fd5b61391b836138cf565b915061392a84602085016138e7565b90509250929050565b6000608082840312156138f957600080fd5b80356001600160a01b03811681146136f657600080fd5b60008060008060c0858703121561397257600080fd5b84356001600160401b038082111561398957600080fd5b61399588838901613933565b955060208701359150808211156139ab57600080fd5b506139b8878288016138e7565b9350506139c886604087016138e7565b91506139d660a08601613945565b905092959194509250565b80356001600160401b03811681146136f657600080fd5b600080600060608486031215613a0d57600080fd5b613a16846139e1565b9250613a24602085016139e1565b9150613a32604085016139e1565b90509250925092565b60008060008060c08587031215613a5157600080fd5b84356001600160401b0380821115613a6857600080fd5b613a7488838901613933565b95506020870135915080821115613a8a57600080fd5b50613a97878288016138e7565b935050613aa786604087016138e7565b91506139d660a086016138cf565b60008083601f840112613ac757600080fd5b5081356001600160401b03811115613ade57600080fd5b6020830191508360208260051b850101111561385d57600080fd5b600080600080600060608688031215613b1157600080fd5b613b1a866138cf565b945060208601356001600160401b0380821115613b3657600080fd5b613b4289838a01613ab5565b90965094506040880135915080821115613b5b57600080fd5b50613b688882890161381c565b969995985093965092949392505050565b600080600060608486031215613b8e57600080fd5b505081359360208301359350604090920135919050565b60008060008060608587031215613bbb57600080fd5b613bc485613945565b93506020850135925060408501356001600160401b03811115613be657600080fd5b6138c38782880161381c565b803563ffffffff811681146136f657600080fd5b60008060008060608587031215613c1c57600080fd5b84359350613c2c60208601613bf2565b925060408501356001600160401b03811115613c4757600080fd5b6138c387828801613ab5565b600080828403610100811215613c6857600080fd5b83356001600160401b03811115613c7e57600080fd5b613c8a86828701613933565b93505060e0601f1982011215613c9f57600080fd5b506020830190509250929050565b803580151581146136f657600080fd5b60008060408385031215613cd057600080fd5b613cd983613945565b915061392a60208401613cad565b634e487b7160e01b600052604160045260246000fd5b600082601f830112613d0e57600080fd5b81356001600160401b0380821115613d2857613d28613ce7565b604051601f8301601f19908116603f01168101908282118183101715613d5057613d50613ce7565b81604052838152866020858801011115613d6957600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060008060a08587031215613d9f57600080fd5b84356001600160401b0380821115613db657600080fd5b613dc28883890161381c565b90965094506020870135915080821115613ddb57600080fd5b50613de887828801613cfd565b9250506139d686604087016138e7565b600080600080600060608688031215613e1057600080fd5b85356001600160401b0380821115613e2757600080fd5b613e3389838a0161381c565b90975095506020880135915080821115613e4c57600080fd5b50613e598882890161381c565b9094509250613e6c905060408701613cad565b90509295509295909350565b600080600080600060608688031215613e9057600080fd5b85356001600160401b0380821115613ea757600080fd5b613eb389838a0161381c565b90975095506020880135915080821115613ecc57600080fd5b613ed889838a01613ab5565b90955093506040880135915080821115613ef157600080fd5b50613efe88828901613cfd565b9150509295509295909350565b600080600080600080600060e0888a031215613f2657600080fd5b613f2f88613bf2565b9650613f3d602089016139e1565b9550613f4b604089016139e1565b9450613f59606089016139e1565b9350613f6760808901613bf2565b9250613f7560a089016139e1565b9150613f8360c08901613bf2565b905092959891949750929550565b600080600060408486031215613fa657600080fd5b613faf846138cf565b925060208401356001600160401b03811115613fca57600080fd5b613fd686828701613ab5565b9497909650939450505050565b80356001600160601b03811681146136f657600080fd5b6000806000806000806000806000806101408b8d03121561401a57600080fd5b6140238b6139e1565b995061403160208c016139e1565b985061403f60408c01613bf2565b975061404d60608c01613bf2565b965061405b60808c01613fe3565b955060a08b0135945061407060c08c016139e1565b935061407e60e08c01613bf2565b925061408d6101008c01613fe3565b91506101208b013590509295989b9194979a5092959850565b6000606082840312156140b857600080fd5b6140c283836138e7565b9392505050565b600080600080600080600060e0888a0312156140e457600080fd5b6140ed886138cf565b96506140fc8960208a016138e7565b955060808801356001600160401b038082111561411857600080fd5b6141248b838c01613ab5565b909750955060a08a0135945060c08a013591508082111561414457600080fd5b506141518a828b01613ab5565b989b979a50959850939692959293505050565b60008060008060008060c0878903121561417d57600080fd5b614186876139e1565b9550614194602088016139e1565b94506141a2604088016139e1565b9350606087013592506141b760808801613fe3565b915060a087013590509295509295509295565b600080600080608085870312156141e057600080fd5b84359350602085013592506141f760408601613fe3565b9396929550929360600135925050565b600080600060a0848603121561421c57600080fd5b83356001600160401b038082111561423357600080fd5b61423f87838801613933565b9450602086013591508082111561425557600080fd5b50614262868287016138e7565b925050613a3285604086016138e7565b60006020828403121561428457600080fd5b6140c2826138cf565b60006020828403121561429f57600080fd5b6140c282613945565b600080600080600060c086880312156142c057600080fd5b6142c9866138cf565b94506142d887602088016138e7565b935060808601356001600160401b038111156142f357600080fd5b6142ff8882890161381c565b9094509250613e6c905060a087016139e1565b634e487b7160e01b600052602160045260246000fd5b6006811061433857614338614312565b9052565b60006101208201905082518252602083015160208301526001600160401b03604084015116604083015263ffffffff6060840151166060830152608083015161438d608084018263ffffffff169052565b5060a08301516143a560a084018263ffffffff169052565b5060c08301516143bd60c084018263ffffffff169052565b5060e08301516143d060e0840182614328565b5061010092830151919092015290565b81516001600160601b03191681526020808301516001600160401b03169082015260408083015163ffffffff1690820152606082015160808201906004811061442b5761442b614312565b8060608401525092915050565b600080600080600060a0868803121561445057600080fd5b61445986613945565b945061446760208701613945565b935061447560408701613945565b925061448360608701613945565b949793965091946080013592915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8581526060602082015260006144d7606083018688614494565b82810360408401526144ea818587614494565b98975050505050505050565b8035825263ffffffff61450b60208301613bf2565b1660208301526001600160401b03614525604083016139e1565b1660408301525050565b8381526001600160601b03198316602082015260a0810161455360408301846144f6565b949350505050565b80356001600160e01b0319811681146136f657600080fd5b6000808335601e1984360301811261458a57600080fd5b83016020810192503590506001600160401b038111156145a957600080fd5b80360383131561385d57600080fd5b60006001600160e01b0319806145cd8461455b565b1684526145dd6020840184614573565b608060208701526145f2608087018284614494565b9150506146026040850185614573565b8683036040880152614615838284614494565b92505050816146266060860161455b565b166060860152809250505092915050565b60006146438283614573565b60608552614655606086018284614494565b9150506020830135602085015261466f6040840184614573565b8583036040870152614682838284614494565b9695505050505050565b85815260e0602082015260006146a560e08301876145b8565b82810360408401526146b78187614637565b9150506146c760608301856144f6565b6001600160a01b03831660c08301529695505050505050565b85815260e0602082015260006146f960e08301876145b8565b828103604084015261470b8187614637565b91505061471b60608301856144f6565b6001600160601b0319831660c08301529695505050505050565b8183526000602080850194508260005b8581101561476e5763ffffffff61475b83613bf2565b1687529582019590820190600101614745565b509495945050505050565b8681526001600160601b0319861660208201526080604082015260006147a3608083018688614735565b82810360608401526147b6818587614494565b9998505050505050505050565b8581526001600160a01b03851660208201526001600160401b03841660408201526080606082015260006147fb608083018486614494565b979650505050505050565b85815284602082015263ffffffff841660408201526080606082015260006147fb608083018486614735565b600061012085835280602084015261484c818401866145b8565b91505063ffffffff61485d84613bf2565b1660408301526001600160a01b0361487760208501613945565b166060830152604083013577ffffffffffffffffffffffffffffffffffffffffffffffff19811681146148a957600080fd5b77ffffffffffffffffffffffffffffffffffffffffffffffff191660808301526148d5606084016138cf565b6001600160601b03191660a08301526148f0608084016138cf565b6001600160601b03191660c083015261490b60a0840161455b565b6001600160e01b03191660e083015261492660c08401613945565b6001600160a01b03811661010084015250949350505050565b6000815180845260005b8181101561496557602081850181015186830182015201614949565b81811115614977576000602083870101525b50601f01601f19169290920160200192915050565b85815260c0602082015260006149a660c083018688614494565b82810360408401526149b8818661493f565b9150508235606083015260208301356080830152604083013560ff81168082146149e157600080fd5b8060a085015250509695505050505050565b868152608060208201526000614a0d608083018789614494565b8281036040840152614a20818688614494565b9150508215156060830152979650505050505050565b868152608060208201526000614a50608083018789614494565b8281036040840152614a63818688614735565b905082810360608401526147b6818561493f565b8481526001600160601b031984166020820152606060408201526000614682606083018486614735565b828152608081016140c260208301846144f6565b60006101008a835260206001600160601b0319808c1682860152614adc604086018c6144f6565b8260a0860152614aef8386018a8c614735565b60c0860189905285810360e0870152868152879350820160005b87811015614b2e5782614b1b866138cf565b1682529383019390830190600101614b09565b509d9c50505050505050505050505050565b84815260c060208201526000614b5960c08301866145b8565b8281036040840152614b6b8186614637565b915050614b7b60608301846144f6565b95945050505050565b8781526001600160601b0319871660208201526000610100614ba960408401896144f6565b6001600160a01b03871660a08401528060c0840152614bcb8184018688614494565b9150506001600160401b03831660e083015298975050505050505050565b600063ffffffff808316818516808303821115614c1657634e487b7160e01b600052601160045260246000fd5b0194935050505056fea264697066735822122029a6a8a7b87979dec78aee440625eca1aa1dcf00fdce110fcaba9164aa8094b264736f6c63430008090033",
|
|
2466
|
+
"linkReferences": {
|
|
2467
|
+
"contracts/bridge/Deposit.sol": {
|
|
2468
|
+
"Deposit": [
|
|
2469
|
+
{
|
|
2470
|
+
"length": 20,
|
|
2471
|
+
"start": 5067
|
|
2472
|
+
}
|
|
2473
|
+
]
|
|
2474
|
+
},
|
|
2475
|
+
"contracts/bridge/DepositSweep.sol": {
|
|
2476
|
+
"DepositSweep": [
|
|
2477
|
+
{
|
|
2478
|
+
"length": 20,
|
|
2479
|
+
"start": 4237
|
|
2480
|
+
}
|
|
2481
|
+
]
|
|
2482
|
+
},
|
|
2483
|
+
"contracts/bridge/Fraud.sol": {
|
|
2484
|
+
"Fraud": [
|
|
2485
|
+
{
|
|
2486
|
+
"length": 20,
|
|
2487
|
+
"start": 3957
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"length": 20,
|
|
2491
|
+
"start": 5337
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
"length": 20,
|
|
2495
|
+
"start": 5426
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
"length": 20,
|
|
2499
|
+
"start": 5517
|
|
2500
|
+
}
|
|
2501
|
+
]
|
|
2502
|
+
},
|
|
2503
|
+
"contracts/bridge/MovingFunds.sol": {
|
|
2504
|
+
"MovingFunds": [
|
|
2505
|
+
{
|
|
2506
|
+
"length": 20,
|
|
2507
|
+
"start": 4100
|
|
2508
|
+
},
|
|
2509
|
+
{
|
|
2510
|
+
"length": 20,
|
|
2511
|
+
"start": 4438
|
|
2512
|
+
},
|
|
2513
|
+
{
|
|
2514
|
+
"length": 20,
|
|
2515
|
+
"start": 4978
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
"length": 20,
|
|
2519
|
+
"start": 5715
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
"length": 20,
|
|
2523
|
+
"start": 6160
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"length": 20,
|
|
2527
|
+
"start": 6617
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
"length": 20,
|
|
2531
|
+
"start": 7433
|
|
2532
|
+
}
|
|
2533
|
+
]
|
|
2534
|
+
},
|
|
2535
|
+
"contracts/bridge/Redemption.sol": {
|
|
2536
|
+
"Redemption": [
|
|
2537
|
+
{
|
|
2538
|
+
"length": 20,
|
|
2539
|
+
"start": 4526
|
|
2540
|
+
},
|
|
2541
|
+
{
|
|
2542
|
+
"length": 20,
|
|
2543
|
+
"start": 4868
|
|
2544
|
+
},
|
|
2545
|
+
{
|
|
2546
|
+
"length": 20,
|
|
2547
|
+
"start": 6528
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
"length": 20,
|
|
2551
|
+
"start": 6941
|
|
2552
|
+
}
|
|
2553
|
+
]
|
|
2554
|
+
},
|
|
2555
|
+
"contracts/bridge/Wallets.sol": {
|
|
2556
|
+
"Wallets": [
|
|
2557
|
+
{
|
|
2558
|
+
"length": 20,
|
|
2559
|
+
"start": 4693
|
|
2560
|
+
},
|
|
2561
|
+
{
|
|
2562
|
+
"length": 20,
|
|
2563
|
+
"start": 5924
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
"length": 20,
|
|
2567
|
+
"start": 6086
|
|
2568
|
+
},
|
|
2569
|
+
{
|
|
2570
|
+
"length": 20,
|
|
2571
|
+
"start": 7034
|
|
2572
|
+
}
|
|
2573
|
+
]
|
|
2574
|
+
}
|
|
2575
|
+
},
|
|
2576
|
+
"deployedLinkReferences": {
|
|
2577
|
+
"contracts/bridge/Deposit.sol": {
|
|
2578
|
+
"Deposit": [
|
|
2579
|
+
{
|
|
2580
|
+
"length": 20,
|
|
2581
|
+
"start": 5035
|
|
2582
|
+
}
|
|
2583
|
+
]
|
|
2584
|
+
},
|
|
2585
|
+
"contracts/bridge/DepositSweep.sol": {
|
|
2586
|
+
"DepositSweep": [
|
|
2587
|
+
{
|
|
2588
|
+
"length": 20,
|
|
2589
|
+
"start": 4205
|
|
2590
|
+
}
|
|
2591
|
+
]
|
|
2592
|
+
},
|
|
2593
|
+
"contracts/bridge/Fraud.sol": {
|
|
2594
|
+
"Fraud": [
|
|
2595
|
+
{
|
|
2596
|
+
"length": 20,
|
|
2597
|
+
"start": 3925
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
"length": 20,
|
|
2601
|
+
"start": 5305
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"length": 20,
|
|
2605
|
+
"start": 5394
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
"length": 20,
|
|
2609
|
+
"start": 5485
|
|
2610
|
+
}
|
|
2611
|
+
]
|
|
2612
|
+
},
|
|
2613
|
+
"contracts/bridge/MovingFunds.sol": {
|
|
2614
|
+
"MovingFunds": [
|
|
2615
|
+
{
|
|
2616
|
+
"length": 20,
|
|
2617
|
+
"start": 4068
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
"length": 20,
|
|
2621
|
+
"start": 4406
|
|
2622
|
+
},
|
|
2623
|
+
{
|
|
2624
|
+
"length": 20,
|
|
2625
|
+
"start": 4946
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"length": 20,
|
|
2629
|
+
"start": 5683
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
"length": 20,
|
|
2633
|
+
"start": 6128
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
"length": 20,
|
|
2637
|
+
"start": 6585
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"length": 20,
|
|
2641
|
+
"start": 7401
|
|
2642
|
+
}
|
|
2643
|
+
]
|
|
2644
|
+
},
|
|
2645
|
+
"contracts/bridge/Redemption.sol": {
|
|
2646
|
+
"Redemption": [
|
|
2647
|
+
{
|
|
2648
|
+
"length": 20,
|
|
2649
|
+
"start": 4494
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"length": 20,
|
|
2653
|
+
"start": 4836
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"length": 20,
|
|
2657
|
+
"start": 6496
|
|
2658
|
+
},
|
|
2659
|
+
{
|
|
2660
|
+
"length": 20,
|
|
2661
|
+
"start": 6909
|
|
2662
|
+
}
|
|
2663
|
+
]
|
|
2664
|
+
},
|
|
2665
|
+
"contracts/bridge/Wallets.sol": {
|
|
2666
|
+
"Wallets": [
|
|
2667
|
+
{
|
|
2668
|
+
"length": 20,
|
|
2669
|
+
"start": 4661
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
"length": 20,
|
|
2673
|
+
"start": 5892
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"length": 20,
|
|
2677
|
+
"start": 6054
|
|
2678
|
+
},
|
|
2679
|
+
{
|
|
2680
|
+
"length": 20,
|
|
2681
|
+
"start": 7002
|
|
2682
|
+
}
|
|
2683
|
+
]
|
|
2684
|
+
}
|
|
2685
|
+
}
|
|
2686
|
+
}
|