index.ts 424 B

1234567891011121314151617181920
  1. import { PublicKey } from '@solana/web3.js';
  2. export * from './accounts';
  3. export * from './instructions';
  4. export * from './types';
  5. /**
  6. * Program address
  7. *
  8. * @category constants
  9. * @category generated
  10. */
  11. export const PROGRAM_ADDRESS = '8avNGHVXDwsELJaWMSoUZ44CirQd4zyU9Ez4ZmP4jNjZ';
  12. /**
  13. * Program public key
  14. *
  15. * @category constants
  16. * @category generated
  17. */
  18. export const PROGRAM_ID = new PublicKey(PROGRAM_ADDRESS);