Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 39c8543

Browse files
committed
--call to --calldata
1 parent 1aa6343 commit 39c8543

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

content/api/openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2123,7 +2123,7 @@ paths:
21232123
explode: true
21242124
schema:
21252125
type: boolean
2126-
- name: call
2126+
- name: calldata
21272127
description: write-only call to a smart contract with one or more solidity calls, four-byte plus parameters, or encoded call data strings
21282128
required: false
21292129
style: form

content/chifra/chainstate.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ Flags:
5555
One or more of [ balance | nonce | code | proxy | deployed | accttype | some | all ]
5656
-c, --changes only report a balance when it changes from one block to the next
5757
-z, --no_zero suppress the display of zero balance accounts
58-
-l, --call string write-only call to a smart contract with one or more solidity calls, four-byte plus parameters, or encoded call data strings
59-
-s, --send string send a transaction to a smart contract using a solidity function, a four-byte plus parameters, or an encoded call data string
60-
-a, --articulate for the --call option only, articulate the retrieved data if ABIs can be found
61-
-r, --proxy_for string for the --call option only, redirects calls to this implementation
58+
-l, --call write-only call (a query) to a smart contract
59+
-d, --calldata string for commands (--call or --send), provides the call data (in various forms) for the command (may be empty for --send)
60+
-a, --articulate for commands only, articulate the retrieved data if ABIs can be found
61+
-r, --proxy_for string for commands only, redirects calls to this implementation
6262
-H, --ether specify value in ether
6363
-o, --cache force the results of the query into the cache
6464
-D, --decache removes related items from the cache
@@ -72,11 +72,13 @@ Notes:
7272
- If the queried node does not store historical state, the results are undefined.
7373
- Special blocks are detailed under chifra when --list.
7474
- Balance is the default mode. To select a single mode use none first, followed by that mode.
75-
- Valid parameters for --call include Solidity-like syntax: balanceOf(0x316b...183d), a four-byte followed by parameters: 0x70a08231(0x316b...183d), or encoded input data.
75+
- Valid parameters for --calldata include Solidity-like syntax: balanceOf(0x316b...), a four-byte followed by parameters: 0x70a08231(0x316b...), or encoded input data.
7676
- You may specify multiple parts on a single line.
7777
- In the --call string, you may separate multiple calls with a colon.
7878
- Your use of the unaudited --send option legally absolves, in any jurisdiction, TrueBlocks, LLC or any associated parties from liability or loss related to such use.
7979
- The --send option does not validate its input before sending your transaction to the network. If you provide invalid data, you may lose your funds. Be warned.
80+
- As of version 4.0.0, use --call --calldata <cmd> to provide your command.
81+
- --calldata may be one or more solidity calls, four-byte plus parameters, or encoded call data strings.
8082
```
8183

8284
Data models produced by this tool:

0 commit comments

Comments
 (0)