index.ts 312 B

1234567891011
  1. export * from './create';
  2. export * from './close';
  3. import * as borsh from '@coral-xyz/borsh';
  4. export enum MyInstruction {
  5. CreateUser = 0,
  6. CloseUser = 1,
  7. }
  8. export const closeAccountSchema = borsh.rustEnum([borsh.struct([borsh.array(borsh.u8(), 64, 'name')], 'CreateUser'), borsh.struct([], 'CloseUser')]);