πplaceBid
Last updated
npm install @nest25/evm-chains-lib
OR
yarn add @nest25/evm-chains-lib
const {NftMarketPlace} = require('@nest25/evm-chains-lib')
// create instance of SOULBOUND
const nftMarketPlace = new NftMarketPlace();
const privateKey = "your private key here"
const main = async () => {
// place bid
const bidder = await nftMarketPlace.placeBid(
'klay',
privateKey,
1,
10,
);
// print result
console.log(bidder);
}
main()