Skip to content

Commit

Permalink
Changed title in nav.adoc to Account interface function reference
Browse files Browse the repository at this point in the history
  • Loading branch information
stoobie committed Mar 20, 2024
2 parents 14a0a2e + 478c961 commit f9c46d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
** Accounts
*** xref:Accounts/introduction.adoc[What is an account?]
*** xref:Accounts/approach.adoc[Starknet's account interface]
*** xref:Accounts/account_functions.adoc[Account function reference]
*** xref:Accounts/account_functions.adoc[Account interface function reference]
*** xref:Accounts/deploying_new_accounts.adoc[Deploying new accounts]
*** xref:Accounts/simplified_transaction_flow.adoc[Simplified transaction flow]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ The functions in the table xref:#starknet_account_interface_functions[] are part
|===
| Function name | When required

| `+__validate__+` | Alway required
| `+__execute__+` | Alway required
| `+__validate__+` | Always required
| `+__execute__+` | Always required
| `+__validate_declare__+` | Required for a contract to be able to send a `DECLARE` transaction.
| `+__validate_deploy__+` | Required when deploying an account with a `DEPLOY_ACCOUNT` _transaction_.
| constructor | If an account does not define a constructor function, the sequencer uses a default constructor function, which is empty.
Expand Down Expand Up @@ -94,7 +94,7 @@ For examples of account contracts that implement these functions, see link:https

.Description

_Alway required_
_Always required_

Initiates the execution stage in the sequencer. The sequencer calls this function upon receiving an `INVOKE` transaction, after the `+__validate__+` function successfully completes.

Expand Down Expand Up @@ -161,7 +161,7 @@ If the signature is verified, the function should return the string `VALID` as `

'''

[id="__validate_deploy__+"]
[id="__validate_deploy__"]
=== `+__validate_deploy__+`

.Description
Expand Down

0 comments on commit f9c46d8

Please sign in to comment.