accounts.d.ts 472 B

123456789101112131415
  1. import { PublicKey } from "@solana/web3.js";
  2. export declare const DELEGATION_PROGRAM_ID =
  3. "DELeGGvXpWV2fqJUhqcF5ZSYMS4JTLjteaAMARRSaeSh";
  4. export declare function getDelegationAccounts(
  5. accountToDelegate: PublicKey,
  6. ownerProgram: PublicKey,
  7. ownedBuffer?: boolean
  8. ): {
  9. delegationPda: PublicKey;
  10. delegatedAccountSeedsPda: PublicKey;
  11. bufferPda: PublicKey;
  12. commitStateRecordPda: PublicKey;
  13. commitStatePda: PublicKey;
  14. };
  15. //# sourceMappingURL=accounts.d.ts.map