Skip to content

Commit

Permalink
Mainnet updates (#60)
Browse files Browse the repository at this point in the history
* chore: change log.txt to log.log

* update mainnet deployment ABIs
  • Loading branch information
scolear authored May 10, 2024
1 parent 3e041b2 commit 5afd44f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions deploymentFiles/arbitrum/DLCBTC.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand All @@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion deploymentFiles/arbitrum/DLCManager.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down
2 changes: 2 additions & 0 deletions deploymentFiles/arbitrum/TokenManager.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion scripts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5afd44f

Please sign in to comment.