UNPKG
@ln-markets/sdk
Version:
latest (2.1.0)
next (1.0.0-beta.2)
2.1.0
2.0.2
2.0.1
2.0.0
1.2.5
1.2.4
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
1.0.0-beta.2
0.0.10
0.0.8
TypeScript SDK for LNMarkets API v2
github.com/ln-markets/sdk-ts
ln-markets/sdk-ts
@ln-markets/sdk
/
dist
/
routes
/
swaps
/
new-swap.d.ts
8 lines
(7 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
RestFetcher
}
from
'../../rest.js'
;
import
type
{
Swap
,
SwapAsset
}
from
'./types.js'
;
export
declare
const
createNewSwap
:
(
request
:
RestFetcher
) =>
(
body
: { inAmount:
number
; inAsset: SwapAsset; outAsset: SwapAsset; }
) =>
Promise
<
Swap
>;