-
Notifications
You must be signed in to change notification settings - Fork 201
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
Add nonce definition to the docs #1098
Comments
@odednaor Does this refer to the nonce of a user account? |
To any contract in Starknet, not only account contracts. What page in the docs should this be on? |
We mention it
I think it should be in the glossary (needs to be added in #1095). This definition that you're referring to here relates specifically to contracts, not transactions, so what do you think about adding it under contract instances in https://docs.starknet.io/documentation/architecture_and_concepts/Smart_Contracts/contract-classes/? |
…instances in contract-classes.adoc (#1099) * Changed title to Contract classes and instances in contract-classes.adoc * Update nav.adoc * Add description of `nonce` to Update contract-classes.adoc This commit addresses issue #1098 * Update components/Starknet/modules/architecture_and_concepts/pages/Smart_Contracts/contract-classes.adoc Co-authored-by: odednaor <odednaor@gmail.com> --------- Co-authored-by: odednaor <odednaor@gmail.com>
The nonce of an address is the number of transactions originating from this address + 1. For example, the
starknet_getNonce
request of an account that was deployed (with nonce 0 in the deploy tx) but that did not send any transactions, should be 1.The text was updated successfully, but these errors were encountered: