Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 890 Bytes

README.md

File metadata and controls

49 lines (37 loc) · 890 Bytes
home heroText tagline actions footer
true
NFTScan API SDK
Quick access to Web3 via NFTScan
text link type
Github
git@github.com:nftscan2022/nftscan-api-js-sdk.git
secondary
MIT Licensed | Copyright ©nftscan2022

NFTScan API provides convenience and quick access to full NFT data with developers

QUICK START

yarn add nftscan-api
npm install nftscan-api
import { ErcType, EvmChain, NftscanEvm } from "nftscan-api";

const config = {
  apiKey: "<YOUR_API_KEY>", // Replace with your NFTScan API key.
  chain: EvmChain.ETH, // Replace with your chain.
};

const evm = new NftscanEvm(config);