pub type RelayerEvent = RelayerEvent<AccountId>;
Aliased Type§
enum RelayerEvent {
AuthorizedPayingKey(EventOnly<IdentityId>, AccountId, AccountId, u128, u64),
AcceptedPayingKey(EventOnly<IdentityId>, AccountId, AccountId),
RemovedPayingKey(EventOnly<IdentityId>, AccountId, AccountId),
UpdatedPolyxLimit(EventOnly<IdentityId>, AccountId, AccountId, u128, u128),
}
Variants§
AuthorizedPayingKey(EventOnly<IdentityId>, AccountId, AccountId, u128, u64)
Authorization given for paying_key
to user_key
.
(Caller DID, User Key, Paying Key, Initial POLYX limit, Auth ID)
AcceptedPayingKey(EventOnly<IdentityId>, AccountId, AccountId)
Accepted paying key.
(Caller DID, User Key, Paying Key)
RemovedPayingKey(EventOnly<IdentityId>, AccountId, AccountId)
Removed paying key.
(Caller DID, User Key, Paying Key)
UpdatedPolyxLimit(EventOnly<IdentityId>, AccountId, AccountId, u128, u128)
Updated polyx limit.
(Caller DID, User Key, Paying Key, POLYX limit, old remaining POLYX)