Documentation ¶
Overview ¶
Package presenters allow for the specification and result of a Job, its associated TaskSpecs, and every JobRun and TaskRun to be returned in a user friendly human readable format.
Index ¶
- func FriendlyBigInt(n *big.Int) string
- func ShowEthBalance(store *store.Store) ([]map[string]string, error)
- func ShowLinkBalance(store *store.Store) ([]map[string]string, error)
- type AccountBalance
- type ConfigWhitelist
- type ExplorerStatus
- type ExternalInitiatorAuthentication
- type Initiator
- type JobRun
- type JobSpec
- func (job JobSpec) FriendlyCreatedAt() string
- func (job JobSpec) FriendlyEndAt() string
- func (job JobSpec) FriendlyInitiators() string
- func (job JobSpec) FriendlyMinPayment() string
- func (job JobSpec) FriendlyStartAt() string
- func (job JobSpec) FriendlyTasks() string
- func (job JobSpec) MarshalJSON() ([]byte, error)
- type NewAccount
- type ServiceAgreement
- func (sa ServiceAgreement) FriendlyAggregator() string
- func (sa ServiceAgreement) FriendlyAggregatorFulfillMethod() string
- func (sa ServiceAgreement) FriendlyAggregatorInitMethod() string
- func (sa ServiceAgreement) FriendlyCreatedAt() string
- func (sa ServiceAgreement) FriendlyExpiration() string
- func (sa ServiceAgreement) FriendlyPayment() string
- func (sa ServiceAgreement) MarshalJSON() ([]byte, error)
- type ServiceAgreementPresentation
- type TaskSpec
- type Tx
- type UserPresenter
- type Whitelist
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FriendlyBigInt ¶
FriendlyBigInt returns a string printing the integer in both decimal and hexadecimal formats.
func ShowEthBalance ¶
ShowEthBalance returns the current Eth Balance for current Account
Types ¶
type AccountBalance ¶
type AccountBalance struct { Address string `json:"address"` EthBalance *assets.Eth `json:"ethBalance"` LinkBalance *assets.Link `json:"linkBalance"` }
AccountBalance holds the hex representation of the address plus it's ETH & LINK balances
func (AccountBalance) GetID ¶
func (a AccountBalance) GetID() string
GetID returns the ID of this structure for jsonapi serialization.
func (*AccountBalance) SetID ¶
func (a *AccountBalance) SetID(value string) error
SetID is used to set the ID of this structure when deserializing from jsonapi documents.
type ConfigWhitelist ¶
ConfigWhitelist are the non-secret values of the node
If you add an entry here, you should update NewConfigWhitelist and ConfigWhitelist#String accordingly.
func NewConfigWhitelist ¶
func NewConfigWhitelist(store *store.Store) (ConfigWhitelist, error)
NewConfigWhitelist creates an instance of ConfigWhitelist
func (ConfigWhitelist) GetID ¶
func (c ConfigWhitelist) GetID() string
GetID generates a new ID for jsonapi serialization.
func (*ConfigWhitelist) SetID ¶
func (c *ConfigWhitelist) SetID(value string) error
SetID is used to conform to the UnmarshallIdentifier interface for deserializing from jsonapi documents.
func (ConfigWhitelist) String ¶
func (c ConfigWhitelist) String() string
String returns the values as a newline delimited string
type ExplorerStatus ¶ added in v0.8.2
ExplorerStatus represents the connected server and status of the connection
func NewExplorerStatus ¶ added in v0.8.2
func NewExplorerStatus(statsPusher synchronization.StatsPusher) ExplorerStatus
NewExplorerStatus returns an initialized ExplorerStatus from the store
type ExternalInitiatorAuthentication ¶ added in v0.6.6
type ExternalInitiatorAuthentication struct { Name string `json:"name,omitempty"` URL models.WebURL `json:"url,omitempty"` AccessKey string `json:"incomingAccessKey,omitempty"` Secret string `json:"incomingSecret,omitempty"` OutgoingToken string `json:"outgoingToken,omitempty"` OutgoingSecret string `json:"outgoingSecret,omitempty"` }
ExternalInitiatorAuthentication includes initiator and authentication details.
func NewExternalInitiatorAuthentication ¶ added in v0.6.6
func NewExternalInitiatorAuthentication( ei models.ExternalInitiator, eia auth.Token, ) *ExternalInitiatorAuthentication
NewExternalInitiatorAuthentication creates an instance of ExternalInitiatorAuthentication.
func (*ExternalInitiatorAuthentication) GetID ¶ added in v0.6.6
func (ei *ExternalInitiatorAuthentication) GetID() string
GetID returns the jsonapi ID.
func (*ExternalInitiatorAuthentication) GetName ¶ added in v0.6.6
func (*ExternalInitiatorAuthentication) GetName() string
GetName returns the collection name for jsonapi.
func (*ExternalInitiatorAuthentication) SetID ¶ added in v0.6.6
func (ei *ExternalInitiatorAuthentication) SetID(name string) error
SetID is used to conform to the UnmarshallIdentifier interface for deserializing from jsonapi documents.
type Initiator ¶
Initiator holds the Job definition's Initiator.
func (Initiator) FriendlyAddress ¶
FriendlyAddress returns the Ethereum address if present, and a blank string if not.
func (Initiator) FriendlyRunAt ¶
FriendlyRunAt returns a human-readable string for Cron Initiator types.
func (Initiator) MarshalJSON ¶
MarshalJSON returns the JSON data of the Initiator based on its Initiator Type.
type JobRun ¶
JobRun presents an API friendly version of the data.
func (JobRun) MarshalJSON ¶
MarshalJSON returns the JSON data of the JobRun and its Initiator.
type JobSpec ¶
JobSpec holds the JobSpec definition together with the total link earned from that job
func (JobSpec) FriendlyCreatedAt ¶
FriendlyCreatedAt returns a human-readable string of the Job's CreatedAt field.
func (JobSpec) FriendlyEndAt ¶
FriendlyEndAt returns a human-readable string of the Job's EndAt field.
func (JobSpec) FriendlyInitiators ¶
FriendlyInitiators returns the list of Initiator types as a comma separated string.
func (JobSpec) FriendlyMinPayment ¶ added in v0.6.6
FriendlyMinPayment returns a formatted string of the Job's Minimum Link Payment threshold
func (JobSpec) FriendlyStartAt ¶
FriendlyStartAt returns a human-readable string of the Job's StartAt field.
func (JobSpec) FriendlyTasks ¶
FriendlyTasks returns the list of Task types as a comma separated string.
func (JobSpec) MarshalJSON ¶
MarshalJSON returns the JSON data of the Job and its Initiators.
type NewAccount ¶
NewAccount is a jsonapi wrapper for an Ethereum account.
func (NewAccount) GetName ¶
func (a NewAccount) GetName() string
GetName returns the collection name for jsonapi.
type ServiceAgreement ¶
type ServiceAgreement struct {
models.ServiceAgreement
}
ServiceAgreement presents an API friendly version of the data.
func (ServiceAgreement) FriendlyAggregator ¶ added in v0.6.8
func (sa ServiceAgreement) FriendlyAggregator() string
FriendlyAggregator returns the ServiceAgreement's aggregator address, in a human readable format.
func (ServiceAgreement) FriendlyAggregatorFulfillMethod ¶ added in v0.6.8
func (sa ServiceAgreement) FriendlyAggregatorFulfillMethod() string
FriendlyAggregatorFulfillMethod returns the ServiceAgreement's aggregator fulfillment (orcale reporting) method's function selector, in a human readable format.
func (ServiceAgreement) FriendlyAggregatorInitMethod ¶ added in v0.6.8
func (sa ServiceAgreement) FriendlyAggregatorInitMethod() string
FriendlyAggregator returns the ServiceAgreement's aggregator initialization method's function selector, in a human readable format.
func (ServiceAgreement) FriendlyCreatedAt ¶
func (sa ServiceAgreement) FriendlyCreatedAt() string
FriendlyCreatedAt returns the ServiceAgreement's created at time in a human readable format.
func (ServiceAgreement) FriendlyExpiration ¶
func (sa ServiceAgreement) FriendlyExpiration() string
FriendlyExpiration returns the ServiceAgreement's Encumbrance expiration time in a human readable format.
func (ServiceAgreement) FriendlyPayment ¶
func (sa ServiceAgreement) FriendlyPayment() string
FriendlyPayment returns the ServiceAgreement's Encumbrance payment amount in a human readable format.
func (ServiceAgreement) MarshalJSON ¶
func (sa ServiceAgreement) MarshalJSON() ([]byte, error)
MarshalJSON presents the ServiceAgreement as public JSON data
type ServiceAgreementPresentation ¶ added in v0.6.10
type ServiceAgreementPresentation struct { ID string `json:"id"` CreatedAt string `json:"createdAt"` Encumbrance models.Encumbrance `json:"encumbrance"` EncumbranceID uint `json:"encumbranceID"` RequestBody string `json:"requestBody"` Signature string `json:"signature"` JobSpec models.JobSpec `json:"jobSpec"` JobSpecID string `json:"jobSpecId"` }
type TaskSpec ¶
TaskSpec holds a task specified in the Job definition.
func (TaskSpec) FriendlyParams ¶
FriendlyParams returns a map of the TaskSpec's parameters.
type Tx ¶
type Tx struct { Confirmed bool `json:"confirmed,omitempty"` Data hexutil.Bytes `json:"data,omitempty"` From *common.Address `json:"from,omitempty"` GasLimit string `json:"gasLimit,omitempty"` GasPrice string `json:"gasPrice,omitempty"` Hash common.Hash `json:"hash,omitempty"` Hex string `json:"rawHex,omitempty"` Nonce string `json:"nonce,omitempty"` SentAt string `json:"sentAt,omitempty"` To *common.Address `json:"to,omitempty"` Value string `json:"value,omitempty"` }
Tx is a jsonapi wrapper for an Ethereum Transaction.
func NewTxFromAttempt ¶
NewTxFromAttempt builds a transaction presenter from a TxAttempt
models.Tx represents a transaction in progress, with a series of models.TxAttempts, each one of these represents an ethereum transaction. A TxAttempt only stores the unique details of an ethereum transaction, with the rest of the details on its related Tx.
So for presenting a TxAttempt, we take its Hash, GasPrice etc. and get the rest of the details from its Tx.
NOTE: We take a copy here as we don't want side effects.
type UserPresenter ¶
UserPresenter wraps the user record for shipping as a jsonapi response in the API.
func (UserPresenter) GetName ¶
func (u UserPresenter) GetName() string
GetName returns the collection name for jsonapi.
func (UserPresenter) MarshalJSON ¶
func (u UserPresenter) MarshalJSON() ([]byte, error)
MarshalJSON returns the User as json.
type Whitelist ¶ added in v0.6.10
type Whitelist struct { AllowOrigins string `json:"allowOrigins"` BridgeResponseURL string `json:"bridgeResponseURL,omitempty"` ChainID *big.Int `json:"ethChainId"` ClientNodeURL string `json:"clientNodeUrl"` DatabaseTimeout models.Duration `json:"databaseTimeout"` Dev bool `json:"chainlinkDev"` EthereumURL string `json:"ethUrl"` EthGasBumpThreshold uint64 `json:"ethGasBumpThreshold"` EthGasBumpWei *big.Int `json:"ethGasBumpWei"` EthGasPriceDefault *big.Int `json:"ethGasPriceDefault"` ExplorerURL string `json:"explorerUrl"` JSONConsole bool `json:"jsonConsole"` LinkContractAddress string `json:"linkContractAddress"` LogLevel orm.LogLevel `json:"logLevel"` LogSQLMigrations bool `json:"logSqlMigrations"` LogSQLStatements bool `json:"logSqlStatements"` LogToDisk bool `json:"logToDisk"` MaxRPCCallsPerSecond uint64 `json:"maxRPCCallsPerSecond"` MinimumContractPayment *assets.Link `json:"minimumContractPayment"` MinimumRequestExpiration uint64 `json:"minimumRequestExpiration"` MinIncomingConfirmations uint32 `json:"minIncomingConfirmations"` MinOutgoingConfirmations uint64 `json:"minOutgoingConfirmations"` OracleContractAddress *common.Address `json:"oracleContractAddress"` Port uint16 `json:"chainlinkPort"` ReaperExpiration models.Duration `json:"reaperExpiration"` ReplayFromBlock int64 `json:"replayFromBlock"` RootDir string `json:"root"` SessionTimeout models.Duration `json:"sessionTimeout"` TLSHost string `json:"chainlinkTLSHost"` TLSPort uint16 `json:"chainlinkTLSPort"` TLSRedirect bool `json:"chainlinkTLSRedirect"` TxAttemptLimit uint16 `json:"txAttemptLimit"` }
Whitelist contains the supported environment variables