File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
components/Starknet/modules/quick-start/pages Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -78,8 +78,7 @@ Finally, to deploy your account run:
7878[source,terminal]
7979----
8080starkli account deploy account.json \
81- --network=sepolia \
82- --strk
81+ --network=sepolia
8382----
8483
8584This command sends a `DEPLOY_ACCOUNT` transaction, which requires the account to contain enough STRK to pay for the transaction fee.
@@ -108,8 +107,7 @@ Unlike when using a Starknet Devnet instance, there's no need for us to declare
108107----
109108starkli declare \
110109 target/dev/hello_starknet_HelloStarknet.contract_class.json \
111- --network=sepolia \
112- --strk
110+ --network=sepolia
113111----
114112
115113and entering your password. The result should resemble to the following:
@@ -126,8 +124,7 @@ With `HelloStarknet` already declared, you can deploy an instance of it by runni
126124----
127125starkli deploy \
128126 0x0785c92bf4aa7a89fb62371802aef2f58e2333d8df7e2aadf938efa83735431c \
129- --network=sepolia \
130- --strk
127+ --network=sepolia
131128----
132129
133130and entering your password. If successful, the result should resemble the following:
@@ -157,8 +154,7 @@ Now that your instance of `HelloStarknet` is deployed, you can invoke its `incre
157154starkli invoke \
158155 0x00ed474ec67f690901bcc56ee69491163c4203ededf473198e08c24fe2ab0a29 \
159156 increase_balance 66 \
160- --network=sepolia \
161- --strk
157+ --network=sepolia
162158----
163159
164160and entering your password. If successful, the result should resemble the following:
You can’t perform that action at this time.
0 commit comments