@keep-network/tbtc-v2 0.1.1-dev.55 → 0.1.1-dev.56
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/artifacts/Bank.json +3 -3
- package/artifacts/Bridge.json +515 -191
- package/artifacts/Deposit.json +7 -7
- package/artifacts/DepositSweep.json +76 -0
- package/artifacts/EcdsaDkgValidator.json +1 -1
- package/artifacts/EcdsaInactivity.json +1 -1
- package/artifacts/Fraud.json +7 -7
- package/artifacts/KeepRegistry.json +1 -1
- package/artifacts/KeepStake.json +2 -2
- package/artifacts/KeepToken.json +2 -2
- package/artifacts/KeepTokenStaking.json +1 -1
- package/artifacts/MovingFunds.json +40 -10
- package/artifacts/NuCypherStakingEscrow.json +1 -1
- package/artifacts/NuCypherToken.json +2 -2
- package/artifacts/RandomBeaconStub.json +1 -1
- package/artifacts/Redemption.json +9 -9
- package/artifacts/ReimbursementPool.json +2 -2
- package/artifacts/Relay.json +9 -9
- package/artifacts/SortitionPool.json +2 -2
- package/artifacts/T.json +2 -2
- package/artifacts/TBTC.json +3 -3
- package/artifacts/TBTCToken.json +3 -3
- package/artifacts/TokenStaking.json +1 -1
- package/artifacts/TokenholderGovernor.json +9 -9
- package/artifacts/TokenholderTimelock.json +8 -8
- package/artifacts/VendingMachine.json +10 -10
- package/artifacts/VendingMachineKeep.json +1 -1
- package/artifacts/VendingMachineNuCypher.json +1 -1
- package/artifacts/WalletRegistry.json +2 -2
- package/artifacts/WalletRegistryGovernance.json +2 -2
- package/artifacts/Wallets.json +9 -9
- package/artifacts/solcInputs/{6d69fc514efd874ebb1cb86b04981772.json → 5dd2a7c685770548b7ea9ce25e179326.json} +9 -9
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
- package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
- package/build/contracts/bridge/Bridge.sol/Bridge.json +266 -103
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +8 -2
- package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
- package/build/contracts/bridge/Deposit.sol/Deposit.json +2 -2
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +4 -0
- package/build/contracts/bridge/{Sweep.sol/Sweep.json → DepositSweep.sol/DepositSweep.json} +4 -4
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.json +2 -2
- package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +21 -2
- package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +1 -1
- package/build/contracts/bridge/Redemption.sol/OutboundTx.json +2 -2
- package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +1 -1
- package/build/contracts/bridge/Redemption.sol/Redemption.json +2 -2
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
- package/build/contracts/bridge/Wallets.sol/Wallets.json +2 -2
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
- package/contracts/bridge/BitcoinTx.sol +69 -0
- package/contracts/bridge/Bridge.sol +90 -8
- package/contracts/bridge/BridgeState.sol +34 -3
- package/contracts/bridge/{Sweep.sol → DepositSweep.sol} +30 -18
- package/contracts/bridge/MovingFunds.sol +469 -76
- package/deploy/05_deploy_bridge.ts +5 -2
- package/export.json +313 -56
- package/package.json +1 -1
- package/artifacts/Sweep.json +0 -76
- package/build/contracts/bridge/Sweep.sol/Sweep.dbg.json +0 -4
package/export.json
CHANGED
|
@@ -13619,7 +13619,7 @@
|
|
|
13619
13619
|
}
|
|
13620
13620
|
]
|
|
13621
13621
|
},
|
|
13622
|
-
"
|
|
13622
|
+
"DepositSweep": {
|
|
13623
13623
|
"address": "0x55cb3b67D9E65F0Cf4eABCAC84564a1bE6E3b06A",
|
|
13624
13624
|
"abi": [
|
|
13625
13625
|
{
|
|
@@ -13918,6 +13918,25 @@
|
|
|
13918
13918
|
"MovingFunds": {
|
|
13919
13919
|
"address": "0x1a6a3e7Bb246158dF31d8f924B84D961669Ba4e5",
|
|
13920
13920
|
"abi": [
|
|
13921
|
+
{
|
|
13922
|
+
"anonymous": false,
|
|
13923
|
+
"inputs": [
|
|
13924
|
+
{
|
|
13925
|
+
"indexed": false,
|
|
13926
|
+
"internalType": "bytes20",
|
|
13927
|
+
"name": "walletPubKeyHash",
|
|
13928
|
+
"type": "bytes20"
|
|
13929
|
+
},
|
|
13930
|
+
{
|
|
13931
|
+
"indexed": false,
|
|
13932
|
+
"internalType": "bytes32",
|
|
13933
|
+
"name": "sweepTxHash",
|
|
13934
|
+
"type": "bytes32"
|
|
13935
|
+
}
|
|
13936
|
+
],
|
|
13937
|
+
"name": "MovedFundsSwept",
|
|
13938
|
+
"type": "event"
|
|
13939
|
+
},
|
|
13921
13940
|
{
|
|
13922
13941
|
"anonymous": false,
|
|
13923
13942
|
"inputs": [
|
|
@@ -14254,6 +14273,25 @@
|
|
|
14254
14273
|
"name": "GovernanceTransferred",
|
|
14255
14274
|
"type": "event"
|
|
14256
14275
|
},
|
|
14276
|
+
{
|
|
14277
|
+
"anonymous": false,
|
|
14278
|
+
"inputs": [
|
|
14279
|
+
{
|
|
14280
|
+
"indexed": false,
|
|
14281
|
+
"internalType": "bytes20",
|
|
14282
|
+
"name": "walletPubKeyHash",
|
|
14283
|
+
"type": "bytes20"
|
|
14284
|
+
},
|
|
14285
|
+
{
|
|
14286
|
+
"indexed": false,
|
|
14287
|
+
"internalType": "bytes32",
|
|
14288
|
+
"name": "sweepTxHash",
|
|
14289
|
+
"type": "bytes32"
|
|
14290
|
+
}
|
|
14291
|
+
],
|
|
14292
|
+
"name": "MovedFundsSwept",
|
|
14293
|
+
"type": "event"
|
|
14294
|
+
},
|
|
14257
14295
|
{
|
|
14258
14296
|
"anonymous": false,
|
|
14259
14297
|
"inputs": [
|
|
@@ -14343,6 +14381,12 @@
|
|
|
14343
14381
|
"internalType": "uint256",
|
|
14344
14382
|
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
14345
14383
|
"type": "uint256"
|
|
14384
|
+
},
|
|
14385
|
+
{
|
|
14386
|
+
"indexed": false,
|
|
14387
|
+
"internalType": "uint64",
|
|
14388
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
14389
|
+
"type": "uint64"
|
|
14346
14390
|
}
|
|
14347
14391
|
],
|
|
14348
14392
|
"name": "MovingFundsParametersUpdated",
|
|
@@ -14947,6 +14991,47 @@
|
|
|
14947
14991
|
"stateMutability": "view",
|
|
14948
14992
|
"type": "function"
|
|
14949
14993
|
},
|
|
14994
|
+
{
|
|
14995
|
+
"inputs": [
|
|
14996
|
+
{
|
|
14997
|
+
"internalType": "uint256",
|
|
14998
|
+
"name": "requestKey",
|
|
14999
|
+
"type": "uint256"
|
|
15000
|
+
}
|
|
15001
|
+
],
|
|
15002
|
+
"name": "movedFundsSweepRequests",
|
|
15003
|
+
"outputs": [
|
|
15004
|
+
{
|
|
15005
|
+
"components": [
|
|
15006
|
+
{
|
|
15007
|
+
"internalType": "bytes20",
|
|
15008
|
+
"name": "walletPubKeyHash",
|
|
15009
|
+
"type": "bytes20"
|
|
15010
|
+
},
|
|
15011
|
+
{
|
|
15012
|
+
"internalType": "uint64",
|
|
15013
|
+
"name": "value",
|
|
15014
|
+
"type": "uint64"
|
|
15015
|
+
},
|
|
15016
|
+
{
|
|
15017
|
+
"internalType": "uint32",
|
|
15018
|
+
"name": "createdAt",
|
|
15019
|
+
"type": "uint32"
|
|
15020
|
+
},
|
|
15021
|
+
{
|
|
15022
|
+
"internalType": "uint32",
|
|
15023
|
+
"name": "sweptAt",
|
|
15024
|
+
"type": "uint32"
|
|
15025
|
+
}
|
|
15026
|
+
],
|
|
15027
|
+
"internalType": "struct MovingFunds.MovedFundsSweepRequest",
|
|
15028
|
+
"name": "",
|
|
15029
|
+
"type": "tuple"
|
|
15030
|
+
}
|
|
15031
|
+
],
|
|
15032
|
+
"stateMutability": "view",
|
|
15033
|
+
"type": "function"
|
|
15034
|
+
},
|
|
14950
15035
|
{
|
|
14951
15036
|
"inputs": [],
|
|
14952
15037
|
"name": "movingFundsParameters",
|
|
@@ -14975,6 +15060,11 @@
|
|
|
14975
15060
|
"internalType": "uint256",
|
|
14976
15061
|
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
14977
15062
|
"type": "uint256"
|
|
15063
|
+
},
|
|
15064
|
+
{
|
|
15065
|
+
"internalType": "uint64",
|
|
15066
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
15067
|
+
"type": "uint64"
|
|
14978
15068
|
}
|
|
14979
15069
|
],
|
|
14980
15070
|
"stateMutability": "view",
|
|
@@ -15402,6 +15492,54 @@
|
|
|
15402
15492
|
"stateMutability": "nonpayable",
|
|
15403
15493
|
"type": "function"
|
|
15404
15494
|
},
|
|
15495
|
+
{
|
|
15496
|
+
"inputs": [
|
|
15497
|
+
{
|
|
15498
|
+
"internalType": "bytes20",
|
|
15499
|
+
"name": "walletPubKeyHash",
|
|
15500
|
+
"type": "bytes20"
|
|
15501
|
+
},
|
|
15502
|
+
{
|
|
15503
|
+
"components": [
|
|
15504
|
+
{
|
|
15505
|
+
"internalType": "bytes32",
|
|
15506
|
+
"name": "txHash",
|
|
15507
|
+
"type": "bytes32"
|
|
15508
|
+
},
|
|
15509
|
+
{
|
|
15510
|
+
"internalType": "uint32",
|
|
15511
|
+
"name": "txOutputIndex",
|
|
15512
|
+
"type": "uint32"
|
|
15513
|
+
},
|
|
15514
|
+
{
|
|
15515
|
+
"internalType": "uint64",
|
|
15516
|
+
"name": "txOutputValue",
|
|
15517
|
+
"type": "uint64"
|
|
15518
|
+
}
|
|
15519
|
+
],
|
|
15520
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
15521
|
+
"name": "utxo",
|
|
15522
|
+
"type": "tuple"
|
|
15523
|
+
}
|
|
15524
|
+
],
|
|
15525
|
+
"name": "setMovedFundsSweepRequest",
|
|
15526
|
+
"outputs": [],
|
|
15527
|
+
"stateMutability": "nonpayable",
|
|
15528
|
+
"type": "function"
|
|
15529
|
+
},
|
|
15530
|
+
{
|
|
15531
|
+
"inputs": [
|
|
15532
|
+
{
|
|
15533
|
+
"internalType": "uint64",
|
|
15534
|
+
"name": "_movedFundsSweepTxMaxTotalFee",
|
|
15535
|
+
"type": "uint64"
|
|
15536
|
+
}
|
|
15537
|
+
],
|
|
15538
|
+
"name": "setMovedFundsSweepTxMaxTotalFee",
|
|
15539
|
+
"outputs": [],
|
|
15540
|
+
"stateMutability": "nonpayable",
|
|
15541
|
+
"type": "function"
|
|
15542
|
+
},
|
|
15405
15543
|
{
|
|
15406
15544
|
"inputs": [
|
|
15407
15545
|
{
|
|
@@ -15415,6 +15553,41 @@
|
|
|
15415
15553
|
"stateMutability": "nonpayable",
|
|
15416
15554
|
"type": "function"
|
|
15417
15555
|
},
|
|
15556
|
+
{
|
|
15557
|
+
"inputs": [
|
|
15558
|
+
{
|
|
15559
|
+
"internalType": "bytes20",
|
|
15560
|
+
"name": "walletPubKeyHash",
|
|
15561
|
+
"type": "bytes20"
|
|
15562
|
+
},
|
|
15563
|
+
{
|
|
15564
|
+
"components": [
|
|
15565
|
+
{
|
|
15566
|
+
"internalType": "bytes32",
|
|
15567
|
+
"name": "txHash",
|
|
15568
|
+
"type": "bytes32"
|
|
15569
|
+
},
|
|
15570
|
+
{
|
|
15571
|
+
"internalType": "uint32",
|
|
15572
|
+
"name": "txOutputIndex",
|
|
15573
|
+
"type": "uint32"
|
|
15574
|
+
},
|
|
15575
|
+
{
|
|
15576
|
+
"internalType": "uint64",
|
|
15577
|
+
"name": "txOutputValue",
|
|
15578
|
+
"type": "uint64"
|
|
15579
|
+
}
|
|
15580
|
+
],
|
|
15581
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
15582
|
+
"name": "utxo",
|
|
15583
|
+
"type": "tuple"
|
|
15584
|
+
}
|
|
15585
|
+
],
|
|
15586
|
+
"name": "setProcessedMovedFundsSweepRequest",
|
|
15587
|
+
"outputs": [],
|
|
15588
|
+
"stateMutability": "nonpayable",
|
|
15589
|
+
"type": "function"
|
|
15590
|
+
},
|
|
15418
15591
|
{
|
|
15419
15592
|
"inputs": [
|
|
15420
15593
|
{
|
|
@@ -15636,49 +15809,53 @@
|
|
|
15636
15809
|
{
|
|
15637
15810
|
"inputs": [
|
|
15638
15811
|
{
|
|
15639
|
-
"
|
|
15640
|
-
|
|
15641
|
-
|
|
15642
|
-
|
|
15643
|
-
|
|
15644
|
-
|
|
15645
|
-
|
|
15646
|
-
|
|
15812
|
+
"components": [
|
|
15813
|
+
{
|
|
15814
|
+
"internalType": "bytes4",
|
|
15815
|
+
"name": "version",
|
|
15816
|
+
"type": "bytes4"
|
|
15817
|
+
},
|
|
15818
|
+
{
|
|
15819
|
+
"internalType": "bytes",
|
|
15820
|
+
"name": "inputVector",
|
|
15821
|
+
"type": "bytes"
|
|
15822
|
+
},
|
|
15823
|
+
{
|
|
15824
|
+
"internalType": "bytes",
|
|
15825
|
+
"name": "outputVector",
|
|
15826
|
+
"type": "bytes"
|
|
15827
|
+
},
|
|
15828
|
+
{
|
|
15829
|
+
"internalType": "bytes4",
|
|
15830
|
+
"name": "locktime",
|
|
15831
|
+
"type": "bytes4"
|
|
15832
|
+
}
|
|
15833
|
+
],
|
|
15834
|
+
"internalType": "struct BitcoinTx.Info",
|
|
15835
|
+
"name": "sweepTx",
|
|
15836
|
+
"type": "tuple"
|
|
15647
15837
|
},
|
|
15648
15838
|
{
|
|
15649
15839
|
"components": [
|
|
15650
15840
|
{
|
|
15651
|
-
"internalType": "
|
|
15652
|
-
"name": "
|
|
15653
|
-
"type": "
|
|
15841
|
+
"internalType": "bytes",
|
|
15842
|
+
"name": "merkleProof",
|
|
15843
|
+
"type": "bytes"
|
|
15654
15844
|
},
|
|
15655
15845
|
{
|
|
15656
|
-
"internalType": "
|
|
15657
|
-
"name": "
|
|
15658
|
-
"type": "
|
|
15846
|
+
"internalType": "uint256",
|
|
15847
|
+
"name": "txIndexInBlock",
|
|
15848
|
+
"type": "uint256"
|
|
15659
15849
|
},
|
|
15660
15850
|
{
|
|
15661
|
-
"internalType": "
|
|
15662
|
-
"name": "
|
|
15663
|
-
"type": "
|
|
15851
|
+
"internalType": "bytes",
|
|
15852
|
+
"name": "bitcoinHeaders",
|
|
15853
|
+
"type": "bytes"
|
|
15664
15854
|
}
|
|
15665
15855
|
],
|
|
15666
|
-
"internalType": "struct BitcoinTx.
|
|
15667
|
-
"name": "
|
|
15856
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
15857
|
+
"name": "sweepProof",
|
|
15668
15858
|
"type": "tuple"
|
|
15669
|
-
}
|
|
15670
|
-
],
|
|
15671
|
-
"name": "submitFraudChallenge",
|
|
15672
|
-
"outputs": [],
|
|
15673
|
-
"stateMutability": "payable",
|
|
15674
|
-
"type": "function"
|
|
15675
|
-
},
|
|
15676
|
-
{
|
|
15677
|
-
"inputs": [
|
|
15678
|
-
{
|
|
15679
|
-
"internalType": "bytes20",
|
|
15680
|
-
"name": "walletPubKeyHash",
|
|
15681
|
-
"type": "bytes20"
|
|
15682
15859
|
},
|
|
15683
15860
|
{
|
|
15684
15861
|
"components": [
|
|
@@ -15699,28 +15876,53 @@
|
|
|
15699
15876
|
}
|
|
15700
15877
|
],
|
|
15701
15878
|
"internalType": "struct BitcoinTx.UTXO",
|
|
15702
|
-
"name": "
|
|
15879
|
+
"name": "mainUtxo",
|
|
15703
15880
|
"type": "tuple"
|
|
15704
|
-
}
|
|
15881
|
+
}
|
|
15882
|
+
],
|
|
15883
|
+
"name": "submitDepositSweepProof",
|
|
15884
|
+
"outputs": [],
|
|
15885
|
+
"stateMutability": "nonpayable",
|
|
15886
|
+
"type": "function"
|
|
15887
|
+
},
|
|
15888
|
+
{
|
|
15889
|
+
"inputs": [
|
|
15705
15890
|
{
|
|
15706
|
-
"internalType": "
|
|
15707
|
-
"name": "
|
|
15708
|
-
"type": "
|
|
15891
|
+
"internalType": "bytes",
|
|
15892
|
+
"name": "walletPublicKey",
|
|
15893
|
+
"type": "bytes"
|
|
15709
15894
|
},
|
|
15710
15895
|
{
|
|
15711
|
-
"internalType": "
|
|
15712
|
-
"name": "
|
|
15713
|
-
"type": "
|
|
15896
|
+
"internalType": "bytes32",
|
|
15897
|
+
"name": "sighash",
|
|
15898
|
+
"type": "bytes32"
|
|
15714
15899
|
},
|
|
15715
15900
|
{
|
|
15716
|
-
"
|
|
15717
|
-
|
|
15718
|
-
|
|
15901
|
+
"components": [
|
|
15902
|
+
{
|
|
15903
|
+
"internalType": "bytes32",
|
|
15904
|
+
"name": "r",
|
|
15905
|
+
"type": "bytes32"
|
|
15906
|
+
},
|
|
15907
|
+
{
|
|
15908
|
+
"internalType": "bytes32",
|
|
15909
|
+
"name": "s",
|
|
15910
|
+
"type": "bytes32"
|
|
15911
|
+
},
|
|
15912
|
+
{
|
|
15913
|
+
"internalType": "uint8",
|
|
15914
|
+
"name": "v",
|
|
15915
|
+
"type": "uint8"
|
|
15916
|
+
}
|
|
15917
|
+
],
|
|
15918
|
+
"internalType": "struct BitcoinTx.RSVSignature",
|
|
15919
|
+
"name": "signature",
|
|
15920
|
+
"type": "tuple"
|
|
15719
15921
|
}
|
|
15720
15922
|
],
|
|
15721
|
-
"name": "
|
|
15923
|
+
"name": "submitFraudChallenge",
|
|
15722
15924
|
"outputs": [],
|
|
15723
|
-
"stateMutability": "
|
|
15925
|
+
"stateMutability": "payable",
|
|
15724
15926
|
"type": "function"
|
|
15725
15927
|
},
|
|
15726
15928
|
{
|
|
@@ -15749,7 +15951,7 @@
|
|
|
15749
15951
|
}
|
|
15750
15952
|
],
|
|
15751
15953
|
"internalType": "struct BitcoinTx.Info",
|
|
15752
|
-
"name": "
|
|
15954
|
+
"name": "sweepTx",
|
|
15753
15955
|
"type": "tuple"
|
|
15754
15956
|
},
|
|
15755
15957
|
{
|
|
@@ -15771,7 +15973,7 @@
|
|
|
15771
15973
|
}
|
|
15772
15974
|
],
|
|
15773
15975
|
"internalType": "struct BitcoinTx.Proof",
|
|
15774
|
-
"name": "
|
|
15976
|
+
"name": "sweepProof",
|
|
15775
15977
|
"type": "tuple"
|
|
15776
15978
|
},
|
|
15777
15979
|
{
|
|
@@ -15795,14 +15997,59 @@
|
|
|
15795
15997
|
"internalType": "struct BitcoinTx.UTXO",
|
|
15796
15998
|
"name": "mainUtxo",
|
|
15797
15999
|
"type": "tuple"
|
|
15798
|
-
}
|
|
16000
|
+
}
|
|
16001
|
+
],
|
|
16002
|
+
"name": "submitMovedFundsSweepProof",
|
|
16003
|
+
"outputs": [],
|
|
16004
|
+
"stateMutability": "nonpayable",
|
|
16005
|
+
"type": "function"
|
|
16006
|
+
},
|
|
16007
|
+
{
|
|
16008
|
+
"inputs": [
|
|
15799
16009
|
{
|
|
15800
16010
|
"internalType": "bytes20",
|
|
15801
16011
|
"name": "walletPubKeyHash",
|
|
15802
16012
|
"type": "bytes20"
|
|
16013
|
+
},
|
|
16014
|
+
{
|
|
16015
|
+
"components": [
|
|
16016
|
+
{
|
|
16017
|
+
"internalType": "bytes32",
|
|
16018
|
+
"name": "txHash",
|
|
16019
|
+
"type": "bytes32"
|
|
16020
|
+
},
|
|
16021
|
+
{
|
|
16022
|
+
"internalType": "uint32",
|
|
16023
|
+
"name": "txOutputIndex",
|
|
16024
|
+
"type": "uint32"
|
|
16025
|
+
},
|
|
16026
|
+
{
|
|
16027
|
+
"internalType": "uint64",
|
|
16028
|
+
"name": "txOutputValue",
|
|
16029
|
+
"type": "uint64"
|
|
16030
|
+
}
|
|
16031
|
+
],
|
|
16032
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
16033
|
+
"name": "walletMainUtxo",
|
|
16034
|
+
"type": "tuple"
|
|
16035
|
+
},
|
|
16036
|
+
{
|
|
16037
|
+
"internalType": "uint32[]",
|
|
16038
|
+
"name": "walletMembersIDs",
|
|
16039
|
+
"type": "uint32[]"
|
|
16040
|
+
},
|
|
16041
|
+
{
|
|
16042
|
+
"internalType": "uint256",
|
|
16043
|
+
"name": "walletMemberIndex",
|
|
16044
|
+
"type": "uint256"
|
|
16045
|
+
},
|
|
16046
|
+
{
|
|
16047
|
+
"internalType": "bytes20[]",
|
|
16048
|
+
"name": "targetWallets",
|
|
16049
|
+
"type": "bytes20[]"
|
|
15803
16050
|
}
|
|
15804
16051
|
],
|
|
15805
|
-
"name": "
|
|
16052
|
+
"name": "submitMovingFundsCommitment",
|
|
15806
16053
|
"outputs": [],
|
|
15807
16054
|
"stateMutability": "nonpayable",
|
|
15808
16055
|
"type": "function"
|
|
@@ -15833,7 +16080,7 @@
|
|
|
15833
16080
|
}
|
|
15834
16081
|
],
|
|
15835
16082
|
"internalType": "struct BitcoinTx.Info",
|
|
15836
|
-
"name": "
|
|
16083
|
+
"name": "movingFundsTx",
|
|
15837
16084
|
"type": "tuple"
|
|
15838
16085
|
},
|
|
15839
16086
|
{
|
|
@@ -15855,7 +16102,7 @@
|
|
|
15855
16102
|
}
|
|
15856
16103
|
],
|
|
15857
16104
|
"internalType": "struct BitcoinTx.Proof",
|
|
15858
|
-
"name": "
|
|
16105
|
+
"name": "movingFundsProof",
|
|
15859
16106
|
"type": "tuple"
|
|
15860
16107
|
},
|
|
15861
16108
|
{
|
|
@@ -15886,7 +16133,7 @@
|
|
|
15886
16133
|
"type": "bytes20"
|
|
15887
16134
|
}
|
|
15888
16135
|
],
|
|
15889
|
-
"name": "
|
|
16136
|
+
"name": "submitMovingFundsProof",
|
|
15890
16137
|
"outputs": [],
|
|
15891
16138
|
"stateMutability": "nonpayable",
|
|
15892
16139
|
"type": "function"
|
|
@@ -15917,7 +16164,7 @@
|
|
|
15917
16164
|
}
|
|
15918
16165
|
],
|
|
15919
16166
|
"internalType": "struct BitcoinTx.Info",
|
|
15920
|
-
"name": "
|
|
16167
|
+
"name": "redemptionTx",
|
|
15921
16168
|
"type": "tuple"
|
|
15922
16169
|
},
|
|
15923
16170
|
{
|
|
@@ -15939,7 +16186,7 @@
|
|
|
15939
16186
|
}
|
|
15940
16187
|
],
|
|
15941
16188
|
"internalType": "struct BitcoinTx.Proof",
|
|
15942
|
-
"name": "
|
|
16189
|
+
"name": "redemptionProof",
|
|
15943
16190
|
"type": "tuple"
|
|
15944
16191
|
},
|
|
15945
16192
|
{
|
|
@@ -15963,9 +16210,14 @@
|
|
|
15963
16210
|
"internalType": "struct BitcoinTx.UTXO",
|
|
15964
16211
|
"name": "mainUtxo",
|
|
15965
16212
|
"type": "tuple"
|
|
16213
|
+
},
|
|
16214
|
+
{
|
|
16215
|
+
"internalType": "bytes20",
|
|
16216
|
+
"name": "walletPubKeyHash",
|
|
16217
|
+
"type": "bytes20"
|
|
15966
16218
|
}
|
|
15967
16219
|
],
|
|
15968
|
-
"name": "
|
|
16220
|
+
"name": "submitRedemptionProof",
|
|
15969
16221
|
"outputs": [],
|
|
15970
16222
|
"stateMutability": "nonpayable",
|
|
15971
16223
|
"type": "function"
|
|
@@ -16132,6 +16384,11 @@
|
|
|
16132
16384
|
"internalType": "uint256",
|
|
16133
16385
|
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
16134
16386
|
"type": "uint256"
|
|
16387
|
+
},
|
|
16388
|
+
{
|
|
16389
|
+
"internalType": "uint64",
|
|
16390
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
16391
|
+
"type": "uint64"
|
|
16135
16392
|
}
|
|
16136
16393
|
],
|
|
16137
16394
|
"name": "updateMovingFundsParameters",
|