Skip to content

Commit d60ab79

Browse files
committed
Add foundry dev toolkit version 1.0.0
Foundry is a comprehensive toolkit for Ethereum application development. The package includes the following tools: * forge - Build, test, fuzz, debug and deploy Solidity contracts. * cast - A Swiss Army knife for interacting with EVM smart contracts, sending transactions and getting chain data. * anvil - Fast local Ethereum development node. * chisel - Fast, utilitarian, and verbose Solidity REPL. More information refer to https://getfoundry.sh or https://github.com/foundry-rs/foundry
1 parent f054554 commit d60ab79

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

bucket/foundry.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"version": "1.0.0",
3+
"homepage": "https://getfoundry.sh",
4+
"description": "Foundry is a toolkit for Ethereum application development.",
5+
"license": "MIT|Apache-2.0",
6+
"env_add_path": ".",
7+
"architecture": {
8+
"64bit": {
9+
"url": "https://github.com/foundry-rs/foundry/releases/download/v1.0.0/foundry_v1.0.0_win32_amd64.zip",
10+
"hash": "a2408d984e97d8088461117e5c1d6470ca5bf97d864dbb9fc73269258e3d23a0"
11+
}
12+
},
13+
"checkver": {
14+
"url": "https://raw.githubusercontent.com/foundry-rs/foundry/refs/heads/master/Cargo.toml",
15+
"regex": "version = \"([0-9.]+)\""
16+
},
17+
"autoupdate": {
18+
"architecture": {
19+
"64bit": {
20+
"url": "https://github.com/foundry-rs/foundry/releases/download/v$version/foundry_v$version_win32_amd64.zip"
21+
}
22+
}
23+
},
24+
"notes": [
25+
"\"$dir\" has been added to your PATH.",
26+
"Foundry inclde the following tools:",
27+
" * forge - Build, test, fuzz, debug and deploy Solidity contracts.",
28+
" * cast - A cli for interacting with EVM smart contracts.",
29+
" * anvil - Fast local Ethereum development node.",
30+
" * chisel - Fast, utilitarian, and verbose Solidity REPL."
31+
]
32+
}

0 commit comments

Comments
 (0)