Enum airnode_events::AirnodeEvent[][src]

pub enum AirnodeEvent {
Show 44 variants ClientEndorsementStatusUpdatedA { requester_index: U256, client_address: H160, endorsement_status: bool, }, ClientFullRequestCreatedA { provider_id: U256, request_id: U256, no_requests: u64, client_address: H160, endpoint_id: U256, requester_index: U256, designated_wallet: H160, fulfill_address: H160, fulfill_function_id: u64, parameters: Option<ABI>, error: Option<DecodingError>, data: Option<Vec<U256>>, }, ClientRequestCreatedA { provider_id: U256, request_id: U256, no_requests: u64, client_address: H160, template_id: U256, requester_index: U256, designated_wallet: H160, fulfill_address: H160, fulfill_function_id: u64, parameters: Option<ABI>, error: Option<DecodingError>, data: Option<Vec<U256>>, }, ClientRequestFailedA { provider_id: U256, request_id: U256, }, ClientRequestFulfilledA { provider_id: U256, request_id: U256, status_code: u64, data: Vec<U256>, }, ClientRequestFulfilledWithBytesA { provider_id: U256, request_id: U256, status_code: u64, data: Vec<U256>, }, ClientShortRequestCreatedA { provider_id: U256, request_id: U256, no_requests: u64, client_address: H160, template_id: U256, parameters: Option<ABI>, error: Option<DecodingError>, data: Option<Vec<U256>>, }, EndpointUpdatedA { provider_id: U256, endpoint_id: U256, authorizers: Vec<H160>, }, MinBalanceUpdatedA { provider_id: U256, min_balance: U256, }, ProviderCreatedA { provider_id: U256, admin: H160, xpub: String, }, ProviderUpdatedA { provider_id: U256, admin: H160, }, RequesterCreatedA { requester_index: U256, admin: H160, }, RequesterUpdatedA { requester_index: U256, admin: H160, }, RequestFulfilledA { request_id: U256, status_code: u64, data: U256, }, RequestFulfilledWithBytesA { request_id: U256, status_code: u64, data: Vec<U256>, }, TemplateCreatedA { template_id: U256, provider_id: U256, endpoint_id: U256, requester_index: U256, designated_wallet: H160, fulfill_address: H160, fulfill_function_id: u64, parameters: Option<ABI>, error: Option<DecodingError>, data: Option<Vec<U256>>, }, WithdrawalFulfilledA { provider_id: U256, requester_index: U256, withdrawal_request_id: U256, designated_wallet: H160, destination: H160, amount: U256, }, WithdrawalRequestedA { provider_id: U256, requester_index: U256, withdrawal_request_id: U256, designated_wallet: H160, destination: H160, }, CreatedTemplate { template_id: U256, airnode: H160, endpoint_id: U256, parameters: Option<ABI>, error: Option<DecodingError>, data: Option<Vec<U256>>, }, DecreasedSelfRank { admin: H160, new_rank: U256, }, DecreasedSelfRankAdminned { adminned: H160, admin: H160, new_rank: U256, }, ErroredBeaconUpdate { template_id: U256, request_id: U256, status_code: u64, }, ExtendedWhitelistExpiration { airnode: H160, endpoint_id: U256, user: H160, admin: H160, expiration: u64, }, ExtendedWhitelistExpirationTpl { template_id: U256, user: H160, admin: H160, expiration: u64, }, FailedRequest { airnode: H160, request_id: U256, error_message: String, }, FulfilledRequest { airnode: H160, request_id: U256, status_code: u64, data: Vec<U256>, }, FulfilledWithdrawal { airnode: H160, sponsor: H160, withdrawal_request_id: U256, sponsor_wallet: H160, amount: U256, }, MadeFullRequest {
Show 13 fields airnode: H160, request_id: U256, requester_request_count: u64, chain_id: u64, requester: H160, endpoint_id: U256, sponsor: H160, sponsor_wallet: H160, fulfill_address: H160, fulfill_function_id: u64, parameters: Option<ABI>, error: Option<DecodingError>, data: Option<Vec<U256>>,
}, MadeTemplateRequest {
Show 13 fields airnode: H160, request_id: U256, requester_request_count: u64, chain_id: u64, requester: H160, template_id: U256, sponsor: H160, sponsor_wallet: H160, fulfill_address: H160, fulfill_function_id: u64, parameters: Option<ABI>, error: Option<DecodingError>, data: Option<Vec<U256>>,
}, RequestedBeaconUpdate { template_id: U256, sponsor: H160, requester: H160, request_id: U256, sponsor_wallet: H160, }, RequestedWithdrawal { airnode: H160, sponsor: H160, withdrawal_request_id: U256, sponsor_wallet: H160, }, SetAirnodeXpub { airnode: H160, xpub: String, }, SetRankAdminned { adminned: H160, caller_admin: H160, target_admin: H160, new_rank: U256, }, SetRank { caller_admin: H160, target_admin: H160, new_rank: U256, }, SetSponsorshipStatus { sponsor: H160, requester: H160, sponsorship_status: bool, }, SetUpdatePermissionStatus { sponsor: H160, update_requester: H160, status: bool, }, SetWhitelistExpiration { airnode: H160, endpoint_id: U256, user: H160, admin: H160, expiration: u64, }, SetWhitelistExpirationTpl { template_id: U256, user: H160, admin: H160, expiration: u64, }, SetWhitelistStatusPastExpiration { airnode: H160, endpoint_id: U256, user: H160, admin: H160, status: bool, }, SetWhitelistStatusPastExpirationTpl { template_id: U256, user: H160, admin: H160, status: bool, }, TransferredMetaAdminStatus { meta_admin: H160, }, UpdatedBeacon { template_id: U256, request_id: U256, value: U256, timestamp: u64, }, Unclassified, Unknown,
}

