generated from codama-idl/renderers-demo
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinitializeNonceAccount.ts
More file actions
198 lines (181 loc) · 7.24 KB
/
initializeNonceAccount.ts
File metadata and controls
198 lines (181 loc) · 7.24 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
/**
* 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 Address,
type FixedSizeCodec,
type FixedSizeDecoder,
type FixedSizeEncoder,
type Instruction,
type InstructionWithAccounts,
type InstructionWithData,
type ReadonlyAccount,
type ReadonlyUint8Array,
type WritableAccount,
} from '@solana/kit';
import { SYSTEM_PROGRAM_ADDRESS } from '../programs';
import { getAccountMetaFactory, type ResolvedAccount } from '../shared';
export const INITIALIZE_NONCE_ACCOUNT_DISCRIMINATOR = 6;
export function getInitializeNonceAccountDiscriminatorBytes() {
return getU32Encoder().encode(INITIALIZE_NONCE_ACCOUNT_DISCRIMINATOR);
}
export type InitializeNonceAccountInstruction<
TProgram extends string = typeof SYSTEM_PROGRAM_ADDRESS,
TAccountNonceAccount extends string | AccountMeta<string> = string,
TAccountRecentBlockhashesSysvar extends string | AccountMeta<string> =
'SysvarRecentB1ockHashes11111111111111111111',
TAccountRentSysvar extends string | AccountMeta<string> = 'SysvarRent111111111111111111111111111111111',
TRemainingAccounts extends readonly AccountMeta<string>[] = [],
> = Instruction<TProgram> &
InstructionWithData<ReadonlyUint8Array> &
InstructionWithAccounts<
[
TAccountNonceAccount extends string ? WritableAccount<TAccountNonceAccount> : TAccountNonceAccount,
TAccountRecentBlockhashesSysvar extends string
? ReadonlyAccount<TAccountRecentBlockhashesSysvar>
: TAccountRecentBlockhashesSysvar,
TAccountRentSysvar extends string ? ReadonlyAccount<TAccountRentSysvar> : TAccountRentSysvar,
...TRemainingAccounts,
]
>;
export type InitializeNonceAccountInstructionData = { discriminator: number; nonceAuthority: Address };
export type InitializeNonceAccountInstructionDataArgs = { nonceAuthority: Address };
export function getInitializeNonceAccountInstructionDataEncoder(): FixedSizeEncoder<InitializeNonceAccountInstructionDataArgs> {
return transformEncoder(
getStructEncoder([
['discriminator', getU32Encoder()],
['nonceAuthority', getAddressEncoder()],
]),
value => ({ ...value, discriminator: INITIALIZE_NONCE_ACCOUNT_DISCRIMINATOR }),
);
}
export function getInitializeNonceAccountInstructionDataDecoder(): FixedSizeDecoder<InitializeNonceAccountInstructionData> {
return getStructDecoder([
['discriminator', getU32Decoder()],
['nonceAuthority', getAddressDecoder()],
]);
}
export function getInitializeNonceAccountInstructionDataCodec(): FixedSizeCodec<
InitializeNonceAccountInstructionDataArgs,
InitializeNonceAccountInstructionData
> {
return combineCodec(
getInitializeNonceAccountInstructionDataEncoder(),
getInitializeNonceAccountInstructionDataDecoder(),
);
}
export type InitializeNonceAccountInput<
TAccountNonceAccount extends string = string,
TAccountRecentBlockhashesSysvar extends string = string,
TAccountRentSysvar extends string = string,
> = {
nonceAccount: Address<TAccountNonceAccount>;
recentBlockhashesSysvar?: Address<TAccountRecentBlockhashesSysvar>;
rentSysvar?: Address<TAccountRentSysvar>;
nonceAuthority: InitializeNonceAccountInstructionDataArgs['nonceAuthority'];
};
export function getInitializeNonceAccountInstruction<
TAccountNonceAccount extends string,
TAccountRecentBlockhashesSysvar extends string,
TAccountRentSysvar extends string,
TProgramAddress extends Address = typeof SYSTEM_PROGRAM_ADDRESS,
>(
input: InitializeNonceAccountInput<TAccountNonceAccount, TAccountRecentBlockhashesSysvar, TAccountRentSysvar>,
config?: { programAddress?: TProgramAddress },
): InitializeNonceAccountInstruction<
TProgramAddress,
TAccountNonceAccount,
TAccountRecentBlockhashesSysvar,
TAccountRentSysvar
> {
// Program address.
const programAddress = config?.programAddress ?? SYSTEM_PROGRAM_ADDRESS;
// Original accounts.
const originalAccounts = {
nonceAccount: { value: input.nonceAccount ?? null, isWritable: true },
recentBlockhashesSysvar: { value: input.recentBlockhashesSysvar ?? null, isWritable: false },
rentSysvar: { value: input.rentSysvar ?? 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.recentBlockhashesSysvar),
getAccountMeta(accounts.rentSysvar),
],
data: getInitializeNonceAccountInstructionDataEncoder().encode(
args as InitializeNonceAccountInstructionDataArgs,
),
programAddress,
} as InitializeNonceAccountInstruction<
TProgramAddress,
TAccountNonceAccount,
TAccountRecentBlockhashesSysvar,
TAccountRentSysvar
>);
}
export type ParsedInitializeNonceAccountInstruction<
TProgram extends string = typeof SYSTEM_PROGRAM_ADDRESS,
TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
> = {
programAddress: Address<TProgram>;
accounts: {
nonceAccount: TAccountMetas[0];
recentBlockhashesSysvar: TAccountMetas[1];
rentSysvar: TAccountMetas[2];
};
data: InitializeNonceAccountInstructionData;
};
export function parseInitializeNonceAccountInstruction<
TProgram extends string,
TAccountMetas extends readonly AccountMeta[],
>(
instruction: Instruction<TProgram> &
InstructionWithAccounts<TAccountMetas> &
InstructionWithData<ReadonlyUint8Array>,
): ParsedInitializeNonceAccountInstruction<TProgram, TAccountMetas> {
if (instruction.accounts.length < 3) {
// 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(),
recentBlockhashesSysvar: getNextAccount(),
rentSysvar: getNextAccount(),
},
data: getInitializeNonceAccountInstructionDataDecoder().decode(instruction.data),
};
}