diff --git a/deploymentFiles/arbitrum/DLCBTC.json b/deploymentFiles/arbitrum/DLCBTC.json index fc79a13..77a6c40 100644 --- a/deploymentFiles/arbitrum/DLCBTC.json +++ b/deploymentFiles/arbitrum/DLCBTC.json @@ -10,10 +10,13 @@ "constructor()", "error BlacklistedRecipient()", "error BlacklistedSender()", + "error NotAuthorized()", "event Approval(address indexed owner, address indexed spender, uint256 value)", "event Blacklisted(address account)", + "event BurnerSet(address burner)", "event EIP712DomainChanged()", "event Initialized(uint8 version)", + "event MinterSet(address minter)", "event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)", "event Transfer(address indexed from, address indexed to, uint256 value)", "event Unblacklisted(address account)", @@ -35,6 +38,8 @@ "function owner() view returns (address)", "function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s)", "function renounceOwnership()", + "function setBurner(address burner)", + "function setMinter(address minter)", "function symbol() view returns (string)", "function totalSupply() view returns (uint256)", "function transfer(address to, uint256 amount) returns (bool)", diff --git a/deploymentFiles/arbitrum/DLCManager.json b/deploymentFiles/arbitrum/DLCManager.json index 6e1ea55..6aa8bb7 100644 --- a/deploymentFiles/arbitrum/DLCManager.json +++ b/deploymentFiles/arbitrum/DLCManager.json @@ -55,9 +55,9 @@ "function defaultAdminDelayIncreaseWait() view returns (uint48)", "function dlcIDsByUUID(bytes32) view returns (uint256)", "function dlcs(uint256) view returns (bytes32 uuid, address protocolContract, uint256 timestamp, uint256 valueLocked, address creator, uint8 status, string fundingTxId, string closingTxId, string btcFeeRecipient, uint256 btcMintFeeBasisPoints, uint256 btcRedeemFeeBasisPoints, string taprootPubKey)", + "function getAllDLCs(uint256 startIndex, uint256 endIndex) view returns (tuple(bytes32 uuid, address protocolContract, uint256 timestamp, uint256 valueLocked, address creator, uint8 status, string fundingTxId, string closingTxId, string btcFeeRecipient, uint256 btcMintFeeBasisPoints, uint256 btcRedeemFeeBasisPoints, string taprootPubKey)[])", "function getDLC(bytes32 uuid) view returns (tuple(bytes32 uuid, address protocolContract, uint256 timestamp, uint256 valueLocked, address creator, uint8 status, string fundingTxId, string closingTxId, string btcFeeRecipient, uint256 btcMintFeeBasisPoints, uint256 btcRedeemFeeBasisPoints, string taprootPubKey))", "function getDLCByIndex(uint256 index) view returns (tuple(bytes32 uuid, address protocolContract, uint256 timestamp, uint256 valueLocked, address creator, uint8 status, string fundingTxId, string closingTxId, string btcFeeRecipient, uint256 btcMintFeeBasisPoints, uint256 btcRedeemFeeBasisPoints, string taprootPubKey))", - "function getFundedDLCs(uint256 startIndex, uint256 endIndex) view returns (tuple(bytes32 uuid, address protocolContract, uint256 timestamp, uint256 valueLocked, address creator, uint8 status, string fundingTxId, string closingTxId, string btcFeeRecipient, uint256 btcMintFeeBasisPoints, uint256 btcRedeemFeeBasisPoints, string taprootPubKey)[])", "function getMinimumThreshold() view returns (uint16)", "function getRoleAdmin(bytes32 role) view returns (bytes32)", "function getSignerCount() view returns (uint16)", diff --git a/deploymentFiles/arbitrum/TokenManager.json b/deploymentFiles/arbitrum/TokenManager.json index 36cd96c..761a826 100644 --- a/deploymentFiles/arbitrum/TokenManager.json +++ b/deploymentFiles/arbitrum/TokenManager.json @@ -82,8 +82,10 @@ "function setBtcFeeRecipient(string btcFeeRecipientToSet)", "function setBtcMintFeeRate(uint256 newBtcMintFeeRate)", "function setBtcRedeemFeeRate(uint256 newBtcRedeemFeeRate)", + "function setBurnerOnTokenContract(address burner)", "function setMaximumDeposit(uint256 newMaximumDeposit)", "function setMinimumDeposit(uint256 newMinimumDeposit)", + "function setMinterOnTokenContract(address minter)", "function setStatusFunded(bytes32 uuid, string btcTxId)", "function setWhitelistingEnabled(bool isWhitelistingEnabled)", "function setupVault(uint256 btcDeposit) returns (bytes32)", diff --git a/scripts/index.js b/scripts/index.js index 020455b..a31a934 100755 --- a/scripts/index.js +++ b/scripts/index.js @@ -39,7 +39,7 @@ const util = require('util'); const chalk = require('chalk'); // Name of the file to save the log messages -const logFileName = 'log.txt'; +const logFileName = 'log.log'; // Save the reference to the original console.log function const originalConsoleLog = console.log;