@foundry-rs/cast 1.4.4-nightly.20251028.9273fd8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/package.json +34 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Cast
|
|
2
|
+
|
|
3
|
+
Cast is a Swiss Army knife for interacting with Ethereum applications from the command line.
|
|
4
|
+
You can make smart contract calls, send transactions, or retrieve any type of chain data - all from your command-line!
|
|
5
|
+
The cast binary can be used both within and outside of a Foundry project.
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@foundry-rs/cast",
|
|
3
|
+
"version": "1.4.4-nightly.20251028.9273fd8",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"homepage": "https://getfoundry.sh/cast",
|
|
6
|
+
"description": "Swiss Army knife for interacting with Ethereum applications from the command line",
|
|
7
|
+
"bin": {
|
|
8
|
+
"cast": "./bin.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"postinstall": "node ./dist/install.mjs"
|
|
16
|
+
},
|
|
17
|
+
"optionalDependencies": {
|
|
18
|
+
"@foundry-rs/cast-darwin-arm64": "1.4.4-nightly.20251028.9273fd8",
|
|
19
|
+
"@foundry-rs/cast-darwin-amd64": "1.4.4-nightly.20251028.9273fd8",
|
|
20
|
+
"@foundry-rs/cast-linux-arm64": "1.4.4-nightly.20251028.9273fd8",
|
|
21
|
+
"@foundry-rs/cast-linux-amd64": "1.4.4-nightly.20251028.9273fd8",
|
|
22
|
+
"@foundry-rs/cast-win32-amd64": "1.4.4-nightly.20251028.9273fd8"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public",
|
|
26
|
+
"provenance": true,
|
|
27
|
+
"registry": "https://registry.npmjs.org"
|
|
28
|
+
},
|
|
29
|
+
"license": "MIT OR Apache-2.0",
|
|
30
|
+
"repository": {
|
|
31
|
+
"directory": "npm",
|
|
32
|
+
"url": "https://github.com/foundry-rs/foundry"
|
|
33
|
+
}
|
|
34
|
+
}
|