@wuwei-labs/srsly
Version:
TypeScript SDK for SRSLY
99 lines • 4.27 kB
JavaScript
/**
* 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, fixDecoderSize, fixEncoderSize, getBytesDecoder, getBytesEncoder, getProgramDerivedAddress, getStructDecoder, getStructEncoder, transformEncoder, } from '@solana/kit';
import { SRSLY_PROGRAM_ADDRESS } from '../programs';
import { getAccountMetaFactory } from '../shared';
export const DELETE_RENTAL_DISCRIMINATOR = new Uint8Array([252, 24, 115, 220, 135, 174, 69, 172]);
export function getDeleteRentalDiscriminatorBytes() {
return fixEncoderSize(getBytesEncoder(), 8).encode(DELETE_RENTAL_DISCRIMINATOR);
}
export function getDeleteRentalInstructionDataEncoder() {
return transformEncoder(getStructEncoder([['discriminator', fixEncoderSize(getBytesEncoder(), 8)]]), value => ({ ...value, discriminator: DELETE_RENTAL_DISCRIMINATOR }));
}
export function getDeleteRentalInstructionDataDecoder() {
return getStructDecoder([['discriminator', fixDecoderSize(getBytesDecoder(), 8)]]);
}
export function getDeleteRentalInstructionDataCodec() {
return combineCodec(getDeleteRentalInstructionDataEncoder(), getDeleteRentalInstructionDataDecoder());
}
export async function getDeleteRentalInstructionAsync(input, config) {
// Program address.
const programAddress = config?.programAddress ?? SRSLY_PROGRAM_ADDRESS;
// Original accounts.
const originalAccounts = {
admin: { value: input.admin ?? null, isWritable: true },
config: { value: input.config ?? null, isWritable: false },
borrower: { value: input.borrower ?? null, isWritable: true },
rentalState: { value: input.rentalState ?? null, isWritable: true },
};
const accounts = originalAccounts;
// Resolve default values.
if (!accounts.config.value) {
accounts.config.value = await getProgramDerivedAddress({
programAddress,
seeds: [getBytesEncoder().encode(new Uint8Array([99, 111, 110, 102, 105, 103]))],
});
}
const getAccountMeta = getAccountMetaFactory(programAddress, 'programId');
return Object.freeze({
accounts: [
getAccountMeta(accounts.admin),
getAccountMeta(accounts.config),
getAccountMeta(accounts.borrower),
getAccountMeta(accounts.rentalState),
],
data: getDeleteRentalInstructionDataEncoder().encode({}),
programAddress,
});
}
export function getDeleteRentalInstruction(input, config) {
// Program address.
const programAddress = config?.programAddress ?? SRSLY_PROGRAM_ADDRESS;
// Original accounts.
const originalAccounts = {
admin: { value: input.admin ?? null, isWritable: true },
config: { value: input.config ?? null, isWritable: false },
borrower: { value: input.borrower ?? null, isWritable: true },
rentalState: { value: input.rentalState ?? null, isWritable: true },
};
const accounts = originalAccounts;
const getAccountMeta = getAccountMetaFactory(programAddress, 'programId');
return Object.freeze({
accounts: [
getAccountMeta(accounts.admin),
getAccountMeta(accounts.config),
getAccountMeta(accounts.borrower),
getAccountMeta(accounts.rentalState),
],
data: getDeleteRentalInstructionDataEncoder().encode({}),
programAddress,
});
}
export function parseDeleteRentalInstruction(instruction) {
if (instruction.accounts.length < 4) {
// TODO: Coded error.
throw new Error('Not enough accounts');
}
let accountIndex = 0;
const getNextAccount = () => {
const accountMeta = instruction.accounts[accountIndex];
accountIndex += 1;
return accountMeta;
};
return {
programAddress: instruction.programAddress,
accounts: {
admin: getNextAccount(),
config: getNextAccount(),
borrower: getNextAccount(),
rentalState: getNextAccount(),
},
data: getDeleteRentalInstructionDataDecoder().decode(instruction.data),
};
}
//# sourceMappingURL=deleteRental.js.map