-
Notifications
You must be signed in to change notification settings - Fork 30
/
ClaimBid.go
375 lines (336 loc) · 13.6 KB
/
ClaimBid.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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
// 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"
)
// If the auction manager is in a Disbursing or Finished state, then this means Auction must be in Ended state.
// Then this end point can be used as a signed proxy to use auction manager's authority over the auction to claim bid funds
// into the accept payment account on the auction manager for a given bid. Auction has no opinions on how bids are redeemed,
// only that they exist, have been paid, and have a winning place. It is up to the implementer of the auction to determine redemption,
// and auction manager does this via bid redemption tickets and the vault contract which ensure the user always
// can get their NFT once they have paid. Therefore, once they have paid, and the auction is over, the artist can claim
// funds at any time without any danger to the user of losing out on their NFT, because the AM will honor their bid with an NFT
// at ANY time.
type ClaimBid struct {
// [0] = [WRITE] acceptPayment
// ··········· The accept payment account on the auction manager
//
// [1] = [WRITE] bidderPotToken
// ··········· The bidder pot token account
//
// [2] = [WRITE] bidderPotPDA
// ··········· The bidder pot pda account [seed of ['auction', program_id, auction key, bidder key] -
// ··········· relative to the auction program, not auction manager
//
// [3] = [WRITE] auctionManager
// ··········· Auction manager
//
// [4] = [] auction
// ··········· The auction
//
// [5] = [] bidderWallet
// ··········· The bidder wallet
//
// [6] = [] tokenMint
// ··········· Token mint of the auction
//
// [7] = [] vault
// ··········· Vault
//
// [8] = [] store
// ··········· Store
//
// [9] = [] auctionProgram
// ··········· Auction program
//
// [10] = [] clockSysvar
// ··········· Clock sysvar
//
// [11] = [] tokenProgram
// ··········· Token program
//
// [12] = [] auctionExtendedPDA
// ··········· Auction extended (pda relative to auction of ['auction', program id, vault key, 'extended'])
ag_solanago.AccountMetaSlice `bin:"-"`
}
// NewClaimBidInstructionBuilder creates a new `ClaimBid` instruction builder.
func NewClaimBidInstructionBuilder() *ClaimBid {
nd := &ClaimBid{
AccountMetaSlice: make(ag_solanago.AccountMetaSlice, 13),
}
return nd
}
// SetAcceptPaymentAccount sets the "acceptPayment" account.
// The accept payment account on the auction manager
func (inst *ClaimBid) SetAcceptPaymentAccount(acceptPayment ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[0] = ag_solanago.Meta(acceptPayment).WRITE()
return inst
}
// GetAcceptPaymentAccount gets the "acceptPayment" account.
// The accept payment account on the auction manager
func (inst *ClaimBid) GetAcceptPaymentAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(0)
}
// SetBidderPotTokenAccount sets the "bidderPotToken" account.
// The bidder pot token account
func (inst *ClaimBid) SetBidderPotTokenAccount(bidderPotToken ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[1] = ag_solanago.Meta(bidderPotToken).WRITE()
return inst
}
// GetBidderPotTokenAccount gets the "bidderPotToken" account.
// The bidder pot token account
func (inst *ClaimBid) GetBidderPotTokenAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(1)
}
// SetBidderPotPDAAccount sets the "bidderPotPDA" account.
// The bidder pot pda account [seed of ['auction', program_id, auction key, bidder key] -
// relative to the auction program, not auction manager
func (inst *ClaimBid) SetBidderPotPDAAccount(bidderPotPDA ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[2] = ag_solanago.Meta(bidderPotPDA).WRITE()
return inst
}
// GetBidderPotPDAAccount gets the "bidderPotPDA" account.
// The bidder pot pda account [seed of ['auction', program_id, auction key, bidder key] -
// relative to the auction program, not auction manager
func (inst *ClaimBid) GetBidderPotPDAAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(2)
}
// SetAuctionManagerAccount sets the "auctionManager" account.
// Auction manager
func (inst *ClaimBid) SetAuctionManagerAccount(auctionManager ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[3] = ag_solanago.Meta(auctionManager).WRITE()
return inst
}
// GetAuctionManagerAccount gets the "auctionManager" account.
// Auction manager
func (inst *ClaimBid) GetAuctionManagerAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(3)
}
// SetAuctionAccount sets the "auction" account.
// The auction
func (inst *ClaimBid) SetAuctionAccount(auction ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[4] = ag_solanago.Meta(auction)
return inst
}
// GetAuctionAccount gets the "auction" account.
// The auction
func (inst *ClaimBid) GetAuctionAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(4)
}
// SetBidderWalletAccount sets the "bidderWallet" account.
// The bidder wallet
func (inst *ClaimBid) SetBidderWalletAccount(bidderWallet ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[5] = ag_solanago.Meta(bidderWallet)
return inst
}
// GetBidderWalletAccount gets the "bidderWallet" account.
// The bidder wallet
func (inst *ClaimBid) GetBidderWalletAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(5)
}
// SetTokenMintAccount sets the "tokenMint" account.
// Token mint of the auction
func (inst *ClaimBid) SetTokenMintAccount(tokenMint ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[6] = ag_solanago.Meta(tokenMint)
return inst
}
// GetTokenMintAccount gets the "tokenMint" account.
// Token mint of the auction
func (inst *ClaimBid) GetTokenMintAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(6)
}
// SetVaultAccount sets the "vault" account.
// Vault
func (inst *ClaimBid) SetVaultAccount(vault ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[7] = ag_solanago.Meta(vault)
return inst
}
// GetVaultAccount gets the "vault" account.
// Vault
func (inst *ClaimBid) GetVaultAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(7)
}
// SetStoreAccount sets the "store" account.
// Store
func (inst *ClaimBid) SetStoreAccount(store ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[8] = ag_solanago.Meta(store)
return inst
}
// GetStoreAccount gets the "store" account.
// Store
func (inst *ClaimBid) GetStoreAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(8)
}
// SetAuctionProgramAccount sets the "auctionProgram" account.
// Auction program
func (inst *ClaimBid) SetAuctionProgramAccount(auctionProgram ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[9] = ag_solanago.Meta(auctionProgram)
return inst
}
// GetAuctionProgramAccount gets the "auctionProgram" account.
// Auction program
func (inst *ClaimBid) GetAuctionProgramAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(9)
}
// SetClockSysvarAccount sets the "clockSysvar" account.
// Clock sysvar
func (inst *ClaimBid) SetClockSysvarAccount(clockSysvar ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[10] = ag_solanago.Meta(clockSysvar)
return inst
}
// GetClockSysvarAccount gets the "clockSysvar" account.
// Clock sysvar
func (inst *ClaimBid) GetClockSysvarAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(10)
}
// SetTokenProgramAccount sets the "tokenProgram" account.
// Token program
func (inst *ClaimBid) SetTokenProgramAccount(tokenProgram ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[11] = ag_solanago.Meta(tokenProgram)
return inst
}
// GetTokenProgramAccount gets the "tokenProgram" account.
// Token program
func (inst *ClaimBid) GetTokenProgramAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(11)
}
// SetAuctionExtendedPDAAccount sets the "auctionExtendedPDA" account.
// Auction extended (pda relative to auction of ['auction', program id, vault key, 'extended'])
func (inst *ClaimBid) SetAuctionExtendedPDAAccount(auctionExtendedPDA ag_solanago.PublicKey) *ClaimBid {
inst.AccountMetaSlice[12] = ag_solanago.Meta(auctionExtendedPDA)
return inst
}
// GetAuctionExtendedPDAAccount gets the "auctionExtendedPDA" account.
// Auction extended (pda relative to auction of ['auction', program id, vault key, 'extended'])
func (inst *ClaimBid) GetAuctionExtendedPDAAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice.Get(12)
}
func (inst ClaimBid) Build() *Instruction {
return &Instruction{BaseVariant: ag_binary.BaseVariant{
Impl: inst,
TypeID: ag_binary.TypeIDFromUint8(Instruction_ClaimBid),
}}
}
// 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 ClaimBid) ValidateAndBuild() (*Instruction, error) {
if err := inst.Validate(); err != nil {
return nil, err
}
return inst.Build(), nil
}
func (inst *ClaimBid) Validate() error {
// Check whether all (required) accounts are set:
{
if inst.AccountMetaSlice[0] == nil {
return errors.New("accounts.AcceptPayment is not set")
}
if inst.AccountMetaSlice[1] == nil {
return errors.New("accounts.BidderPotToken is not set")
}
if inst.AccountMetaSlice[2] == nil {
return errors.New("accounts.BidderPotPDA is not set")
}
if inst.AccountMetaSlice[3] == nil {
return errors.New("accounts.AuctionManager is not set")
}
if inst.AccountMetaSlice[4] == nil {
return errors.New("accounts.Auction is not set")
}
if inst.AccountMetaSlice[5] == nil {
return errors.New("accounts.BidderWallet is not set")
}
if inst.AccountMetaSlice[6] == nil {
return errors.New("accounts.TokenMint is not set")
}
if inst.AccountMetaSlice[7] == nil {
return errors.New("accounts.Vault is not set")
}
if inst.AccountMetaSlice[8] == nil {
return errors.New("accounts.Store is not set")
}
if inst.AccountMetaSlice[9] == nil {
return errors.New("accounts.AuctionProgram is not set")
}
if inst.AccountMetaSlice[10] == nil {
return errors.New("accounts.ClockSysvar is not set")
}
if inst.AccountMetaSlice[11] == nil {
return errors.New("accounts.TokenProgram is not set")
}
if inst.AccountMetaSlice[12] == nil {
return errors.New("accounts.AuctionExtendedPDA is not set")
}
}
return nil
}
func (inst *ClaimBid) EncodeToTree(parent ag_treeout.Branches) {
parent.Child(ag_format.Program(ProgramName, ProgramID)).
//
ParentFunc(func(programBranch ag_treeout.Branches) {
programBranch.Child(ag_format.Instruction("ClaimBid")).
//
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=13]").ParentFunc(func(accountsBranch ag_treeout.Branches) {
accountsBranch.Child(ag_format.Meta(" acceptPayment", inst.AccountMetaSlice.Get(0)))
accountsBranch.Child(ag_format.Meta(" bidderPotToken", inst.AccountMetaSlice.Get(1)))
accountsBranch.Child(ag_format.Meta(" bidderPotPDA", inst.AccountMetaSlice.Get(2)))
accountsBranch.Child(ag_format.Meta(" auctionManager", inst.AccountMetaSlice.Get(3)))
accountsBranch.Child(ag_format.Meta(" auction", inst.AccountMetaSlice.Get(4)))
accountsBranch.Child(ag_format.Meta(" bidderWallet", inst.AccountMetaSlice.Get(5)))
accountsBranch.Child(ag_format.Meta(" tokenMint", inst.AccountMetaSlice.Get(6)))
accountsBranch.Child(ag_format.Meta(" vault", inst.AccountMetaSlice.Get(7)))
accountsBranch.Child(ag_format.Meta(" store", inst.AccountMetaSlice.Get(8)))
accountsBranch.Child(ag_format.Meta(" auctionProgram", inst.AccountMetaSlice.Get(9)))
accountsBranch.Child(ag_format.Meta(" clockSysvar", inst.AccountMetaSlice.Get(10)))
accountsBranch.Child(ag_format.Meta(" tokenProgram", inst.AccountMetaSlice.Get(11)))
accountsBranch.Child(ag_format.Meta("auctionExtendedPDA", inst.AccountMetaSlice.Get(12)))
})
})
})
}
func (obj ClaimBid) MarshalWithEncoder(encoder *ag_binary.Encoder) (err error) {
return nil
}
func (obj *ClaimBid) UnmarshalWithDecoder(decoder *ag_binary.Decoder) (err error) {
return nil
}
// NewClaimBidInstruction declares a new ClaimBid instruction with the provided parameters and accounts.
func NewClaimBidInstruction(
// Accounts:
acceptPayment ag_solanago.PublicKey,
bidderPotToken ag_solanago.PublicKey,
bidderPotPDA ag_solanago.PublicKey,
auctionManager ag_solanago.PublicKey,
auction ag_solanago.PublicKey,
bidderWallet ag_solanago.PublicKey,
tokenMint ag_solanago.PublicKey,
vault ag_solanago.PublicKey,
store ag_solanago.PublicKey,
auctionProgram ag_solanago.PublicKey,
clockSysvar ag_solanago.PublicKey,
tokenProgram ag_solanago.PublicKey,
auctionExtendedPDA ag_solanago.PublicKey) *ClaimBid {
return NewClaimBidInstructionBuilder().
SetAcceptPaymentAccount(acceptPayment).
SetBidderPotTokenAccount(bidderPotToken).
SetBidderPotPDAAccount(bidderPotPDA).
SetAuctionManagerAccount(auctionManager).
SetAuctionAccount(auction).
SetBidderWalletAccount(bidderWallet).
SetTokenMintAccount(tokenMint).
SetVaultAccount(vault).
SetStoreAccount(store).
SetAuctionProgramAccount(auctionProgram).
SetClockSysvarAccount(clockSysvar).
SetTokenProgramAccount(tokenProgram).
SetAuctionExtendedPDAAccount(auctionExtendedPDA)
}