foundry系列工具介绍,及常用命令
foundry
foundry系列的工具,主要包含三大组件,分别对应不同的功能,下面会每个组件依次试用。
- forge:主要用来开发、编译、部署合约。
- cast:执行以太坊 RPC 调用的命令行工具
- anvil:本地模拟节点环境,类似于ganache-cli的功能。
forge工具
- 初始化
forge init
- 安装依赖环境
forge b
- 生成合约code到指定目录
forge inspect ScoreDemo bytecode -o ./contract_code
目录中的bytecode为需要部署合约的值
cast工具
1
| cast block -r http://localhost:8545
|
1
| cast block -r http://localhost:8545 {区块高度}
|
1
| cast balance -r http://localhost:8545 {钱包地址}
|
1
| cast nonce -r http://localhost:8545 {钱包地址}
|
1 2
| cast tx -r http://localhost:8545 {交易hash}
|
1 2
| cast receipt -r http://localhost:8545 {交易hash}
|
1 2 3 4 5 6 7 8 9 10 11
| cast call -r http://localhost:8545 {合约地址} "函数名称(函数入参类型)(返回参数类型)" {入参参数}
cast call -r http://localhost:8545 0x27EddE8d0dF786996E5e389AcbdfE804ba9eaDb6 "getNumber()" cast call -r http://localhost:8545 0x27EddE8d0dF786996E5e389AcbdfE804ba9eaDb6 "getNumber(uint256)(uint256)" 10 cast call -r http://localhost:8545 0xca5703d000BD3632169C21F4461Ad7E6f9F1a178 "getAll()(uint256[],string)"
------------ cast call -r http://localhost:8545 {合约地址} {method code} {编码后的input data}
cast call -r http://localhost:8545 0x27EddE8d0dF786996E5e389AcbdfE804ba9eaDb6 0xf2c9ecd8
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| cast send -r http://localhost:8545 合约地址 "函数名称(函数入参类型)(返回参数类型)" {入参参数} --private-key {账户私钥} --legacy --async
cast send -r http://localhost:8545 0x27EddE8d0dF786996E5e389AcbdfE804ba9eaDb6 "setNumber0(uint256)" 100 --private-key 97dc393924f6d82795f4caf56a79b88ff4df036b04db076f2d254f6bfe0ea869 --legacy --async
cast send -r http://localhost:8545 0xca5703d000BD3632169C21F4461Ad7E6f9F1a178 "arrayPush1(uint256[])" "[1,2,3]" --private-key 97dc393924f6d82795f4caf56a79b88ff4df036b04db076f2d254f6bfe0ea869 --legacy --async
cast send -r http://localhost:8545 0xca5703d000BD3632169C21F4461Ad7E6f9F1a178 "stringSet1(string)" "1" --private-key 97dc393924f6d82795f4caf56a79b88ff4df036b04db076f2d254f6bfe0ea869 --legacy --async
------------ cast send -r http://localhost:8545 合约地址 {编码后的入参} --private-key {账户私钥} --legacy --async
cast send -r http://localhost:8545 0x27EddE8d0dF786996E5e389AcbdfE804ba9eaDb6 0x845e38e40000000000000000000000000000000000000000000000000000000000000064 --private-key 97dc393924f6d82795f4caf56a79b88ff4df036b04db076f2d254f6bfe0ea869 --legacy --async
|
1 2 3
| cast calldata-decode "方法名称(方法参数)" {input}
cast calldata-decode "setAll(uint256[] memory numbers,string memory datav)" 0x105dc92f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000013100000000000000000000000000000000000000000000000000000000000000
|
1 2 3 4
| cast abi-decode "事件名称(事件类型)" {log.data} -i
cast abi-decode "ArrayPush1(uint256[])" 0x000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000013100000000000000000000000000000000000000000000000000000000000000 -i
|
1 2 3 4 5
| cast sig-event "事件"
cast sig-event "NumberSet1(uint256 number)" cast sig-event "SetAll(uint256[] numbers,string data,address from)"
|
1 2 3 4 5
| cast sig "函数"
cast sig "getNumber()" cast sig "setAll(uint256[] memory numbers,string memory datav)"
|
1 2 3 4
| cast logs -r http://localhost:8545 --from-block 1425810 --to-block latest 0x9283ff3607e3da47fe0733402e95abd90472527fbbac5a26edffcbd508134773 0x00000000000000000000000027EddE8d0dF786996E5e389AcbdfE804ba9eaDb6
curl --data '{"rpc":"2.0","method":"eth_newFilter","params":[{"fromBlock": "0x15C192","toBlock": "0x15C19C","address": "0x27EddE8d0dF786996E5e389AcbdfE804ba9eaDb6","topics": ["0x9283ff3607e3da47fe0733402e95abd90472527fbbac5a26edffcbd508134773"]}],"id":1}' -H "Content-Type: application/" -X POST localhost:8545
|
1 2 3 4 5
| cast to-hex 10 cast to-dec a
cast to-base 0xa 10 cast to-base 10 16
|
anvil工具
- fork指定环境的区块链到本地
anvil -f 10.10.10.32:8545 –auto-impersonate