/** * Solana PublicKey.createWithSeed enforces a maximum seed length of 32 bytes. * We use a short prefix and a truncated UUID to stay within this limit. */ export declare const STAKE_SEED_PREFIX = "stake:"; /** * Returns a seed string suitable for getStakeAccountAddressWithSeed / createWithSeed. * Guaranteed to be <= 32 bytes (ASCII) so Solana's createWithSeed accepts it. */ export declare function createStakeAccountSeed(): string; //# sourceMappingURL=stakeAccountSeed.d.ts.map