You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/starknet/declare.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ For a detailed CLI description, see [declare command reference](../appendix/cast
9
9
## Usage example
10
10
11
11
> 📝 **Note**
12
-
> Building a contract before running `declare` is not required. Starknet Foundry `cast` builds a contract during declaration under the hood using [Scarb](https://docs.swmansion.com/scarb).
12
+
> Building a contract before running `declare` is not required. Starknet Foundry `sncast` builds a contract during declaration under the hood using [Scarb](https://docs.swmansion.com/scarb).
13
13
14
14
First make sure that you have created a [`Scarb.toml`](../projects/template.md) file for your contract (it should be present in project directory or one of its parent directories).
Copy file name to clipboardExpand all lines: docs/src/starknet/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# Cast overview
2
2
3
-
Starknet Foundry `cast` is a command line tool for performing Starknet RPC calls. With it, you can easily interact with Starknet contracts!
3
+
Starknet Foundry `sncast` is a command line tool for performing Starknet RPC calls. With it, you can easily interact with Starknet contracts!
4
4
5
5
> 💡 **Info**
6
-
> At the moment, `cast` only supports contracts written in Cairo 1 and Cairo 2.
6
+
> At the moment, `sncast` only supports contracts written in Cairo 1 and Cairo 2.
7
7
8
8
## How to use cast
9
9
@@ -12,14 +12,14 @@ To use cast, run the `sncast` command followed by a subcommand (see [available c
12
12
$ sncast <subcommand>
13
13
```
14
14
15
-
If `Scarb.toml` is present and configured with `[tool.cast]`, `url`, `network` and `account` name will be taken from it. You can, however, overwrite their values by supplying them as flags directly to `cast` cli.
15
+
If `Scarb.toml` is present and configured with `[tool.sncast]`, `url`, `network` and `account` name will be taken from it. You can, however, overwrite their values by supplying them as flags directly to `sncast` cli.
16
16
17
17
> 💡 **Info**
18
18
> Some transactions (like declaring, deploying or invoking) require paying a fee, and they must be signed.
Copy file name to clipboardExpand all lines: starknet-foundry/crates/cast/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# Cast - Starknet Foundry CLI
2
2
3
-
Starknet Foundry `cast` is a command line tool for performing Starknet RPC calls. With it, you can easily interact with Starknet contracts!
3
+
Starknet Foundry `sncast` is a command line tool for performing Starknet RPC calls. With it, you can easily interact with Starknet contracts!
4
4
5
-
Note, that at the moment, `cast` only supports contracts written in Cairo 1 and Cairo 2.
5
+
Note, that at the moment, `sncast` only supports contracts written in Cairo 1 and Cairo 2.
6
6
7
7
## Table of contents
8
8
@@ -19,11 +19,11 @@ Note, that at the moment, `cast` only supports contracts written in Cairo 1 and
19
19
20
20
## Installation
21
21
22
-
You can download latest version of `cast`[here](https://github.com/foundry-rs/starknet-foundry/releases).
22
+
You can download latest version of `sncast`[here](https://github.com/foundry-rs/starknet-foundry/releases).
23
23
24
24
## Documentation
25
25
26
-
For more details on Starknet Foundry `cast`, please visit [our docs](https://foundry-rs.github.io/starknet-foundry/starknet/index.html)
26
+
For more details on Starknet Foundry `sncast`, please visit [our docs](https://foundry-rs.github.io/starknet-foundry/starknet/index.html)
27
27
28
28
## Example usages
29
29
All subcommand usages are shown for two scenarios - when all necessary arguments are supplied using CLI, and when `network`, `url` and `account` arguments are taken from `Scarb.toml`. To learn more about configuring profiles with parameters in `Scarb.toml` file, please refer to the [documentation](https://foundry-rs.github.io/starknet-foundry/projects/configuration.html#defining-profiles-in-scarbtoml).
Refer to [documentation](https://foundry-rs.github.io/starknet-foundry/development/environment-setup.html) to make sure you have all the pre-requisites, and to obtain an information on how to help to develop `cast`.
140
+
Refer to [documentation](https://foundry-rs.github.io/starknet-foundry/development/environment-setup.html) to make sure you have all the pre-requisites, and to obtain an information on how to help to develop `sncast`.
141
141
142
142
Please make sure you're using scarb installed via asdf - otherwise some tests may fail.
0 commit comments