We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0855ecf commit 47f45dcCopy full SHA for 47f45dc
README.md
@@ -76,7 +76,19 @@ devd query debug_traceTransaction [0xHash] [--tracer callTracer] [--rpc http://l
76
#### Send EVM transaction
77
78
```bash
79
-devd tx send [to] [amount] [--rpc http://localhost:8545]
+# Transfer native coin
80
+devd tx send [to] [amount]
81
+# Transfer ERC-20 token
82
+devd tx send [to] [amount] [--erc20 contract_address]
83
+```
84
+
85
+#### Deploy EVM contract
86
87
+```bash
88
+# Deploy contract with deployment bytecode
89
+devd tx deploy-contract [deployment bytecode]
90
+# Deploy ERC-20 contract with pre-defined bytecode
91
+devd tx deploy-contract erc20
92
```
93
94
### Convert tools
0 commit comments