@perk.money/perk-swap-core
Version:
This npm package contains core logic of Perk Aggregator build on top of NEAR blockchain
12 lines (11 loc) • 376 B
TypeScript
import { Provider, AccountStorageBalance } from '../types';
declare const loadAccountStorageBalance: ({ provider, tokenId, tokenOwnerId, }: {
provider: Provider;
tokenId: string;
tokenOwnerId: string;
}) => Promise<{
tokenId: string;
existing: boolean;
storageBalance: AccountStorageBalance | null;
}>;
export { loadAccountStorageBalance };