@perk.money/perk-swap-core
Version:
This npm package contains core logic of Perk Aggregator build on top of NEAR blockchain
6 lines (5 loc) • 343 B
TypeScript
import { Action, Transaction } from '@near-wallet-selector/core';
import JSBI from 'jsbi';
import { Account } from 'near-api-js';
export declare const builDepositNearActions: (account: Account, amount: JSBI) => Promise<Action[]>;
export declare const buildDepositNearTransaction: (account: Account, amount: JSBI) => Promise<Transaction>;