LooksRare SDK Collection Order
⚠️ These code snippets are just examples and the data should never be used as is ⚠️
How to create a collection offer (maker bid with collection strategy)
The code snippet below is an example of how to create a maker bid using the @looksrare/sdk-v2
library.
A collection order is just a maker bid order using the
StrategyType.collection
.
The main steps are:
- Initialize a LooksRare class instance by providing the chain id, RPC provider and a signer.
- Use the
createMakerCollectionOffer
method to create a maker bid with the parameters of your order. - Check and grant necessary approvals for transferring assets.
- Sign the maker bid order with
signMakerOrder
method.
The
orderNonce
has to be retrieved via our Public API, see get order nonce.
Here is an example:
import { parseEther } from "ethers";
import { LooksRare, ChainId, CollectionType, StrategyType } from "@looksrare/sdk-v2";
const lr = new LooksRare(ChainId.MAINNET, provider, signer);
const { maker, isCurrencyApproved, isBalanceSufficient } = await lr.createMakerCollectionOffer({
collection: "0x0000000000000000000000000000000000000000", // Collection address
collectionType: CollectionType.ERC721,
subsetNonce: 0, // keep 0 if you don't know what it is used for
orderNonce: 0, // You need to retrieve this value from the API
endTime: Math.floor(Date.now() / 1000) + 86400, // If you use a timestamp in ms, the function will revert
price: parseEther("1"), // Be careful to use a price in wei, this example is for 1 ETH
amounts: [1], // Use it for listing multiple ERC-1155 (Optional, Default to [1])
startTime: Math.floor(Date.now() / 1000), // Use it to create an order that will be valid in the future (Optional, Default to now)
});
// Approve spending of the currency used for bidding
if (!isCurrencyApproved) {
const tx = await lr.approveErc20(lr.addresses.WETH);
await tx.wait();
}
// Checks if the WETH balance is enough to cover the bid
if (!isBalanceSufficient) {
throw new Error(`WETH balance too low.`);
}
// Sign your maker order
const signature = await lr.signMakerOrder(maker);
Once, the maker bid for your collection offer has been created, the approvals sorted and the order signed, you will have to send it along with the signature to the
POST /api/v2/orders
endpoint. For more details and examples, see create order).
How to execute a collection offer
createTakerForCollectionOrder
is just a convenient wrapper around createTaker
.
import { LooksRare, ChainId } from "@looksrare/sdk-v2";
const lr = new LooksRare(ChainId.MAINNET, provider, signer);
// To be done only once the first a user is interacting with the V2.
// It will grant the Exchange contract with the right to use your collections approvals done on the transfer manager.
await lr.grantTransferManagerApproval().call();
await setApprovalForAll(signer, maker.collection, lr.addresses.TRANSFER_MANAGER_V2);
const taker = lr.createTakerForCollectionOrder(maker, TOKEN_ID); // Change the token id
const { call } = lr.executeOrder(maker, taker, signature);
const tx = await call();
const receipt = await tx.wait();
Need help?
You can reach out to the LooksRare team via our Developers Discord: https://discord.gg/LooksRareDevelopers