Interface: JsonFeedOptions
Hierarchy
↳
JsonFeedOptions
Properties
address
• Optional
address: string
| Uint8Array
| EthAddress
Valid only for get
action, where either this address
or signer
has
to be specified.
Defined in
fetch
• Optional
fetch: Fetch
User defined Fetch compatible function
Inherited from
Defined in
retry
• Optional
retry: number
Configure backoff mechanism for requests retries. Specifies how many retries will be performed before failing a request. Retries are performed for GET, PUT, HEAD, DELETE, OPTIONS and TRACE requests. Default is 2.
Inherited from
Defined in
signer
• Optional
signer: string
| Uint8Array
| Signer
Custom Signer object or private key in either binary or hex form.
This required for set
action, and optional for get
although
if not specified for get
then address
option has to be specified.
Defined in
timeout
• Optional
timeout: number
Timeout of requests in milliseconds
Inherited from
Defined in
type
• Optional
type: "sequence"
| "epoch"