-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathauthorizeNonceAccount.ts
More file actions
197 lines (181 loc) · 5.84 KB
/
authorizeNonceAccount.ts
File metadata and controls
197 lines (181 loc) · 5.84 KB
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
/**
* This code was AUTOGENERATED using the Codama library.
* Please DO NOT EDIT THIS FILE, instead use visitors
* to add features, then rerun Codama to update it.
*
* @see https://github.com/codama-idl/codama
*/
import {
combineCodec,
getAddressDecoder,
getAddressEncoder,
getStructDecoder,
getStructEncoder,
getU32Decoder,
getU32Encoder,
transformEncoder,
type AccountMeta,
type AccountSignerMeta,
type Address,
type FixedSizeCodec,
type FixedSizeDecoder,
type FixedSizeEncoder,
type Instruction,
type InstructionWithAccounts,
type InstructionWithData,
type ReadonlySignerAccount,
type ReadonlyUint8Array,
type TransactionSigner,
type WritableAccount,
} from '@solana/kit';
import { SYSTEM_PROGRAM_ADDRESS } from '../programs';
import { getAccountMetaFactory, type ResolvedAccount } from '../shared';
export const AUTHORIZE_NONCE_ACCOUNT_DISCRIMINATOR = 7;
export function getAuthorizeNonceAccountDiscriminatorBytes() {
return getU32Encoder().encode(AUTHORIZE_NONCE_ACCOUNT_DISCRIMINATOR);
}
export type AuthorizeNonceAccountInstruction<
TProgram extends string = typeof SYSTEM_PROGRAM_ADDRESS,
TAccountNonceAccount extends string | AccountMeta<string> = string,
TAccountNonceAuthority extends string | AccountMeta<string> = string,
TRemainingAccounts extends readonly AccountMeta<string>[] = [],
> = Instruction<TProgram> &
InstructionWithData<ReadonlyUint8Array> &
InstructionWithAccounts<
[
TAccountNonceAccount extends string
? WritableAccount<TAccountNonceAccount>
: TAccountNonceAccount,
TAccountNonceAuthority extends string
? ReadonlySignerAccount<TAccountNonceAuthority> &
AccountSignerMeta<TAccountNonceAuthority>
: TAccountNonceAuthority,
...TRemainingAccounts,
]
>;
export type AuthorizeNonceAccountInstructionData = {
discriminator: number;
newNonceAuthority: Address;
};
export type AuthorizeNonceAccountInstructionDataArgs = {
newNonceAuthority: Address;
};
export function getAuthorizeNonceAccountInstructionDataEncoder(): FixedSizeEncoder<AuthorizeNonceAccountInstructionDataArgs> {
return transformEncoder(
getStructEncoder([
['discriminator', getU32Encoder()],
['newNonceAuthority', getAddressEncoder()],
]),
(value) => ({
...value,
discriminator: AUTHORIZE_NONCE_ACCOUNT_DISCRIMINATOR,
})
);
}
export function getAuthorizeNonceAccountInstructionDataDecoder(): FixedSizeDecoder<AuthorizeNonceAccountInstructionData> {
return getStructDecoder([
['discriminator', getU32Decoder()],
['newNonceAuthority', getAddressDecoder()],
]);
}
export function getAuthorizeNonceAccountInstructionDataCodec(): FixedSizeCodec<
AuthorizeNonceAccountInstructionDataArgs,
AuthorizeNonceAccountInstructionData
> {
return combineCodec(
getAuthorizeNonceAccountInstructionDataEncoder(),
getAuthorizeNonceAccountInstructionDataDecoder()
);
}
export type AuthorizeNonceAccountInput<
TAccountNonceAccount extends string = string,
TAccountNonceAuthority extends string = string,
> = {
nonceAccount: Address<TAccountNonceAccount>;
nonceAuthority: TransactionSigner<TAccountNonceAuthority>;
newNonceAuthority: AuthorizeNonceAccountInstructionDataArgs['newNonceAuthority'];
};
export function getAuthorizeNonceAccountInstruction<
TAccountNonceAccount extends string,
TAccountNonceAuthority extends string,
TProgramAddress extends Address = typeof SYSTEM_PROGRAM_ADDRESS,
>(
input: AuthorizeNonceAccountInput<
TAccountNonceAccount,
TAccountNonceAuthority
>,
config?: { programAddress?: TProgramAddress }
): AuthorizeNonceAccountInstruction<
TProgramAddress,
TAccountNonceAccount,
TAccountNonceAuthority
> {
// Program address.
const programAddress = config?.programAddress ?? SYSTEM_PROGRAM_ADDRESS;
// Original accounts.
const originalAccounts = {
nonceAccount: { value: input.nonceAccount ?? null, isWritable: true },
nonceAuthority: { value: input.nonceAuthority ?? null, isWritable: false },
};
const accounts = originalAccounts as Record<
keyof typeof originalAccounts,
ResolvedAccount
>;
// Original args.
const args = { ...input };
const getAccountMeta = getAccountMetaFactory(programAddress, 'omitted');
return Object.freeze({
accounts: [
getAccountMeta(accounts.nonceAccount),
getAccountMeta(accounts.nonceAuthority),
],
data: getAuthorizeNonceAccountInstructionDataEncoder().encode(
args as AuthorizeNonceAccountInstructionDataArgs
),
programAddress,
} as AuthorizeNonceAccountInstruction<
TProgramAddress,
TAccountNonceAccount,
TAccountNonceAuthority
>);
}
export type ParsedAuthorizeNonceAccountInstruction<
TProgram extends string = typeof SYSTEM_PROGRAM_ADDRESS,
TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
> = {
programAddress: Address<TProgram>;
accounts: {
nonceAccount: TAccountMetas[0];
nonceAuthority: TAccountMetas[1];
};
data: AuthorizeNonceAccountInstructionData;
};
export function parseAuthorizeNonceAccountInstruction<
TProgram extends string,
TAccountMetas extends readonly AccountMeta[],
>(
instruction: Instruction<TProgram> &
InstructionWithAccounts<TAccountMetas> &
InstructionWithData<ReadonlyUint8Array>
): ParsedAuthorizeNonceAccountInstruction<TProgram, TAccountMetas> {
if (instruction.accounts.length < 2) {
// TODO: Coded error.
throw new Error('Not enough accounts');
}
let accountIndex = 0;
const getNextAccount = () => {
const accountMeta = (instruction.accounts as TAccountMetas)[accountIndex]!;
accountIndex += 1;
return accountMeta;
};
return {
programAddress: instruction.programAddress,
accounts: {
nonceAccount: getNextAccount(),
nonceAuthority: getNextAccount(),
},
data: getAuthorizeNonceAccountInstructionDataDecoder().decode(
instruction.data
),
};
}