Skip to content
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

Subitem fix for menu #828

Merged
merged 2 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions components/Starknet/modules/quick_start/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@

** xref:set_up_an_account.adoc[Set up an account]
*** xref:set_up_an_account.adoc#create_an_account[Create an account]
**** xref:set_up_an_account.adoc#creating_a_signer[Create a Signer]
**** xref:set_up_an_account.adoc#create_a_signer[Create a Signer]
**** xref:set_up_an_account.adoc#create_an_account_descriptor[Create an Account Descriptor]

*** xref:set_up_an_account.adoc#deploy_an_account[Deploy an account]

** xref:compile_and_deploy.adoc[Compile and deploy a contract]
*** xref:compile_and_deploy.adoc#declare_a_smart_contract[Declare a smart contract]
*** xref:compile_and_deploy.adoc#deploy_a_smart_contract[Deploy a smart contract]
*** xref:compile_and_deploy.adoc#interact_with_a_smart_contract[Interact with a smart contract]
*** xref:compile_and_deploy.adoc#call_a_function[Call a function]
*** xref:compile_and_deploy.adoc#invoke_a_function [Invoke a function]
**** xref:compile_and_deploy.adoc#call_a_function[Call a function]
**** xref:compile_and_deploy.adoc#invoke_a_function [Invoke a function]
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ This will return the address that we passed to the constructor during deployment

=== Invoke a function

To modify the state of the smart contract, use the invoke command.
To modify the state of the smart contract, use the `invoke` command.

In this example, we'll invoke the `transfer_ownership` function to transfer the ownership from our deployer address to a different smart wallet address:

Expand Down
Loading