UNPKG
@cryptovoxels/marketplace-js
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
0.1.0-beta.0
A simple JS sdk to interact with Voxels' marketplace
github.com/cryptovoxels/Voxels-Marketplace-js
@cryptovoxels/marketplace-js
/
dist
/
lib
/
helpers.d.ts
5 lines
(4 loc)
•
278 B
TypeScript
View Raw
1
2
3
4
5
import
{ ethers }
from
"ethers"
;
import
{ address }
from
"./types"
;
export
declare
const
generateListingId
:
(
sellerAddress
: address,
contractAddress
: address,
tokenId
:
string
) =>
string
;
export
declare
const
getAddressFromSigner
:
(
signer
: ethers.
Signer
) =>
Promise
<
string
>;