UNPKG

goodrdotfun-sdk

Version:

SDK for interacting with goodr.fun and Sonic on Solana

15 lines (14 loc) 605 B
import { PublicKey } from '@solana/web3.js'; export declare enum MemeDonationDestinationName { FarmMeme = "Farm Meme", OGMeme = "OG Meme" } export type MemeDonationDestination = { id: number; name: MemeDonationDestinationName; donationAmount: number; address: PublicKey; }; export declare const MEME_DONATION_DESTINATIONS: Record<number, MemeDonationDestination>; export declare const getMemeDonationDestinationFromId: (id: number) => MemeDonationDestination; export declare const getMemeDonationDestinationFromName: (name: MemeDonationDestinationName) => MemeDonationDestination;