generated from codama-idl/renderers-demo
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwithdrawNonceAccount.ts
More file actions
232 lines (215 loc) · 8.71 KB
/
withdrawNonceAccount.ts
File metadata and controls
232 lines (215 loc) · 8.71 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
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
/**
* 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,
getStructDecoder,
getStructEncoder,
getU32Decoder,
getU32Encoder,
getU64Decoder,
getU64Encoder,
transformEncoder,
type AccountMeta,
type AccountSignerMeta,
type Address,
type FixedSizeCodec,
type FixedSizeDecoder,
type FixedSizeEncoder,
type Instruction,
type InstructionWithAccounts,
type InstructionWithData,
type ReadonlyAccount,
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 WITHDRAW_NONCE_ACCOUNT_DISCRIMINATOR = 5;
export function getWithdrawNonceAccountDiscriminatorBytes() {
return getU32Encoder().encode(WITHDRAW_NONCE_ACCOUNT_DISCRIMINATOR);
}
export type WithdrawNonceAccountInstruction<
TProgram extends string = typeof SYSTEM_PROGRAM_ADDRESS,
TAccountNonceAccount extends string | AccountMeta<string> = string,
TAccountRecipientAccount extends string | AccountMeta<string> = string,
TAccountRecentBlockhashesSysvar extends
| string
| AccountMeta<string> = 'SysvarRecentB1ockHashes11111111111111111111',
TAccountRentSysvar extends string | AccountMeta<string> = 'SysvarRent111111111111111111111111111111111',
TAccountNonceAuthority extends string | AccountMeta<string> = string,
TRemainingAccounts extends readonly AccountMeta<string>[] = [],
> = Instruction<TProgram> &
InstructionWithData<ReadonlyUint8Array> &
InstructionWithAccounts<
[
TAccountNonceAccount extends string ? WritableAccount<TAccountNonceAccount> : TAccountNonceAccount,
TAccountRecipientAccount extends string
? WritableAccount<TAccountRecipientAccount>
: TAccountRecipientAccount,
TAccountRecentBlockhashesSysvar extends string
? ReadonlyAccount<TAccountRecentBlockhashesSysvar>
: TAccountRecentBlockhashesSysvar,
TAccountRentSysvar extends string ? ReadonlyAccount<TAccountRentSysvar> : TAccountRentSysvar,
TAccountNonceAuthority extends string
? ReadonlySignerAccount<TAccountNonceAuthority> & AccountSignerMeta<TAccountNonceAuthority>
: TAccountNonceAuthority,
...TRemainingAccounts,
]
>;
export type WithdrawNonceAccountInstructionData = { discriminator: number; withdrawAmount: bigint };
export type WithdrawNonceAccountInstructionDataArgs = { withdrawAmount: number | bigint };
export function getWithdrawNonceAccountInstructionDataEncoder(): FixedSizeEncoder<WithdrawNonceAccountInstructionDataArgs> {
return transformEncoder(
getStructEncoder([
['discriminator', getU32Encoder()],
['withdrawAmount', getU64Encoder()],
]),
value => ({ ...value, discriminator: WITHDRAW_NONCE_ACCOUNT_DISCRIMINATOR }),
);
}
export function getWithdrawNonceAccountInstructionDataDecoder(): FixedSizeDecoder<WithdrawNonceAccountInstructionData> {
return getStructDecoder([
['discriminator', getU32Decoder()],
['withdrawAmount', getU64Decoder()],
]);
}
export function getWithdrawNonceAccountInstructionDataCodec(): FixedSizeCodec<
WithdrawNonceAccountInstructionDataArgs,
WithdrawNonceAccountInstructionData
> {
return combineCodec(
getWithdrawNonceAccountInstructionDataEncoder(),
getWithdrawNonceAccountInstructionDataDecoder(),
);
}
export type WithdrawNonceAccountInput<
TAccountNonceAccount extends string = string,
TAccountRecipientAccount extends string = string,
TAccountRecentBlockhashesSysvar extends string = string,
TAccountRentSysvar extends string = string,
TAccountNonceAuthority extends string = string,
> = {
nonceAccount: Address<TAccountNonceAccount>;
recipientAccount: Address<TAccountRecipientAccount>;
recentBlockhashesSysvar?: Address<TAccountRecentBlockhashesSysvar>;
rentSysvar?: Address<TAccountRentSysvar>;
nonceAuthority: TransactionSigner<TAccountNonceAuthority>;
withdrawAmount: WithdrawNonceAccountInstructionDataArgs['withdrawAmount'];
};
export function getWithdrawNonceAccountInstruction<
TAccountNonceAccount extends string,
TAccountRecipientAccount extends string,
TAccountRecentBlockhashesSysvar extends string,
TAccountRentSysvar extends string,
TAccountNonceAuthority extends string,
TProgramAddress extends Address = typeof SYSTEM_PROGRAM_ADDRESS,
>(
input: WithdrawNonceAccountInput<
TAccountNonceAccount,
TAccountRecipientAccount,
TAccountRecentBlockhashesSysvar,
TAccountRentSysvar,
TAccountNonceAuthority
>,
config?: { programAddress?: TProgramAddress },
): WithdrawNonceAccountInstruction<
TProgramAddress,
TAccountNonceAccount,
TAccountRecipientAccount,
TAccountRecentBlockhashesSysvar,
TAccountRentSysvar,
TAccountNonceAuthority
> {
// Program address.
const programAddress = config?.programAddress ?? SYSTEM_PROGRAM_ADDRESS;
// Original accounts.
const originalAccounts = {
nonceAccount: { value: input.nonceAccount ?? null, isWritable: true },
recipientAccount: { value: input.recipientAccount ?? null, isWritable: true },
recentBlockhashesSysvar: { value: input.recentBlockhashesSysvar ?? null, isWritable: false },
rentSysvar: { value: input.rentSysvar ?? null, isWritable: false },
nonceAuthority: { value: input.nonceAuthority ?? null, isWritable: false },
};
const accounts = originalAccounts as Record<keyof typeof originalAccounts, ResolvedAccount>;
// Original args.
const args = { ...input };
// Resolve default values.
if (!accounts.recentBlockhashesSysvar.value) {
accounts.recentBlockhashesSysvar.value =
'SysvarRecentB1ockHashes11111111111111111111' as Address<'SysvarRecentB1ockHashes11111111111111111111'>;
}
if (!accounts.rentSysvar.value) {
accounts.rentSysvar.value =
'SysvarRent111111111111111111111111111111111' as Address<'SysvarRent111111111111111111111111111111111'>;
}
const getAccountMeta = getAccountMetaFactory(programAddress, 'programId');
return Object.freeze({
accounts: [
getAccountMeta(accounts.nonceAccount),
getAccountMeta(accounts.recipientAccount),
getAccountMeta(accounts.recentBlockhashesSysvar),
getAccountMeta(accounts.rentSysvar),
getAccountMeta(accounts.nonceAuthority),
],
data: getWithdrawNonceAccountInstructionDataEncoder().encode(args as WithdrawNonceAccountInstructionDataArgs),
programAddress,
} as WithdrawNonceAccountInstruction<
TProgramAddress,
TAccountNonceAccount,
TAccountRecipientAccount,
TAccountRecentBlockhashesSysvar,
TAccountRentSysvar,
TAccountNonceAuthority
>);
}
export type ParsedWithdrawNonceAccountInstruction<
TProgram extends string = typeof SYSTEM_PROGRAM_ADDRESS,
TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
> = {
programAddress: Address<TProgram>;
accounts: {
nonceAccount: TAccountMetas[0];
recipientAccount: TAccountMetas[1];
recentBlockhashesSysvar: TAccountMetas[2];
rentSysvar: TAccountMetas[3];
nonceAuthority: TAccountMetas[4];
};
data: WithdrawNonceAccountInstructionData;
};
export function parseWithdrawNonceAccountInstruction<
TProgram extends string,
TAccountMetas extends readonly AccountMeta[],
>(
instruction: Instruction<TProgram> &
InstructionWithAccounts<TAccountMetas> &
InstructionWithData<ReadonlyUint8Array>,
): ParsedWithdrawNonceAccountInstruction<TProgram, TAccountMetas> {
if (instruction.accounts.length < 5) {
// 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(),
recipientAccount: getNextAccount(),
recentBlockhashesSysvar: getNextAccount(),
rentSysvar: getNextAccount(),
nonceAuthority: getNextAccount(),
},
data: getWithdrawNonceAccountInstructionDataDecoder().decode(instruction.data),
};
}