-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat/starknet_estimateFee #37
Comments
There hasn't been any activity on this issue recently, and in order to prioritize active issues, it will be marked as stale. |
can i take this one Boss ? |
There hasn't been any activity on this issue recently, and in order to prioritize active issues, it will be marked as stale. |
Issue: Implement
starknet_estimateFee
RPC CallDescription:
The
starknet_estimateFee
RPC call has been implemented but requires further testing and verification against the entire state. This RPC call estimates the resources required by transactions when applied on a given state.Parameters:
request
: The transaction(s) to estimate. This is a sequence of transactions to estimate, running each transaction on the state resulting from applying all the previous ones. This parameter is required.block_id
: The hash of the requested block, or number (height) of the requested block, or a block tag, for the block referencing the state or call the transaction on. This parameter is required.Expected Result:
A sequence of fee estimations where the i'th estimate corresponds to the i'th transaction.
Potential Errors:
CONTRACT_NOT_FOUND
: The specified contract could not be found.CONTRACT_ERROR
: An error occurred in the contract.BLOCK_NOT_FOUND
: The specified block could not be found.Testing:
Initial testings can be found here. However, these should not be considered complete and improvements are welcome.
Resources:
Comments:
Please comment below for coordination.
The text was updated successfully, but these errors were encountered: