-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
164 lines (141 loc) · 2.38 KB
/
schema.graphql
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
type Metoken_Transfer {
id: ID!
from: String!
to: String!
value: BigInt!
}
type Metokens_Burn {
id: ID!
meToken: String!
asset: String!
burner: String!
recipient: String!
meTokensBurned: BigInt!
assetsReturned: BigInt!
}
type Metokens_CancelResubscribe {
id: ID!
meToken: String!
}
type Metokens_CancelTransferMeTokenOwnership {
id: ID!
from: String!
meToken: String!
}
type Metokens_CancelUpdate {
id: ID!
event_id: BigInt!
}
type Metokens_ClaimMeTokenOwnership {
id: ID!
from: String!
to: String!
meToken: String!
}
type Metokens_Deactivate {
id: ID!
event_id: BigInt!
}
type Metokens_Donate {
id: ID!
meToken: String!
asset: String!
donor: String!
assetsDeposited: BigInt!
}
type Metokens_FinishResubscribe {
id: ID!
meToken: String!
}
type Metokens_FinishUpdate {
id: ID!
event_id: BigInt!
}
type Metokens_InitResubscribe {
id: ID!
meToken: String!
targetHubId: BigInt!
migration: String!
encodedMigrationArgs: String!
}
type Metokens_InitUpdate {
id: ID!
event_id: BigInt!
targetRefundRatio: BigInt!
targetReserveWeight: BigInt!
reconfigure: Boolean!
startTime: BigInt!
endTime: BigInt!
endCooldown: BigInt!
}
type Metokens_Mint {
id: ID!
meToken: String!
asset: String!
depositor: String!
recipient: String!
assetsDeposited: BigInt!
meTokensMinted: BigInt!
}
type Metokens_Register {
id: ID!
event_id: BigInt!
owner: String!
asset: String!
vault: String!
refundRatio: BigInt!
baseY: BigInt!
reserveWeight: BigInt!
encodedVaultArgs: String!
}
type Metokens_SetBurnBuyerFee {
id: ID!
rate: BigInt!
}
type Metokens_SetBurnOwnerFee {
id: ID!
rate: BigInt!
}
type Metokens_SetMintFee {
id: ID!
rate: BigInt!
}
type Metokens_Subscribe {
id: ID!
meToken: String!
owner: String!
minted: BigInt!
asset: String!
assetsDeposited: BigInt!
name: String!
symbol: String!
hubId: BigInt!
}
type Metokens_TransferHubOwnership {
id: ID!
event_id: BigInt!
newOwner: String!
}
type Metokens_TransferMeTokenOwnership {
id: ID!
from: String!
to: String!
meToken: String!
}
type Metokens_UpdateBalanceLocked {
id: ID!
add: Boolean!
meToken: String!
amount: BigInt!
}
type Metokens_UpdateBalancePooled {
id: ID!
add: Boolean!
meToken: String!
amount: BigInt!
}
type Metokens_UpdateBalances {
id: ID!
meToken: String!
newBalance: BigInt!
}