helloSolana.ts 244 B

123456789
  1. import { Pubkey, type Result } from '@solanaturbine/poseidon';
  2. export default class HelloSolana {
  3. static PROGRAM_ID = new Pubkey('84mLf5VZKf58tQ1VkUtsthxuR8fSeDLv8ZKemANC53oF');
  4. initialize(): Result {
  5. // Write your program here
  6. }
  7. }