UNPKG
@perk.money/perk-swap-core
Version:
latest (0.2.85)
0.2.85
0.2.79
0.2.59
0.2.42
0.2.41
0.2.40
0.2.39
This npm package contains core logic of Perk Aggregator build on top of NEAR blockchain
@perk.money/perk-swap-core
/
dist
/
utils
/
wrapNear
/
actions
/
nearWithdraw.d.ts
5 lines
(4 loc)
•
287 B
TypeScript
View Raw
1
2
3
4
5
import
{
Action
,
Transaction
}
from
'@near-wallet-selector/core'
;
import
JSBI
from
'jsbi'
;
export
declare
const
builWithdrawNearActions
:
(
amount
: JSBI
) =>
Promise
<
Action
[]>;
export
declare
const
buildWithdrawNearTransaction
:
(
signerId
:
string
,
amount
: JSBI
) =>
Promise
<
Transaction
>;