This SDK is a collection of tools used to interact with the LooksRare API and smart contracts.
This package has a peer dependency on etherjs.
Install with
yarn add @looksrare/sdk ethers
or
npm install @looksrare/sdk ethers --save
Typescript types are exported from the package and can be used in your application.
The SDK exposes most of the LooksRare contract ABIs. For convenience, some commonly used ABIs are also exported. If you need other ABIs, you can open an issue.
import {
AggregatorFeeSharingWithUniswapV3Abi,
ERC20Abi,
ERC721Abi,
ERC1155Abi,
FeeSharingSystemAbi,
IExecutionStrategyAbi,
LooksRareAirdropAbi,
LooksRareExchangeAbi,
MultiRewardsDistributorAbi,
PrivateSaleWithFeeSharingAbi,
ReverseRecordsAbi,
RoyaltyFeeManagerAbi,
RoyaltyFeeRegistryAbi,
RoyaltyFeeSetterAbi,
StakingPoolForUniswapV2TokensAbi,
TokenDistributorAbi,
TradingRewardsDistributorAbi,
WETHAbi,
TransferSelectorNFTAbi,
} from "@looksrare/sdk";
An object containing all the contract addresses for each supported chain. Refer to the Constant type to see the complete list of addresses.
import { addressesByNetwork, SupportedChainId } from "@looksrare/sdk";
const addresses = addressesByNetwork[SupportedChainId.MAINNET];
An object containing data related to supported chains. Refer to the Constant type to see the complete list of addresses.
import { CHAIN_INFO, SupportedChainId } from "@looksrare/sdk";
const currentChainInfo = CHAIN_INFO[SupportedChainId.MAINNET];
Helpers used to build the signed typed data.
import { BigNumber } from "ethers";
import { MakerOrder, signMakerOrder, SupportedChainId } from "@looksrare/sdk";
// This is used to support different strategies. default value is just and empty array
// Types and values need to match, e.g { types: ["address"], values: [privateBuyer] } for a private sale
const paramsTypes = [];
const paramsValue = [];
const makerOrder: MakerOrder = {
// true --> ask / false --> bid
isOrderAsk,
// signer address of the maker order
signer,
// collection address
collection,
// Price in WEI
price,
// Token ID
tokenId,
// amount of tokens to sell/purchase (must be 1 for ERC721, 1+ for ERC1155)
amount,
// strategy for trade execution (e.g., DutchAuction, StandardSaleForFixedPrice), see addresses in the SDK
strategy,
// currency address
currency,
// order nonce (must be unique unless new maker order is meant to override existing one e.g., lower ask price)
nonce,
// startTime timestamp in seconds
startTime,
// endTime timestamp in seconds
endTime,
// minimum ratio to be received by the user (per 10000)
minPercentageToAsk: BigNumber.from(10000).sub(protocolFees.add(creatorFees)).toNumber(),
// params (e.g., price, target account for private sale)
params: paramsValue,
};
const signatureHash = await signMakerOrder(signer, SupportedChainId.MAINNET, makerOrder, paramsTypes);
Install dependencies with yarn
- Dev:
yarn dev
- Build:
yarn build
- Create a Personal access token (Don't change the default scope)
- Create an
.env
(copy.env.template
) and set you github personal access token. yarn release
will run all the checks, build, and publish the package, and publish the github release note.