Variants

ClientEndorsementStatusUpdatedA

Fields of ClientEndorsementStatusUpdatedA

requester_index: U256client_address: H160endorsement_status: bool
ClientFullRequestCreatedA

Fields of ClientFullRequestCreatedA

provider_id: U256request_id: U256no_requests: u64client_address: H160endpoint_id: U256requester_index: U256designated_wallet: H160fulfill_address: H160fulfill_function_id: u64parameters: Option<ABI>error: Option<DecodingError>data: Option<Vec<U256>>
ClientRequestCreatedA

Fields of ClientRequestCreatedA

provider_id: U256request_id: U256no_requests: u64client_address: H160template_id: U256requester_index: U256designated_wallet: H160fulfill_address: H160fulfill_function_id: u64parameters: Option<ABI>error: Option<DecodingError>data: Option<Vec<U256>>
ClientRequestFailedA

Fields of ClientRequestFailedA

provider_id: U256request_id: U256
ClientRequestFulfilledA

Fields of ClientRequestFulfilledA

provider_id: U256request_id: U256status_code: u64data: Vec<U256>
ClientRequestFulfilledWithBytesA

Fields of ClientRequestFulfilledWithBytesA

provider_id: U256request_id: U256status_code: u64data: Vec<U256>
ClientShortRequestCreatedA

Fields of ClientShortRequestCreatedA

provider_id: U256request_id: U256no_requests: u64client_address: H160template_id: U256parameters: Option<ABI>error: Option<DecodingError>data: Option<Vec<U256>>
EndpointUpdatedA

Fields of EndpointUpdatedA

provider_id: U256endpoint_id: U256authorizers: Vec<H160>
MinBalanceUpdatedA

Fields of MinBalanceUpdatedA

provider_id: U256min_balance: U256
ProviderCreatedA

Fields of ProviderCreatedA

provider_id: U256admin: H160xpub: String
ProviderUpdatedA

Fields of ProviderUpdatedA

provider_id: U256admin: H160
RequesterCreatedA

Fields of RequesterCreatedA

requester_index: U256admin: H160
RequesterUpdatedA

Fields of RequesterUpdatedA

requester_index: U256admin: H160
RequestFulfilledA

Fields of RequestFulfilledA

request_id: U256status_code: u64data: U256
RequestFulfilledWithBytesA

Fields of RequestFulfilledWithBytesA

request_id: U256status_code: u64data: Vec<U256>
TemplateCreatedA

Fields of TemplateCreatedA

