Post History
Yes, rusty-kaspa comes with the tool kaspa-cli that supports sending RPC command. For example, to send the RPC command get-block-dag-info you'll need to do the following: git clone https://github...
#2: Post edited
- Yes, `rusty-kaspa` comes with the tool `kaspa-cli` that supports sending RPC command.
- For example, to send the RPC command `get-block-dag-info` you'll need to do the following:
- ```
- git clone https://github.com/kaspanet/rusty-kaspa.git
- cd rusty-kaspa
- cargo run --release --bin kaspa-cli
- ```
- And then in the interactive prompt enter:
- ```
- connect <NODE-ADDRESS>
- rpc get-block-dag-info
- ```
- Yes, `rusty-kaspa` comes with the tool `kaspa-cli` that supports sending RPC command.
- For example, to send the RPC command `get-block-dag-info` you'll need to do the following:
- ```
- git clone https://github.com/kaspanet/rusty-kaspa.git
- cd rusty-kaspa
- git checkout stable
- cargo run --release --bin kaspa-cli
- ```
- And then in the interactive prompt enter:
- ```
- connect <NODE-ADDRESS>
- rpc get-block-dag-info
- ```
#1: Initial revision
Yes, `rusty-kaspa` comes with the tool `kaspa-cli` that supports sending RPC command. For example, to send the RPC command `get-block-dag-info` you'll need to do the following: ``` git clone https://github.com/kaspanet/rusty-kaspa.git cd rusty-kaspa cargo run --release --bin kaspa-cli ``` And then in the interactive prompt enter: ``` connect <NODE-ADDRESS> rpc get-block-dag-info ```