@keep-network/tbtc-v2 0.1.1-dev.82 → 0.1.1-dev.85
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 +16 -16
- package/artifacts/Bridge.json +33 -11
- package/artifacts/Deposit.json +7 -7
- package/artifacts/DepositSweep.json +7 -7
- package/artifacts/EcdsaDkgValidator.json +1 -1
- package/artifacts/EcdsaInactivity.json +1 -1
- package/artifacts/EcdsaSortitionPool.json +2 -2
- 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 +7 -7
- package/artifacts/NuCypherStakingEscrow.json +1 -1
- package/artifacts/NuCypherToken.json +2 -2
- package/artifacts/RandomBeaconStub.json +1 -1
- package/artifacts/Redemption.json +26 -14
- package/artifacts/ReimbursementPool.json +2 -2
- package/artifacts/Relay.json +11 -11
- package/artifacts/T.json +2 -2
- package/artifacts/TBTC.json +13 -13
- package/artifacts/TBTCToken.json +13 -13
- package/artifacts/TBTCVault.json +50 -21
- package/artifacts/TokenStaking.json +1 -1
- package/artifacts/TokenholderGovernor.json +9 -9
- package/artifacts/TokenholderTimelock.json +8 -8
- package/artifacts/VendingMachine.json +11 -11
- package/artifacts/VendingMachineKeep.json +1 -1
- package/artifacts/VendingMachineNuCypher.json +1 -1
- package/artifacts/WalletRegistry.json +5 -5
- package/artifacts/WalletRegistryGovernance.json +2 -2
- package/artifacts/Wallets.json +9 -9
- package/artifacts/solcInputs/{5cd0a97e230d515eacf46fb60ea8963a.json → 0f79d51f4c2e0d6bf7d919933c677b91.json} +12 -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/bank/Bank.sol/Bank.json +2 -2
- package/build/contracts/bank/IReceiveBalanceApproval.sol/IReceiveBalanceApproval.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 +73 -42
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +2 -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 +1 -1
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +2 -2
- 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/Heartbeat.sol/Heartbeat.dbg.json +1 -1
- 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 +2 -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/DonationVault.sol/DonationVault.dbg.json +1 -1
- package/build/contracts/vault/DonationVault.sol/DonationVault.json +2 -2
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.json +21 -3
- package/contracts/bank/Bank.sol +1 -1
- package/contracts/bank/IReceiveBalanceApproval.sol +2 -2
- package/contracts/bridge/BitcoinTx.sol +1 -1
- package/contracts/bridge/Bridge.sol +85 -6
- package/contracts/bridge/Redemption.sol +160 -6
- package/contracts/vault/TBTCVault.sol +47 -9
- package/deploy/11_initialize_wallet_owner.ts +18 -0
- package/export.json +41 -1
- package/package.json +1 -1
package/export.json
CHANGED
|
@@ -15515,6 +15515,28 @@
|
|
|
15515
15515
|
],
|
|
15516
15516
|
"outputs": []
|
|
15517
15517
|
},
|
|
15518
|
+
{
|
|
15519
|
+
"type": "function",
|
|
15520
|
+
"name": "receiveBalanceApproval",
|
|
15521
|
+
"constant": false,
|
|
15522
|
+
"payable": false,
|
|
15523
|
+
"gas": 29000000,
|
|
15524
|
+
"inputs": [
|
|
15525
|
+
{
|
|
15526
|
+
"type": "address",
|
|
15527
|
+
"name": "balanceOwner"
|
|
15528
|
+
},
|
|
15529
|
+
{
|
|
15530
|
+
"type": "uint256",
|
|
15531
|
+
"name": "amount"
|
|
15532
|
+
},
|
|
15533
|
+
{
|
|
15534
|
+
"type": "bytes",
|
|
15535
|
+
"name": "redemptionData"
|
|
15536
|
+
}
|
|
15537
|
+
],
|
|
15538
|
+
"outputs": []
|
|
15539
|
+
},
|
|
15518
15540
|
{
|
|
15519
15541
|
"type": "function",
|
|
15520
15542
|
"name": "redemptionParameters",
|
|
@@ -16919,7 +16941,7 @@
|
|
|
16919
16941
|
},
|
|
16920
16942
|
{
|
|
16921
16943
|
"internalType": "bytes",
|
|
16922
|
-
"name": "",
|
|
16944
|
+
"name": "extraData",
|
|
16923
16945
|
"type": "bytes"
|
|
16924
16946
|
}
|
|
16925
16947
|
],
|
|
@@ -17058,6 +17080,24 @@
|
|
|
17058
17080
|
"outputs": [],
|
|
17059
17081
|
"stateMutability": "nonpayable",
|
|
17060
17082
|
"type": "function"
|
|
17083
|
+
},
|
|
17084
|
+
{
|
|
17085
|
+
"inputs": [
|
|
17086
|
+
{
|
|
17087
|
+
"internalType": "uint256",
|
|
17088
|
+
"name": "amount",
|
|
17089
|
+
"type": "uint256"
|
|
17090
|
+
},
|
|
17091
|
+
{
|
|
17092
|
+
"internalType": "bytes",
|
|
17093
|
+
"name": "redemptionData",
|
|
17094
|
+
"type": "bytes"
|
|
17095
|
+
}
|
|
17096
|
+
],
|
|
17097
|
+
"name": "unmintAndRedeem",
|
|
17098
|
+
"outputs": [],
|
|
17099
|
+
"stateMutability": "nonpayable",
|
|
17100
|
+
"type": "function"
|
|
17061
17101
|
}
|
|
17062
17102
|
]
|
|
17063
17103
|
}
|