Skip to content

Commit

Permalink
Adjust blast fee (#128)
Browse files Browse the repository at this point in the history
* adjust blast fee

* adjust blast fee
  • Loading branch information
hujw77 authored Mar 5, 2024
1 parent 7eb070d commit 5f935ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/fee.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set -x
# forge script script/fee/Fee.s.sol:Fee --sig "run(uint256)" 46 --chain-id 137 --broadcast
# forge script script/fee/Fee.s.sol:Fee --sig "run(uint256)" 137 --chain-id 46 --broadcast --slow --legacy
forge script script/fee/Fee.s.sol:Fee --sig "run(uint256)" 81457 --chain-id 42161 --broadcast --legacy --skip-simulation
forge script script/fee/Fee.s.sol:Fee --sig "run(uint256)" 42161 --chain-id 81457 --broadcast --legacy --with-gas-price 1060000
# forge script script/fee/Fee.s.sol:Fee --sig "run(uint256)" 42161 --chain-id 81457 --broadcast --legacy --with-gas-price 1060000

# forge script script/fee/Fee.s.sol:Fee --sig "run(uint256)" 11155111 --chain-id 43 --broadcast
# forge script script/fee/Fee.s.sol:Fee --sig "run(uint256)" 421614 --chain-id 43 --broadcast
Expand Down
2 changes: 1 addition & 1 deletion script/fee/Fee.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ contract Fee is Common {
function run(uint256 chainId) public {
// require(dao == msg.sender, "!dao");
setOracleFee(chainId);
// setRelayerFee(chainId);
setRelayerFee(chainId);
}

function setOracleFee(uint256 chainId) public broadcast {
Expand Down
6 changes: 3 additions & 3 deletions script/input/42161/fee.c.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"fee": 20000000000000
},
"81457": {
"fee": 200000000000000
"fee": 600000000000000
}
},
"RELAYER": {
Expand All @@ -25,8 +25,8 @@
},
"81457": {
"dstPriceRatio": 10000000000,
"dstGasPriceInWei": 1100000,
"baseGas": 200000,
"dstGasPriceInWei": 3000000000,
"baseGas": 120000,
"gasPerByte": 16
}
}
Expand Down

0 comments on commit 5f935ec

Please sign in to comment.