-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathSetAuctionCache.go
277 lines (246 loc) · 9.31 KB
/
SetAuctionCache.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
// Code generated by https://github.com/gagliardetto/anchor-go. DO NOT EDIT.
package metaplex
import (
"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"
)
// Creates/Updates a store index page
type SetAuctionCache struct {
// [0] = [WRITE] auctionCachePDA
// ··········· Auction cache (pda of ['metaplex', program id, store key, auction key, 'cache'])
//
// [1] = [SIGNER] payer
// ··········· Payer info
//
// [2] = [] auction
// ··········· Auction
//
// [3] = [] safetyDepositBox
// ··········· Safety deposit box account
//
// [4] = [] auctionManager
// ··········· Auction manager
//
// [5] = [] store
// ··········· Store key
//
// [6] = [] system
// ··········· System
//
// [7] = [] rentSysvar
// ··········· Rent sysvar
//
// [8] = [] clockSysvar
// ··········· Clock sysvar
ag_solanago.AccountMetaSlice `bin:"-"`
}
// NewSetAuctionCacheInstructionBuilder creates a new `SetAuctionCache` instruction builder.
func NewSetAuctionCacheInstructionBuilder() *SetAuctionCache {
nd := &SetAuctionCache{
AccountMetaSlice: make(ag_solanago.AccountMetaSlice, 9),
}
return nd
}
// SetAuctionCachePDAAccount sets the "auctionCachePDA" account.
// Auction cache (pda of ['metaplex', program id, store key, auction key, 'cache'])
func (inst *SetAuctionCache) SetAuctionCachePDAAccount(auctionCachePDA ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[0] = ag_solanago.Meta(auctionCachePDA).WRITE()
return inst
}
// GetAuctionCachePDAAccount gets the "auctionCachePDA" account.
// Auction cache (pda of ['metaplex', program id, store key, auction key, 'cache'])
func (inst *SetAuctionCache) GetAuctionCachePDAAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(0)
}
// SetPayerAccount sets the "payer" account.
// Payer info
func (inst *SetAuctionCache) SetPayerAccount(payer ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[1] = ag_solanago.Meta(payer).SIGNER()
return inst
}
// GetPayerAccount gets the "payer" account.
// Payer info
func (inst *SetAuctionCache) GetPayerAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(1)
}
// SetAuctionAccount sets the "auction" account.
// Auction
func (inst *SetAuctionCache) SetAuctionAccount(auction ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[2] = ag_solanago.Meta(auction)
return inst
}
// GetAuctionAccount gets the "auction" account.
// Auction
func (inst *SetAuctionCache) GetAuctionAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(2)
}
// SetSafetyDepositBoxAccount sets the "safetyDepositBox" account.
// Safety deposit box account
func (inst *SetAuctionCache) SetSafetyDepositBoxAccount(safetyDepositBox ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[3] = ag_solanago.Meta(safetyDepositBox)
return inst
}
// GetSafetyDepositBoxAccount gets the "safetyDepositBox" account.
// Safety deposit box account
func (inst *SetAuctionCache) GetSafetyDepositBoxAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(3)
}
// SetAuctionManagerAccount sets the "auctionManager" account.
// Auction manager
func (inst *SetAuctionCache) SetAuctionManagerAccount(auctionManager ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[4] = ag_solanago.Meta(auctionManager)
return inst
}
// GetAuctionManagerAccount gets the "auctionManager" account.
// Auction manager
func (inst *SetAuctionCache) GetAuctionManagerAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(4)
}
// SetStoreAccount sets the "store" account.
// Store key
func (inst *SetAuctionCache) SetStoreAccount(store ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[5] = ag_solanago.Meta(store)
return inst
}
// GetStoreAccount gets the "store" account.
// Store key
func (inst *SetAuctionCache) GetStoreAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(5)
}
// SetSystemAccount sets the "system" account.
// System
func (inst *SetAuctionCache) SetSystemAccount(system ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[6] = ag_solanago.Meta(system)
return inst
}
// GetSystemAccount gets the "system" account.
// System
func (inst *SetAuctionCache) GetSystemAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(6)
}
// SetRentSysvarAccount sets the "rentSysvar" account.
// Rent sysvar
func (inst *SetAuctionCache) SetRentSysvarAccount(rentSysvar ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[7] = ag_solanago.Meta(rentSysvar)
return inst
}
// GetRentSysvarAccount gets the "rentSysvar" account.
// Rent sysvar
func (inst *SetAuctionCache) GetRentSysvarAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(7)
}
// SetClockSysvarAccount sets the "clockSysvar" account.
// Clock sysvar
func (inst *SetAuctionCache) SetClockSysvarAccount(clockSysvar ag_solanago.PublicKey) *SetAuctionCache {
inst.AccountMetaSlice[8] = ag_solanago.Meta(clockSysvar)
return inst
}
// GetClockSysvarAccount gets the "clockSysvar" account.
// Clock sysvar
func (inst *SetAuctionCache) GetClockSysvarAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(8)
}
func (inst SetAuctionCache) Build() *Instruction {
return &Instruction{BaseVariant: ag_binary.BaseVariant{
Impl: inst,
TypeID: ag_binary.TypeIDFromUint8(Instruction_SetAuctionCache),
}}
}
// 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 SetAuctionCache) ValidateAndBuild() (*Instruction, error) {
if err := inst.Validate(); err != nil {
return nil, err
}
return inst.Build(), nil
}
func (inst *SetAuctionCache) Validate() error {
// Check whether all (required) accounts are set:
{
if inst.AccountMetaSlice[0] == nil {
return errors.New("accounts.AuctionCachePDA is not set")
}
if inst.AccountMetaSlice[1] == nil {
return errors.New("accounts.Payer is not set")
}
if inst.AccountMetaSlice[2] == nil {
return errors.New("accounts.Auction is not set")
}
if inst.AccountMetaSlice[3] == nil {
return errors.New("accounts.SafetyDepositBox is not set")
}
if inst.AccountMetaSlice[4] == nil {
return errors.New("accounts.AuctionManager is not set")
}
if inst.AccountMetaSlice[5] == nil {
return errors.New("accounts.Store is not set")
}
if inst.AccountMetaSlice[6] == nil {
return errors.New("accounts.System is not set")
}
if inst.AccountMetaSlice[7] == nil {
return errors.New("accounts.RentSysvar is not set")
}
if inst.AccountMetaSlice[8] == nil {
return errors.New("accounts.ClockSysvar is not set")
}
}
return nil
}
func (inst *SetAuctionCache) EncodeToTree(parent ag_treeout.Branches) {
parent.Child(ag_format.Program(ProgramName, ProgramID)).
//
ParentFunc(func(programBranch ag_treeout.Branches) {
programBranch.Child(ag_format.Instruction("SetAuctionCache")).
//
ParentFunc(func(instructionBranch ag_treeout.Branches) {
// Parameters of the instruction:
instructionBranch.Child("Params[len=0]").ParentFunc(func(paramsBranch ag_treeout.Branches) {})
// Accounts of the instruction:
instructionBranch.Child("Accounts[len=9]").ParentFunc(func(accountsBranch ag_treeout.Branches) {
accountsBranch.Child(ag_format.Meta(" auctionCachePDA", inst.AccountMetaSlice.Get(0)))
accountsBranch.Child(ag_format.Meta(" payer", inst.AccountMetaSlice.Get(1)))
accountsBranch.Child(ag_format.Meta(" auction", inst.AccountMetaSlice.Get(2)))
accountsBranch.Child(ag_format.Meta("safetyDepositBox", inst.AccountMetaSlice.Get(3)))
accountsBranch.Child(ag_format.Meta(" auctionManager", inst.AccountMetaSlice.Get(4)))
accountsBranch.Child(ag_format.Meta(" store", inst.AccountMetaSlice.Get(5)))
accountsBranch.Child(ag_format.Meta(" system", inst.AccountMetaSlice.Get(6)))
accountsBranch.Child(ag_format.Meta(" rentSysvar", inst.AccountMetaSlice.Get(7)))
accountsBranch.Child(ag_format.Meta(" clockSysvar", inst.AccountMetaSlice.Get(8)))
})
})
})
}
func (obj SetAuctionCache) MarshalWithEncoder(encoder *ag_binary.Encoder) (err error) {
return nil
}
func (obj *SetAuctionCache) UnmarshalWithDecoder(decoder *ag_binary.Decoder) (err error) {
return nil
}
// NewSetAuctionCacheInstruction declares a new SetAuctionCache instruction with the provided parameters and accounts.
func NewSetAuctionCacheInstruction(
// Accounts:
auctionCachePDA ag_solanago.PublicKey,
payer ag_solanago.PublicKey,
auction ag_solanago.PublicKey,
safetyDepositBox ag_solanago.PublicKey,
auctionManager ag_solanago.PublicKey,
store ag_solanago.PublicKey,
system ag_solanago.PublicKey,
rentSysvar ag_solanago.PublicKey,
clockSysvar ag_solanago.PublicKey) *SetAuctionCache {
return NewSetAuctionCacheInstructionBuilder().
SetAuctionCachePDAAccount(auctionCachePDA).
SetPayerAccount(payer).
SetAuctionAccount(auction).
SetSafetyDepositBoxAccount(safetyDepositBox).
SetAuctionManagerAccount(auctionManager).
SetStoreAccount(store).
SetSystemAccount(system).
SetRentSysvarAccount(rentSysvar).
SetClockSysvarAccount(clockSysvar)
}