forked from Phala-Network/chainbridge-substrate-events
-
Notifications
You must be signed in to change notification settings - Fork 2
/
events.go
119 lines (104 loc) · 3.22 KB
/
events.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package events
import (
"github.com/ryuh1/go-substrate-rpc-client/v3/types"
)
type Events struct {
ChainBridge_FungibleTransfer []EventFungibleTransfer //nolint:stylecheck,golint
ChainBridge_NonFungibleTransfer []EventNonFungibleTransfer //nolint:stylecheck,golint
ChainBridge_GenericTransfer []EventGenericTransfer //nolint:stylecheck,golint
ChainBridge_RelayerThresholdChanged []EventRelayerThresholdChanged //nolint:stylecheck,golint
ChainBridge_ChainWhitelisted []EventChainWhitelisted //nolint:stylecheck,golint
ChainBridge_RelayerAdded []EventRelayerAdded //nolint:stylecheck,golint
ChainBridge_RelayerRemoved []EventRelayerRemoved //nolint:stylecheck,golint
ChainBridge_VoteFor []EventVoteFor //nolint:stylecheck,golint
ChainBridge_VoteAgainst []EventVoteAgainst //nolint:stylecheck,golint
ChainBridge_ProposalApproved []EventProposalApproved //nolint:stylecheck,golint
ChainBridge_ProposalRejected []EventProposalRejected //nolint:stylecheck,golint
ChainBridge_ProposalSucceeded []EventProposalSucceeded //nolint:stylecheck,golint
ChainBridge_ProposalFailed []EventProposalFailed //nolint:stylecheck,golint
}
type EventFungibleTransfer struct {
Phase types.Phase
Destination types.U8
DepositNonce types.U64
ResourceId types.Bytes32
Amount types.U256
Recipient types.Bytes
Topics []types.Hash
}
type EventNonFungibleTransfer struct {
Phase types.Phase
Destination types.U8
DepositNonce types.U64
ResourceId types.Bytes32
TokenId types.Bytes
Recipient types.Bytes
Metadata types.Bytes
Topics []types.Hash
}
type EventGenericTransfer struct {
Phase types.Phase
Destination types.U8
DepositNonce types.U64
ResourceId types.Bytes32
Metadata types.Bytes
Topics []types.Hash
}
type EventRelayerThresholdChanged struct {
Phase types.Phase
Threshold types.U32
Topics []types.Hash
}
type EventChainWhitelisted struct {
Phase types.Phase
ChainId types.U8
Topics []types.Hash
}
type EventRelayerAdded struct {
Phase types.Phase
Relayer types.AccountID
Topics []types.Hash
}
type EventRelayerRemoved struct {
Phase types.Phase
Relayer types.AccountID
Topics []types.Hash
}
type EventVoteFor struct {
Phase types.Phase
SourceId types.U8
DepositNonce types.U64
Voter types.AccountID
Topics []types.Hash
}
type EventVoteAgainst struct {
Phase types.Phase
SourceId types.U8
DepositNonce types.U64
Voter types.AccountID
Topics []types.Hash
}
type EventProposalApproved struct {
Phase types.Phase
SourceId types.U8
DepositNonce types.U64
Topics []types.Hash
}
type EventProposalRejected struct {
Phase types.Phase
SourceId types.U8
DepositNonce types.U64
Topics []types.Hash
}
type EventProposalSucceeded struct {
Phase types.Phase
SourceId types.U8
DepositNonce types.U64
Topics []types.Hash
}
type EventProposalFailed struct {
Phase types.Phase
SourceId types.U8
DepositNonce types.U64
Topics []types.Hash
}