0x4300000000000000000000000000000000000002
to change their Gas Mode.
claimAllGas
transaction to the Blast contract.
claimAllGas
. Your resulting claim rate may be anywhere from 50% to 100% depending on how long it has been since the fees were earned.
claimMaxGas
to guarantee a 100% claim rate. By guaranteeing the claim rate, you may not be able to claim all of your gas fees though. Any remaining fees after calling this function will remain in the Blast Gas contract for you to claim later.
claimGasAtMinClaimRate(contractAddress, recipient, 8000)
. Calling this function with a 100% min claim rate is the same as calling claimMaxGas
.
delegatecall
is used, gas fees are allocated to the contract that initiated the delegatecall
and not the target contract where the implementation logic lives.
delegatecall
to an implementation contract, contract E.
delegatecall
Contract E (39,000 gas)zeroClaimRate
: your claim rate immediately after earning gas feesbaseGasSeconds
: the number of seconds your gas fees need to mature to receive the baseClaimRate
ceilGasSeconds
: the number of seconds your gas fees need to mature to receive the ceilClaimRate
ceilClaimRate
requires ceilGasSeconds
ether-seconds. Providing fewer ceilGasSeconds
than this would result in an effective claim rate less than the ceilClaimRate
, based on the zeroClaimRate
and baseClaimRate
parameters.
configureX
with corresponding configureXOnBehalf
version, the difference is that configureX
configures the caller and configureXOnBehalf
configures the contract corresponding to the contractAddress
parameter.