You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API to allow EVM contracts to schedule contract call.
Precompiles to allow contract to schedule a call with min_delay, gas_limit, target, input, value.
Reserve gas_limit * DefaultGasPrice
New call fn scheduled_call(origin, from, target, input, value, gas_limit), ensure_root and otherwise similar to call, refund unused gas and move used gas payment to treasury.
Use pallet-scheduler to schedule a call with scheduled_call
Predeployed contract to call the precompiles.
Some example code of using this feature.
The text was updated successfully, but these errors were encountered:
API to allow EVM contracts to schedule contract call.
Precompiles to allow contract to schedule a call with
min_delay, gas_limit, target, input, value
.Reserve
gas_limit * DefaultGasPrice
New call
fn scheduled_call(origin, from, target, input, value, gas_limit)
, ensure_root and otherwise similar tocall
, refund unused gas and move used gas payment to treasury.Use pallet-scheduler to schedule a call with
scheduled_call
Predeployed contract to call the precompiles.
Some example code of using this feature.
The text was updated successfully, but these errors were encountered: