-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstructions_save_recent_root.go
101 lines (80 loc) · 2.22 KB
/
instructions_save_recent_root.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
package splitter_token
import (
"bytes"
"crypto/ed25519"
)
var saveRecentRootInstructionDiscriminator = []byte{
163, 45, 123, 32, 127, 86, 42, 189,
}
const (
SaveRecentRootInstructionArgsSize = 1 // pool_bump
SaveRecentRootInstructionAccountsSize = (32 + // pool
32 + // authority
32) // payer
SaveRecentRootInstructionSize = (8 + // discriminator
SaveRecentRootInstructionArgsSize + // args
SaveRecentRootInstructionAccountsSize) // accounts
)
type SaveRecentRootInstructionArgs struct {
PoolBump uint8
}
type SaveRecentRootInstructionAccounts struct {
Pool ed25519.PublicKey
Authority ed25519.PublicKey
Payer ed25519.PublicKey
}
func NewSaveRecentRootInstruction(
accounts *SaveRecentRootInstructionAccounts,
args *SaveRecentRootInstructionArgs,
) Instruction {
var offset int
// Serialize instruction arguments
data := make([]byte,
len(saveRecentRootInstructionDiscriminator)+
SaveRecentRootInstructionArgsSize)
putDiscriminator(data, saveRecentRootInstructionDiscriminator, &offset)
putUint8(data, args.PoolBump, &offset)
return Instruction{
Program: PROGRAM_ADDRESS,
// Instruction args
Data: data,
// Instruction accounts
Accounts: []AccountMeta{
{
PublicKey: accounts.Pool,
IsWritable: true,
IsSigner: false,
},
{
PublicKey: accounts.Authority,
IsWritable: false,
IsSigner: true,
},
{
PublicKey: accounts.Payer,
IsWritable: true,
IsSigner: true,
},
},
}
}
func SaveRecentRootInstructionFromBinary(data []byte) (*SaveRecentRootInstructionArgs, *SaveRecentRootInstructionAccounts, error) {
var offset int
var discriminator []byte
if len(data) < SaveRecentRootInstructionSize {
return nil, nil, ErrInvalidInstructionData
}
getDiscriminator(data, &discriminator, &offset)
if !bytes.Equal(discriminator, saveRecentRootInstructionDiscriminator) {
return nil, nil, ErrInvalidInstructionData
}
var args SaveRecentRootInstructionArgs
var accounts SaveRecentRootInstructionAccounts
// Instruction Args
getUint8(data, &args.PoolBump, &offset)
// Instruction Accounts
getKey(data, &accounts.Pool, &offset)
getKey(data, &accounts.Authority, &offset)
getKey(data, &accounts.Payer, &offset)
return &args, &accounts, nil
}