template_id: U256provider_id: U256endpoint_id: U256requester_index: U256designated_wallet: H160fulfill_address: H160fulfill_function_id: u64parameters: Option<ABI>error: Option<DecodingError>data: Option<Vec<U256>>
WithdrawalFulfilledA

Fields of WithdrawalFulfilledA

provider_id: U256requester_index: U256withdrawal_request_id: U256designated_wallet: H160destination: H160amount: U256
WithdrawalRequestedA

Fields of WithdrawalRequestedA

provider_id: U256requester_index: U256withdrawal_request_id: U256designated_wallet: H160destination: H160
CreatedTemplate

Fields of CreatedTemplate

template_id: U256airnode: H160endpoint_id: U256parameters: Option<ABI>error: Option<DecodingError>data: Option<Vec<U256>>
DecreasedSelfRank

Fields of DecreasedSelfRank

admin: H160new_rank: U256
DecreasedSelfRankAdminned

Fields of DecreasedSelfRankAdminned

adminned: H160admin: H160new_rank: U256
ErroredBeaconUpdate

Fields of ErroredBeaconUpdate

template_id: U256request_id: U256status_code: u64
ExtendedWhitelistExpiration

Fields of ExtendedWhitelistExpiration

airnode: H160endpoint_id: U256user: H160admin: H160expiration: u64
ExtendedWhitelistExpirationTpl

Fields of ExtendedWhitelistExpirationTpl

template_id: U256user: H160admin: H160expiration: u64
FailedRequest

Fields of FailedRequest

airnode: H160request_id: U256error_message: String
FulfilledRequest

Fields of FulfilledRequest

airnode: H160request_id: U256status_code: u64data: Vec<U256>
FulfilledWithdrawal

Fields of FulfilledWithdrawal

airnode: H160sponsor: H160withdrawal_request_id: U256sponsor_wallet: H160amount: U256
MadeFullRequest

Fields of MadeFullRequest

airnode: H160request_id: U256requester_request_count: u64chain_id: u64requester: H160endpoint_id: U256sponsor: H160sponsor_wallet: H160fulfill_address: H160fulfill_function_id: u64parameters: Option<ABI>error: Option<DecodingError>data: Option<Vec<U256>>
MadeTemplateRequest

Fields of MadeTemplateRequest

airnode: H160request_id: U256requester_request_count: u64chain_id: u64requester: H160template_id: U256sponsor: H160sponsor_wallet: H160fulfill_address: H160fulfill_function_id: u64parameters: Option<ABI>error: Option<DecodingError>data: Option<Vec<U256>>
RequestedBeaconUpdate

Fields of RequestedBeaconUpdate

template_id: U256sponsor: H160requester: H160request_id: U256sponsor_wallet: H160
RequestedWithdrawal

Fields of RequestedWithdrawal

airnode: H160sponsor: H160withdrawal_request_id: U256sponsor_wallet: H160
SetAirnodeXpub

Fields of SetAirnodeXpub

airnode: H160xpub: String
SetRankAdminned

Fields of SetRankAdminned

adminned: H160caller_admin: H160target_admin: H160new_rank: U256
SetRank

Fields of SetRank

caller_admin: H160target_admin: H160new_rank: U256
SetSponsorshipStatus

Fields of SetSponsorshipStatus

sponsor: H160requester: H160sponsorship_status: bool
SetUpdatePermissionStatus

Fields of SetUpdatePermissionStatus

sponsor: H160update_requester: H160status: bool
SetWhitelistExpiration

Fields of SetWhitelistExpiration

airnode: H160endpoint_id: U256user: H160admin: H160expiration: u64
SetWhitelistExpirationTpl

Fields of SetWhitelistExpirationTpl

template_id: U256user: H160admin: H160expiration: u64
SetWhitelistStatusPastExpiration

Fields of SetWhitelistStatusPastExpiration

airnode: H160endpoint_id: U256user: H160admin: H160status: bool
SetWhitelistStatusPastExpirationTpl

Fields of SetWhitelistStatusPastExpirationTpl

template_id: U256user: H160admin: H160status: bool
TransferredMetaAdminStatus

Fields of TransferredMetaAdminStatus

meta_admin: H160
UpdatedBeacon

Fields of UpdatedBeacon

template_id: U256request_id: U256value: U256timestamp: u64
Unclassified
Unknown

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more