title | category | slug | parentDocSlug | order | hidden |
---|---|---|---|---|---|
Quick Start Guide |
64cbb5277b5f3c0065d96616 |
opensea-sdk-quick-start |
opensea-sdk |
0 |
false |
Node.js version 16 is the minimum required for the SDK. If you have Node Version Manager (nvm), run nvm use 16
.
Then in your project, run:
npm install --save opensea-js
# or
yarn add opensea-js
To get started, first request an API key. Note the terms of use for using API data. API keys are not needed for testnets.
Then, create a new OpenSeaSDK client using your web3 provider:
import { ethers } from "ethers";
import { OpenSeaSDK, Chain } from "opensea-js";
// This example provider won't let you make transactions, only read-only calls:
const provider = new ethers.JsonRpcProvider("https://mainnet.infura.io");
const openseaSDK = new OpenSeaSDK(provider, {
chain: Chain.Mainnet,
apiKey: YOUR_API_KEY,
});
Using the example provider above won't let you authorize transactions, which are needed when approving and trading assets and currency. To make transactions, you need a provider with a private key or mnemonic set:
const walletWithProvider = new ethers.Wallet(PRIVATE_KEY, provider);
const openseaSDK = new OpenSeaSDK(walletWithProvider, {
chain: Chain.Mainnet,
apiKey: YOUR_API_KEY,
});
In a browser with web3 or an extension like MetaMask or Coinbase Wallet, you can use window.ethereum
to access the native provider.
For testnets, please use Chain.Sepolia
. Rinkeby was deprecated in 2022 and Goerli in 2023.