import { Gateway, findPDA } from "@cronos-so/utils"; import { Cronos } from "../idl"; const SEED_TREASURY = Buffer.from("treasury"); export class TreasuryGateway extends Gateway { public async pda() { return await findPDA([SEED_TREASURY], this.program.programId); } }