Skip to content

Commit

Permalink
Addition of port missing from commands using the RPC endpoint (#401)
Browse files Browse the repository at this point in the history
Addition of the port missing from commands using the RPC endpoint
  • Loading branch information
emperorjm authored Oct 4, 2023
1 parent e9bb3ea commit 1fdb527
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ mainnet
::highlight-card

```bash
$(archwayd q rewards estimate-fees 1 --node 'https://rpc.mainnet.archway.io/' --output json | jq -r '.gas_unit_price | (.amount + .denom)')
$(archwayd q rewards estimate-fees 1 --node 'https://rpc.mainnet.archway.io:443' --output json | jq -r '.gas_unit_price | (.amount + .denom)')
```


Expand Down Expand Up @@ -71,7 +71,7 @@ mainnet
::highlight-card

```bash
archwayd tx bank send archway1e2ntjy39x4gqn3tqu09ztjpjp4hf9q6u47w30u archway19vprdtfha0xsls0qlwqj2sas32nqqtf4ee9z58 1000000000000000000000aarch --chain-id archway-1 --from my-wallet --node https://rpc.mainnet.archway.io/ --gas auto --gas-adjustment 1.4 --gas-prices $(archwayd q rewards estimate-fees 1 --node 'https://rpc.mainnet.archway.io/' --output json | jq -r '.gas_unit_price | (.amount + .denom)')
archwayd tx bank send archway1e2ntjy39x4gqn3tqu09ztjpjp4hf9q6u47w30u archway19vprdtfha0xsls0qlwqj2sas32nqqtf4ee9z58 1000000000000000000000aarch --chain-id archway-1 --from my-wallet --node https://rpc.mainnet.archway.io:443 --gas auto --gas-adjustment 1.4 --gas-prices $(archwayd q rewards estimate-fees 1 --node 'https://rpc.mainnet.archway.io:443' --output json | jq -r '.gas_unit_price | (.amount + .denom)')
```
::

Expand Down
4 changes: 2 additions & 2 deletions content/2.developers/2.developer-tools/3.daemon.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ mainnet
::highlight-card
```bash
archwayd tx wasm store path_to_wasm/my_wasm_file.wasm --gas auto --gas-prices $(archwayd q rewards estimate-fees 1 --node 'https://rpc.mainnet.archway.io/' --output json | jq -r '.gas_unit_price | (.amount + .denom)') --gas-adjustment 1.4 --from <wallet-label> --chain-id archway-1 --node https://rpc.mainnet.archway.io:443 --broadcast-mode sync --output json -y
archwayd tx wasm store path_to_wasm/my_wasm_file.wasm --gas auto --gas-prices $(archwayd q rewards estimate-fees 1 --node 'https://rpc.mainnet.archway.io:443' --output json | jq -r '.gas_unit_price | (.amount + .denom)') --gas-adjustment 1.4 --from <wallet-label> --chain-id archway-1 --node https://rpc.mainnet.archway.io:443 --broadcast-mode sync --output json -y
```
Expand Down Expand Up @@ -262,7 +262,7 @@ mainnet
::highlight-card
```bash
archwayd tx wasm instantiate <code.id> '{"entrypoint":"value"}' --from <wallet-label> --label "A human readable label for this deployment" --gas auto --gas-prices $(archwayd q rewards estimate-fees 1 --node 'https://rpc.mainnet.archway.io:443' --output json | jq -r '.gas_unit_price | (.amount + .denom)') --gas-adjustment 1.4 --chain-id archway-1 --node https://rpc.mainnet.archway.io/ --broadcast-mode sync --output json -y
archwayd tx wasm instantiate <code.id> '{"entrypoint":"value"}' --from <wallet-label> --label "A human readable label for this deployment" --gas auto --gas-prices $(archwayd q rewards estimate-fees 1 --node 'https://rpc.mainnet.archway.io:443' --output json | jq -r '.gas_unit_price | (.amount + .denom)') --gas-adjustment 1.4 --chain-id archway-1 --node https://rpc.mainnet.archway.io:443 --broadcast-mode sync --output json -y
```
Expand Down

0 comments on commit 1fdb527

Please sign in to comment.