Skip to content

Commit b072897

Browse files
authored
removed --strk from starkli commands in quickstart/sepolia
1 parent 7b3216d commit b072897

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

components/Starknet/modules/quick-start/pages/sepolia.adoc

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ Finally, to deploy your account run:
7878
[source,terminal]
7979
----
8080
starkli account deploy account.json \
81-
--network=sepolia \
82-
--strk
81+
--network=sepolia
8382
----
8483

8584
This 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
----
109108
starkli declare \
110109
target/dev/hello_starknet_HelloStarknet.contract_class.json \
111-
--network=sepolia \
112-
--strk
110+
--network=sepolia
113111
----
114112

115113
and 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
----
127125
starkli deploy \
128126
0x0785c92bf4aa7a89fb62371802aef2f58e2333d8df7e2aadf938efa83735431c \
129-
--network=sepolia \
130-
--strk
127+
--network=sepolia
131128
----
132129

133130
and 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
157154
starkli invoke \
158155
0x00ed474ec67f690901bcc56ee69491163c4203ededf473198e08c24fe2ab0a29 \
159156
increase_balance 66 \
160-
--network=sepolia \
161-
--strk
157+
--network=sepolia
162158
----
163159

164160
and entering your password. If successful, the result should resemble the following:

0 commit comments

Comments
 (0)