EosConfigurator
Aggregates all properties to configure Eos client.
Summary
Members | Descriptions |
---|---|
| http or https location of a nodeosd server providing a chain API. |
| unique ID for the blockchain you're connecting to. If no ChainId is provided it will get from the get_info API call. |
| number of seconds before the transaction will expire. The time is based on the nodeosd's clock. An unexpired transaction that may have had an error is a liability until the expiration is reached, this time should be brief. |
| How many blocks behind to use for TAPoS reference block. |
| signature implementation to handle available keys and signing transactions. Use the DefaultSignProvider with a privateKey to sign transactions inside the lib. |
Members
public string
HttpEndpoint
http or https location of a nodeosd server providing a chain API.
public string
ChainId
unique ID for the blockchain you're connecting to. If no ChainId is provided it will get from the get_info API call.
public double
ExpireSeconds
number of seconds before the transaction will expire. The time is based on the nodeosd's clock. An unexpired transaction that may have had an error is a liability until the expiration is reached, this time should be brief.
public UInt32
blocksBehind
How many blocks behind to use for TAPoS reference block.
public
ISignProvider
SignProvider
signature implementation to handle available keys and signing transactions. Use the DefaultSignProvider with a privateKey to sign transactions inside the lib.
Last updated