@perk.money/perk-swap-core
Version:
This npm package contains core logic of Perk Aggregator build on top of NEAR blockchain
11 lines (10 loc) • 355 B
TypeScript
import { Transaction } from '@near-wallet-selector/core';
import JSBI from 'jsbi';
interface TransferTokensParams {
tokenId: string;
accountFrom: string;
accountTo: string;
amount: JSBI;
}
declare const transferToken: ({ tokenId, accountFrom, accountTo, amount, }: TransferTokensParams) => Transaction;
export { transferToken };