Skip to content

Commit fe6032b

Browse files
committed
minor updates
1 parent 9078653 commit fe6032b

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

sdk/deployments/dev3RinkebyBaseChain.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,5 +258,14 @@
258258
],
259259
"hash": "0xbb5bda37bdd726212b9c9cc5c08045d8b4eeec3631d24ba4a3293b8f34362b54",
260260
"blockNumber": 9535779
261+
},
262+
"batchRebaseReporter": {
263+
"address": "0x9b8a5d60567C342DFF24cA04fCab64e41d518b1C",
264+
"abi": [
265+
"event TransactionFailed(address indexed destination, uint256 index, bytes data, bytes reason)",
266+
"function executeAll(address[] destinations, bytes[] data, uint256[] values) payable returns (bool)"
267+
],
268+
"hash": "0x5478a4b326b9472b1e9c64350ada1e0b381c455efb2e6ffe03437848b9d1624f",
269+
"blockNumber": 9612686
261270
}
262271
}

tasks/info/ampl.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,14 @@ task(
253253
'XCAmpleController:totalSupply',
254254
toAmplFloatingPt(globalAMPLSupply),
255255
);
256+
console.log(
257+
'XCAmpleController:nextGlobalAmpleforthEpoch',
258+
(await xcAmpleController.nextGlobalAmpleforthEpoch()).toString(),
259+
);
260+
console.log(
261+
'XCAmpleController:nextGlobalAMPLSupply',
262+
toAmplFloatingPt(await xcAmpleController.nextGlobalAMPLSupply()),
263+
);
256264
console.log('XCAmpleController:gatewayWhitelist', gatewayWhitelist);
257265
console.log(
258266
'XCAmpleController:rebaseRelayer',

tasks/ops/rebase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ txTask(
201201
const [_submissionPriceWei, nextUpdateTimestamp] =
202202
await arb.l2Bridge.getTxnSubmissionPrice(fnBytesLength);
203203
const submissionPriceWei = _submissionPriceWei.mul(5); // buffer can be reduced
204-
const maxGas = 500000;
204+
const maxGas = 200000;
205205
const gasPriceBid = await satChainProvider.getGasPrice();
206206
const callValue = submissionPriceWei.add(gasPriceBid.mul(maxGas));
207207
txParams.value = callValue;

0 commit comments

Comments
 (0)