-
Notifications
You must be signed in to change notification settings - Fork 3
/
NewOrder.go
330 lines (292 loc) · 10.5 KB
/
NewOrder.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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
// Code generated by https://github.com/gagliardetto/anchor-go. DO NOT EDIT.
package serumgo
import (
"encoding/binary"
"errors"
ag_binary "github.com/gagliardetto/binary"
ag_solanago "github.com/gagliardetto/solana-go"
ag_format "github.com/gagliardetto/solana-go/text/format"
ag_treeout "github.com/gagliardetto/treeout"
)
// NewOrder is the `NewOrder` instruction.
type NewOrder struct {
Args *NewOrderInstructionV1
// [0] = [WRITE] market
// ··········· the market
//
// [1] = [WRITE] openOrders
// ··········· the OpenOrders account to use
//
// [2] = [WRITE] requestQueue
// ··········· the request queue
//
// [3] = [WRITE] orderPayer
// ··········· the (coin or price currency) account paying for the order
//
// [4] = [SIGNER] owner
// ··········· owner of the OpenOrders account
//
// [5] = [WRITE] coinVault
// ··········· coin vault
//
// [6] = [WRITE] pcVault
// ··········· pc vault
//
// [7] = [] splTokenProgram
// ··········· spl token program
//
// [8] = [] rentSysvar
// ··········· the rent sysvar
//
// [9] = [] feeDiscounts
// ··········· (optional) the (M)SRM account used for fee discounts
ag_solanago.AccountMetaSlice `bin:"-"`
}
// NewNewOrderInstructionBuilder creates a new `NewOrder` instruction builder.
func NewNewOrderInstructionBuilder() *NewOrder {
nd := &NewOrder{
AccountMetaSlice: make(ag_solanago.AccountMetaSlice, 10),
}
return nd
}
// SetArgs sets the "args" parameter.
func (inst *NewOrder) SetArgs(args NewOrderInstructionV1) *NewOrder {
inst.Args = &args
return inst
}
// SetMarketAccount sets the "market" account.
// the market
func (inst *NewOrder) SetMarketAccount(market ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[0] = ag_solanago.Meta(market).WRITE()
return inst
}
// GetMarketAccount gets the "market" account.
// the market
func (inst *NewOrder) GetMarketAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(0)
}
// SetOpenOrdersAccount sets the "openOrders" account.
// the OpenOrders account to use
func (inst *NewOrder) SetOpenOrdersAccount(openOrders ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[1] = ag_solanago.Meta(openOrders).WRITE()
return inst
}
// GetOpenOrdersAccount gets the "openOrders" account.
// the OpenOrders account to use
func (inst *NewOrder) GetOpenOrdersAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(1)
}
// SetRequestQueueAccount sets the "requestQueue" account.
// the request queue
func (inst *NewOrder) SetRequestQueueAccount(requestQueue ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[2] = ag_solanago.Meta(requestQueue).WRITE()
return inst
}
// GetRequestQueueAccount gets the "requestQueue" account.
// the request queue
func (inst *NewOrder) GetRequestQueueAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(2)
}
// SetOrderPayerAccount sets the "orderPayer" account.
// the (coin or price currency) account paying for the order
func (inst *NewOrder) SetOrderPayerAccount(orderPayer ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[3] = ag_solanago.Meta(orderPayer).WRITE()
return inst
}
// GetOrderPayerAccount gets the "orderPayer" account.
// the (coin or price currency) account paying for the order
func (inst *NewOrder) GetOrderPayerAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(3)
}
// SetOwnerAccount sets the "owner" account.
// owner of the OpenOrders account
func (inst *NewOrder) SetOwnerAccount(owner ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[4] = ag_solanago.Meta(owner).SIGNER()
return inst
}
// GetOwnerAccount gets the "owner" account.
// owner of the OpenOrders account
func (inst *NewOrder) GetOwnerAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(4)
}
// SetCoinVaultAccount sets the "coinVault" account.
// coin vault
func (inst *NewOrder) SetCoinVaultAccount(coinVault ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[5] = ag_solanago.Meta(coinVault).WRITE()
return inst
}
// GetCoinVaultAccount gets the "coinVault" account.
// coin vault
func (inst *NewOrder) GetCoinVaultAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(5)
}
// SetPcVaultAccount sets the "pcVault" account.
// pc vault
func (inst *NewOrder) SetPcVaultAccount(pcVault ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[6] = ag_solanago.Meta(pcVault).WRITE()
return inst
}
// GetPcVaultAccount gets the "pcVault" account.
// pc vault
func (inst *NewOrder) GetPcVaultAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(6)
}
// SetSplTokenProgramAccount sets the "splTokenProgram" account.
// spl token program
func (inst *NewOrder) SetSplTokenProgramAccount(splTokenProgram ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[7] = ag_solanago.Meta(splTokenProgram)
return inst
}
// GetSplTokenProgramAccount gets the "splTokenProgram" account.
// spl token program
func (inst *NewOrder) GetSplTokenProgramAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(7)
}
// SetRentSysvarAccount sets the "rentSysvar" account.
// the rent sysvar
func (inst *NewOrder) SetRentSysvarAccount(rentSysvar ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[8] = ag_solanago.Meta(rentSysvar)
return inst
}
// GetRentSysvarAccount gets the "rentSysvar" account.
// the rent sysvar
func (inst *NewOrder) GetRentSysvarAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(8)
}
// SetFeeDiscountsAccount sets the "feeDiscounts" account.
// (optional) the (M)SRM account used for fee discounts
func (inst *NewOrder) SetFeeDiscountsAccount(feeDiscounts ag_solanago.PublicKey) *NewOrder {
inst.AccountMetaSlice[9] = ag_solanago.Meta(feeDiscounts)
return inst
}
// GetFeeDiscountsAccount gets the "feeDiscounts" account.
// (optional) the (M)SRM account used for fee discounts
func (inst *NewOrder) GetFeeDiscountsAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(9)
}
func (inst NewOrder) Build() *Instruction {
return &Instruction{BaseVariant: ag_binary.BaseVariant{
Impl: inst,
TypeID: ag_binary.TypeIDFromUint32(Instruction_NewOrder, binary.LittleEndian),
}}
}
// ValidateAndBuild validates the instruction parameters and accounts;
// if there is a validation error, it returns the error.
// Otherwise, it builds and returns the instruction.
func (inst NewOrder) ValidateAndBuild() (*Instruction, error) {
if err := inst.Validate(); err != nil {
return nil, err
}
return inst.Build(), nil
}
func (inst *NewOrder) Validate() error {
// Check whether all (required) parameters are set:
{
if inst.Args == nil {
return errors.New("Args parameter is not set")
}
}
// Check whether all (required) accounts are set:
{
if inst.AccountMetaSlice[0] == nil {
return errors.New("accounts.Market is not set")
}
if inst.AccountMetaSlice[1] == nil {
return errors.New("accounts.OpenOrders is not set")
}
if inst.AccountMetaSlice[2] == nil {
return errors.New("accounts.RequestQueue is not set")
}
if inst.AccountMetaSlice[3] == nil {
return errors.New("accounts.OrderPayer is not set")
}
if inst.AccountMetaSlice[4] == nil {
return errors.New("accounts.Owner is not set")
}
if inst.AccountMetaSlice[5] == nil {
return errors.New("accounts.CoinVault is not set")
}
if inst.AccountMetaSlice[6] == nil {
return errors.New("accounts.PcVault is not set")
}
if inst.AccountMetaSlice[7] == nil {
return errors.New("accounts.SplTokenProgram is not set")
}
if inst.AccountMetaSlice[8] == nil {
return errors.New("accounts.RentSysvar is not set")
}
// [9] = FeeDiscounts is optional
}
return nil
}
func (inst *NewOrder) EncodeToTree(parent ag_treeout.Branches) {
parent.Child(ag_format.Program(ProgramName, ProgramID)).
//
ParentFunc(func(programBranch ag_treeout.Branches) {
programBranch.Child(ag_format.Instruction("NewOrder")).
//
ParentFunc(func(instructionBranch ag_treeout.Branches) {
// Parameters of the instruction:
instructionBranch.Child("Params[len=1]").ParentFunc(func(paramsBranch ag_treeout.Branches) {
paramsBranch.Child(ag_format.Param("Args", *inst.Args))
})
// Accounts of the instruction:
instructionBranch.Child("Accounts[len=10]").ParentFunc(func(accountsBranch ag_treeout.Branches) {
accountsBranch.Child(ag_format.Meta(" market", inst.AccountMetaSlice.Get(0)))
accountsBranch.Child(ag_format.Meta(" openOrders", inst.AccountMetaSlice.Get(1)))
accountsBranch.Child(ag_format.Meta(" requestQueue", inst.AccountMetaSlice.Get(2)))
accountsBranch.Child(ag_format.Meta(" orderPayer", inst.AccountMetaSlice.Get(3)))
accountsBranch.Child(ag_format.Meta(" owner", inst.AccountMetaSlice.Get(4)))
accountsBranch.Child(ag_format.Meta(" coinVault", inst.AccountMetaSlice.Get(5)))
accountsBranch.Child(ag_format.Meta(" pcVault", inst.AccountMetaSlice.Get(6)))
accountsBranch.Child(ag_format.Meta("splTokenProgram", inst.AccountMetaSlice.Get(7)))
accountsBranch.Child(ag_format.Meta(" rentSysvar", inst.AccountMetaSlice.Get(8)))
accountsBranch.Child(ag_format.Meta(" feeDiscounts", inst.AccountMetaSlice.Get(9)))
})
})
})
}
func (obj NewOrder) MarshalWithEncoder(encoder *ag_binary.Encoder) (err error) {
// Serialize `Args` param:
err = encoder.Encode(obj.Args)
if err != nil {
return err
}
return nil
}
func (obj *NewOrder) UnmarshalWithDecoder(decoder *ag_binary.Decoder) (err error) {
// Deserialize `Args`:
err = decoder.Decode(&obj.Args)
if err != nil {
return err
}
return nil
}
// NewNewOrderInstruction declares a new NewOrder instruction with the provided parameters and accounts.
func NewNewOrderInstruction(
// Parameters:
args NewOrderInstructionV1,
// Accounts:
market ag_solanago.PublicKey,
openOrders ag_solanago.PublicKey,
requestQueue ag_solanago.PublicKey,
orderPayer ag_solanago.PublicKey,
owner ag_solanago.PublicKey,
coinVault ag_solanago.PublicKey,
pcVault ag_solanago.PublicKey,
splTokenProgram ag_solanago.PublicKey,
rentSysvar ag_solanago.PublicKey,
feeDiscounts ag_solanago.PublicKey) *NewOrder {
return NewNewOrderInstructionBuilder().
SetArgs(args).
SetMarketAccount(market).
SetOpenOrdersAccount(openOrders).
SetRequestQueueAccount(requestQueue).
SetOrderPayerAccount(orderPayer).
SetOwnerAccount(owner).
SetCoinVaultAccount(coinVault).
SetPcVaultAccount(pcVault).
SetSplTokenProgramAccount(splTokenProgram).
SetRentSysvarAccount(rentSysvar).
SetFeeDiscountsAccount(feeDiscounts)
}