@keep-network/tbtc-v2 1.6.0-dev.17 → 1.6.0-dev.18
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/BLS.json +1 -1
- package/artifacts/Bank.json +2 -2
- package/artifacts/BeaconAuthorization.json +1 -1
- package/artifacts/BeaconDkg.json +1 -1
- package/artifacts/BeaconDkgValidator.json +1 -1
- package/artifacts/BeaconInactivity.json +1 -1
- package/artifacts/BeaconSortitionPool.json +3 -3
- package/artifacts/Bridge.json +5 -5
- package/artifacts/BridgeGovernance.json +2 -2
- package/artifacts/BridgeGovernanceParameters.json +1 -1
- package/artifacts/Deposit.json +1 -1
- package/artifacts/DepositSweep.json +1 -1
- package/artifacts/DonationVault.json +1 -1
- package/artifacts/EcdsaDkgValidator.json +1 -1
- package/artifacts/EcdsaInactivity.json +1 -1
- package/artifacts/EcdsaSortitionPool.json +3 -3
- package/artifacts/Fraud.json +1 -1
- package/artifacts/LightRelay.json +2 -2
- package/artifacts/LightRelayMaintainerProxy.json +2 -2
- package/artifacts/MaintainerProxy.json +2 -2
- package/artifacts/MovingFunds.json +1 -1
- package/artifacts/NuCypherToken.json +2 -2
- package/artifacts/RandomBeacon.json +2 -2
- package/artifacts/RandomBeaconChaosnet.json +2 -2
- package/artifacts/RandomBeaconGovernance.json +2 -2
- package/artifacts/Redemption.json +1 -1
- package/artifacts/ReimbursementPool.json +2 -2
- package/artifacts/T.json +2 -2
- package/artifacts/TBTC.json +2 -2
- package/artifacts/TBTCToken.json +2 -2
- package/artifacts/TBTCVault.json +2 -2
- package/artifacts/TokenStaking.json +1 -1
- package/artifacts/TokenholderGovernor.json +9 -9
- package/artifacts/TokenholderTimelock.json +8 -8
- package/artifacts/VendingMachine.json +2 -2
- package/artifacts/VendingMachineNuCypher.json +1 -1
- package/artifacts/VendingMachineV2.json +2 -2
- package/artifacts/VendingMachineV3.json +2 -2
- package/artifacts/WalletProposalValidator.json +1 -1
- package/artifacts/WalletRegistry.json +5 -5
- package/artifacts/WalletRegistryGovernance.json +2 -2
- package/artifacts/Wallets.json +1 -1
- package/build/contracts/test/BankStub.sol/BankStub.dbg.json +4 -0
- package/build/contracts/test/BankStub.sol/BankStub.json +555 -0
- package/build/contracts/test/BridgeStub.sol/BridgeStub.dbg.json +4 -0
- package/build/contracts/test/BridgeStub.sol/BridgeStub.json +3318 -0
- package/build/contracts/test/HeartbeatStub.sol/HeartbeatStub.dbg.json +4 -0
- package/build/contracts/test/HeartbeatStub.sol/HeartbeatStub.json +30 -0
- package/build/contracts/test/LightRelayStub.sol/LightRelayStub.dbg.json +4 -0
- package/build/contracts/test/LightRelayStub.sol/LightRelayStub.json +467 -0
- package/build/contracts/test/ReceiveApprovalStub.sol/ReceiveApprovalStub.dbg.json +4 -0
- package/build/contracts/test/ReceiveApprovalStub.sol/ReceiveApprovalStub.json +96 -0
- package/build/contracts/test/SepoliaLightRelay.sol/SepoliaLightRelay.dbg.json +4 -0
- package/build/contracts/test/SepoliaLightRelay.sol/SepoliaLightRelay.json +456 -0
- package/build/contracts/test/SystemTestRelay.sol/SystemTestRelay.dbg.json +4 -0
- package/build/contracts/test/SystemTestRelay.sol/SystemTestRelay.json +89 -0
- package/build/contracts/test/TestBitcoinTx.sol/TestBitcoinTx.dbg.json +4 -0
- package/build/contracts/test/TestBitcoinTx.sol/TestBitcoinTx.json +102 -0
- package/build/contracts/test/TestERC20.sol/TestERC20.dbg.json +4 -0
- package/build/contracts/test/TestERC20.sol/TestERC20.json +508 -0
- package/build/contracts/test/TestERC721.sol/TestERC721.dbg.json +4 -0
- package/build/contracts/test/TestERC721.sol/TestERC721.json +390 -0
- package/build/contracts/test/TestEcdsaLib.sol/TestEcdsaLib.dbg.json +4 -0
- package/build/contracts/test/TestEcdsaLib.sol/TestEcdsaLib.json +35 -0
- package/build/contracts/test/TestTBTCDepositor.sol/MockBridge.dbg.json +4 -0
- package/build/contracts/test/TestTBTCDepositor.sol/MockBridge.json +224 -0
- package/build/contracts/test/TestTBTCDepositor.sol/MockTBTCVault.dbg.json +4 -0
- package/build/contracts/test/TestTBTCDepositor.sol/MockTBTCVault.json +87 -0
- package/build/contracts/test/TestTBTCDepositor.sol/TestTBTCDepositor.dbg.json +4 -0
- package/build/contracts/test/TestTBTCDepositor.sol/TestTBTCDepositor.json +283 -0
- package/build/contracts/test/WormholeBridgeStub.sol/WormholeBridgeStub.dbg.json +4 -0
- package/build/contracts/test/WormholeBridgeStub.sol/WormholeBridgeStub.json +372 -0
- package/contracts/test/BankStub.sol +11 -0
- package/contracts/test/BridgeStub.sol +174 -0
- package/contracts/test/HeartbeatStub.sol +16 -0
- package/contracts/test/LightRelayStub.sol +15 -0
- package/contracts/test/ReceiveApprovalStub.sol +33 -0
- package/contracts/test/SepoliaLightRelay.sol +48 -0
- package/contracts/test/SystemTestRelay.sol +57 -0
- package/contracts/test/TestBitcoinTx.sol +24 -0
- package/contracts/test/TestERC20.sol +12 -0
- package/contracts/test/TestERC721.sol +16 -0
- package/contracts/test/TestEcdsaLib.sol +17 -0
- package/contracts/test/TestTBTCDepositor.sol +196 -0
- package/contracts/test/WormholeBridgeStub.sol +125 -0
- package/package.json +1 -2
|
@@ -750,7 +750,7 @@
|
|
|
750
750
|
"transactionIndex": 0,
|
|
751
751
|
"gasUsed": "1617384",
|
|
752
752
|
"logsBloom": "0x000000040000020008020100000000000a0000000000000000000000000000000000000000000000000000000001000000000000000000000200000010200000000000000000000000000000000000000000000000010000000000000001000000000800030000400000000000000800000000000000000000020000000000000000000000000000000000000000000000000000000000080000000000000000000000000020800000000000000000000000000000000000001000000000000000000000000000004000000000000000000200000000000100002000000020000000000000001000000000000000000001000000000000000000000000000000",
|
|
753
|
-
"blockHash": "
|
|
753
|
+
"blockHash": "0x2365c786772ade9a26e360da788c56fa1c7bdccba1ea9ed7abec06a7cac411a9",
|
|
754
754
|
"transactionHash": "0xeba13bba71df9b37fcf9df3326c420e7c6e9511bd448b05b8c764cf22cd1f9eb",
|
|
755
755
|
"logs": [
|
|
756
756
|
{
|
|
@@ -766,7 +766,7 @@
|
|
|
766
766
|
],
|
|
767
767
|
"data": "0x",
|
|
768
768
|
"logIndex": 0,
|
|
769
|
-
"blockHash": "
|
|
769
|
+
"blockHash": "0x2365c786772ade9a26e360da788c56fa1c7bdccba1ea9ed7abec06a7cac411a9"
|
|
770
770
|
},
|
|
771
771
|
{
|
|
772
772
|
"transactionIndex": 0,
|
|
@@ -781,7 +781,7 @@
|
|
|
781
781
|
],
|
|
782
782
|
"data": "0x",
|
|
783
783
|
"logIndex": 1,
|
|
784
|
-
"blockHash": "
|
|
784
|
+
"blockHash": "0x2365c786772ade9a26e360da788c56fa1c7bdccba1ea9ed7abec06a7cac411a9"
|
|
785
785
|
},
|
|
786
786
|
{
|
|
787
787
|
"transactionIndex": 0,
|
|
@@ -796,7 +796,7 @@
|
|
|
796
796
|
],
|
|
797
797
|
"data": "0x",
|
|
798
798
|
"logIndex": 2,
|
|
799
|
-
"blockHash": "
|
|
799
|
+
"blockHash": "0x2365c786772ade9a26e360da788c56fa1c7bdccba1ea9ed7abec06a7cac411a9"
|
|
800
800
|
},
|
|
801
801
|
{
|
|
802
802
|
"transactionIndex": 0,
|
|
@@ -811,7 +811,7 @@
|
|
|
811
811
|
],
|
|
812
812
|
"data": "0x",
|
|
813
813
|
"logIndex": 3,
|
|
814
|
-
"blockHash": "
|
|
814
|
+
"blockHash": "0x2365c786772ade9a26e360da788c56fa1c7bdccba1ea9ed7abec06a7cac411a9"
|
|
815
815
|
},
|
|
816
816
|
{
|
|
817
817
|
"transactionIndex": 0,
|
|
@@ -826,7 +826,7 @@
|
|
|
826
826
|
],
|
|
827
827
|
"data": "0x",
|
|
828
828
|
"logIndex": 4,
|
|
829
|
-
"blockHash": "
|
|
829
|
+
"blockHash": "0x2365c786772ade9a26e360da788c56fa1c7bdccba1ea9ed7abec06a7cac411a9"
|
|
830
830
|
},
|
|
831
831
|
{
|
|
832
832
|
"transactionIndex": 0,
|
|
@@ -841,7 +841,7 @@
|
|
|
841
841
|
],
|
|
842
842
|
"data": "0x",
|
|
843
843
|
"logIndex": 5,
|
|
844
|
-
"blockHash": "
|
|
844
|
+
"blockHash": "0x2365c786772ade9a26e360da788c56fa1c7bdccba1ea9ed7abec06a7cac411a9"
|
|
845
845
|
},
|
|
846
846
|
{
|
|
847
847
|
"transactionIndex": 0,
|
|
@@ -853,7 +853,7 @@
|
|
|
853
853
|
],
|
|
854
854
|
"data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a300",
|
|
855
855
|
"logIndex": 6,
|
|
856
|
-
"blockHash": "
|
|
856
|
+
"blockHash": "0x2365c786772ade9a26e360da788c56fa1c7bdccba1ea9ed7abec06a7cac411a9"
|
|
857
857
|
}
|
|
858
858
|
],
|
|
859
859
|
"blockNumber": 9,
|
|
@@ -517,7 +517,7 @@
|
|
|
517
517
|
"transactionIndex": 0,
|
|
518
518
|
"gasUsed": "1363281",
|
|
519
519
|
"logsBloom": "0x00000000000000000002000000000000000010000000000000800000000000000000000000000000000000000000000000000000000008000000000000000000000400000000000000000000000000000001000000000000000000000000000000000800020000000000000000000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000001000000000000000000000000000000",
|
|
520
|
-
"blockHash": "
|
|
520
|
+
"blockHash": "0x044547c69c4bad3bda803d70b4d8ef5b19bf06e278f596f449e6e07d169642a9",
|
|
521
521
|
"transactionHash": "0x2d6698395a64bb4ec3bdbd574cea7f3915dbe410637fec50e376093a2fe11207",
|
|
522
522
|
"logs": [
|
|
523
523
|
{
|
|
@@ -532,7 +532,7 @@
|
|
|
532
532
|
],
|
|
533
533
|
"data": "0x",
|
|
534
534
|
"logIndex": 0,
|
|
535
|
-
"blockHash": "
|
|
535
|
+
"blockHash": "0x044547c69c4bad3bda803d70b4d8ef5b19bf06e278f596f449e6e07d169642a9"
|
|
536
536
|
}
|
|
537
537
|
],
|
|
538
538
|
"blockNumber": 48,
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
"transactionIndex": 0,
|
|
273
273
|
"gasUsed": "804160",
|
|
274
274
|
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
|
275
|
-
"blockHash": "
|
|
275
|
+
"blockHash": "0x512d930fdaf08e6b100446c5b9be3cc97425f514e568485dc521fa12f03da7f6",
|
|
276
276
|
"transactionHash": "0x8a7bd1e78e9613a9be681bbe3dfb74f3c034114cf2991e7906b835bd5854e74f",
|
|
277
277
|
"logs": [],
|
|
278
278
|
"blockNumber": 5,
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
"transactionIndex": 0,
|
|
245
245
|
"gasUsed": "757154",
|
|
246
246
|
"logsBloom": "0x00000000000000000002000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000001000000000000000000000000000000000800020000000000000000000800000000000000000000000000000000400000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000001000000000000000000000000000000",
|
|
247
|
-
"blockHash": "
|
|
247
|
+
"blockHash": "0xfca77fa1dac5f2f0edbdb2a05d7c51026f7eab2c312b5d8c1955edd6dd241199",
|
|
248
248
|
"transactionHash": "0x8e15662a478fc1edcc26bc07b48c04579332b492209c6d2db5846e5af2ef2b64",
|
|
249
249
|
"logs": [
|
|
250
250
|
{
|
|
@@ -259,7 +259,7 @@
|
|
|
259
259
|
],
|
|
260
260
|
"data": "0x",
|
|
261
261
|
"logIndex": 0,
|
|
262
|
-
"blockHash": "
|
|
262
|
+
"blockHash": "0xfca77fa1dac5f2f0edbdb2a05d7c51026f7eab2c312b5d8c1955edd6dd241199"
|
|
263
263
|
}
|
|
264
264
|
],
|
|
265
265
|
"blockNumber": 69,
|
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
"transactionIndex": 0,
|
|
282
282
|
"gasUsed": "932147",
|
|
283
283
|
"logsBloom": "0x00000000000000000002010000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000800020000000000000000000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000001000000100000000000000000000000",
|
|
284
|
-
"blockHash": "
|
|
284
|
+
"blockHash": "0x7f83f7d8e815db415bab9d26cde6afc0b84cc5331640ff9c291435b36c4d7fd0",
|
|
285
285
|
"transactionHash": "0xb3836a6b4a70dd303fcae09a0a3fe77d7ae057347481c106f86f269498a2491a",
|
|
286
286
|
"logs": [
|
|
287
287
|
{
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
],
|
|
297
297
|
"data": "0x",
|
|
298
298
|
"logIndex": 0,
|
|
299
|
-
"blockHash": "
|
|
299
|
+
"blockHash": "0x7f83f7d8e815db415bab9d26cde6afc0b84cc5331640ff9c291435b36c4d7fd0"
|
|
300
300
|
}
|
|
301
301
|
],
|
|
302
302
|
"blockNumber": 70,
|
|
@@ -385,7 +385,7 @@
|
|
|
385
385
|
"transactionIndex": 0,
|
|
386
386
|
"gasUsed": "3245422",
|
|
387
387
|
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
|
388
|
-
"blockHash": "
|
|
388
|
+
"blockHash": "0x6e6573115ba14df3224233ac6262e2d575a69f04ac7e5be5d4d396788175cc5e",
|
|
389
389
|
"transactionHash": "0x974f5d287fa8bac13def98dee666a522dbd69ad64338be5f09f3265151546705",
|
|
390
390
|
"logs": [],
|
|
391
391
|
"blockNumber": 74,
|
|
@@ -1891,7 +1891,7 @@
|
|
|
1891
1891
|
"transactionIndex": 0,
|
|
1892
1892
|
"gasUsed": "1047176",
|
|
1893
1893
|
"logsBloom": "0x00000000000000000000000000084000400000004000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000800000000000008000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000080000000000000800000000000000000000000000000000400000000000000000000000000000000000000000020000000000000000000040000000000000400000000000008020000000000000000000000000800000000000000000000000000000000000000000000",
|
|
1894
|
-
"blockHash": "
|
|
1894
|
+
"blockHash": "0xf611df3d594e04a3abec88cbadb52684ff12e124e61244cb89e487d980e94853",
|
|
1895
1895
|
"transactionHash": "0x5b1f2fe3505c06deeadf6a1271059e2823b9da1f8a0c8370e2eb25344ddc0439",
|
|
1896
1896
|
"logs": [
|
|
1897
1897
|
{
|
|
@@ -1905,7 +1905,7 @@
|
|
|
1905
1905
|
],
|
|
1906
1906
|
"data": "0x",
|
|
1907
1907
|
"logIndex": 0,
|
|
1908
|
-
"blockHash": "
|
|
1908
|
+
"blockHash": "0xf611df3d594e04a3abec88cbadb52684ff12e124e61244cb89e487d980e94853"
|
|
1909
1909
|
},
|
|
1910
1910
|
{
|
|
1911
1911
|
"transactionIndex": 0,
|
|
@@ -1917,7 +1917,7 @@
|
|
|
1917
1917
|
],
|
|
1918
1918
|
"data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070997970c51812dc3a010c7d01b50e0d17dc79c8",
|
|
1919
1919
|
"logIndex": 1,
|
|
1920
|
-
"blockHash": "
|
|
1920
|
+
"blockHash": "0xf611df3d594e04a3abec88cbadb52684ff12e124e61244cb89e487d980e94853"
|
|
1921
1921
|
},
|
|
1922
1922
|
{
|
|
1923
1923
|
"transactionIndex": 0,
|
|
@@ -1929,7 +1929,7 @@
|
|
|
1929
1929
|
],
|
|
1930
1930
|
"data": "0x0000000000000000000000000000000000000000000000000000000000000001",
|
|
1931
1931
|
"logIndex": 2,
|
|
1932
|
-
"blockHash": "
|
|
1932
|
+
"blockHash": "0xf611df3d594e04a3abec88cbadb52684ff12e124e61244cb89e487d980e94853"
|
|
1933
1933
|
},
|
|
1934
1934
|
{
|
|
1935
1935
|
"transactionIndex": 0,
|
|
@@ -1941,7 +1941,7 @@
|
|
|
1941
1941
|
],
|
|
1942
1942
|
"data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f818a7c2afc45cf4b9ddc48933c9a1edd624e46f",
|
|
1943
1943
|
"logIndex": 3,
|
|
1944
|
-
"blockHash": "
|
|
1944
|
+
"blockHash": "0xf611df3d594e04a3abec88cbadb52684ff12e124e61244cb89e487d980e94853"
|
|
1945
1945
|
}
|
|
1946
1946
|
],
|
|
1947
1947
|
"blockNumber": 35,
|
|
@@ -1963,7 +1963,7 @@
|
|
|
1963
1963
|
"transactionIndex": 0,
|
|
1964
1964
|
"gasUsed": "3938527",
|
|
1965
1965
|
"logsBloom": "0x00000000000000000002000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000001000000000000000000000000000000000800020000000000000000000800000000000000000000000000000000400000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000001000000000002000000000000000000",
|
|
1966
|
-
"blockHash": "
|
|
1966
|
+
"blockHash": "0x9ef1a817b8f4015b4ccd77b98f2a28a35e27657ca865fa689e5a8782ead1a448",
|
|
1967
1967
|
"transactionHash": "0x06596d2d9cf929284e4bcb7c43ff2bb3689563bd9044741b1d787e6211e7c704",
|
|
1968
1968
|
"logs": [
|
|
1969
1969
|
{
|
|
@@ -1978,7 +1978,7 @@
|
|
|
1978
1978
|
],
|
|
1979
1979
|
"data": "0x",
|
|
1980
1980
|
"logIndex": 0,
|
|
1981
|
-
"blockHash": "
|
|
1981
|
+
"blockHash": "0x9ef1a817b8f4015b4ccd77b98f2a28a35e27657ca865fa689e5a8782ead1a448"
|
|
1982
1982
|
}
|
|
1983
1983
|
],
|
|
1984
1984
|
"blockNumber": 39,
|
package/artifacts/Wallets.json
CHANGED
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"transactionIndex": 0,
|
|
112
112
|
"gasUsed": "911756",
|
|
113
113
|
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
|
114
|
-
"blockHash": "
|
|
114
|
+
"blockHash": "0x7d2fdaebfee34dc58f810e6edc0ed1d33b3802df7013c8d741d2099d4699d3ea",
|
|
115
115
|
"transactionHash": "0x17b2e1c64d5cbb456c49811b593009ba16cc7154b86bacde72a51633ad99120d",
|
|
116
116
|
"logs": [],
|
|
117
117
|
"blockNumber": 53,
|