import { Idl, StateCoder } from "@coral-xyz/anchor"; export class SplNameServiceStateCoder implements StateCoder { constructor(_idl: Idl) {} encode(_name: string, _account: T): Promise { throw new Error("SplNameService does not have state"); } decode(_ix: Buffer): T { throw new Error("SplNameService does not have state"); } }