Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@quicknode/sdk

Package Overview
Dependencies
Maintainers
4
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@quicknode/sdk - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

src/queries/nft/getCollectionDetails/getCollectionDetails.d.ts

2

package.json

@@ -9,3 +9,3 @@ {

"license": "MIT",
"version": "0.1.0",
"version": "0.2.0",
"main": "./src/index.js",

@@ -12,0 +12,0 @@ "module": "./src/index.esm.js",

@@ -114,2 +114,20 @@ ![npm](https://img.shields.io/npm/dm/@quicknode/sdk)

### nft.getCollectionDetails
| Argument | Values | Optional | Description | Example |
| -------- | ------ | -------- | ----------------------- | ------------------------------------------ |
| address | string | ❌ | Contract address of NFT | 0x2106C00Ac7dA0A3430aE667879139E832307AeAa |
```ts
import { QuickNodeSDK } from '@quicknode/sdk';
const client = new QuickNodeSDK();
client.nft
.getCollectionDetails({
address: '0x2106C00Ac7dA0A3430aE667879139E832307AeAa',
})
.then((response) => console.log(response));
```
## Pagination

@@ -116,0 +134,0 @@

@@ -6,3 +6,4 @@ import { ApolloQueryResult } from '@apollo/client';

import { ContractAddressNFTsQueryVariables } from './getNFTsByContractAddress/getNFTsByContractAddress';
import { ContractNFTsQueryResponse, WalletNFTsQueryResponse } from './sharedTypes';
import { CollectionDetailsQueryVariables } from './getCollectionDetails/getCollectionDetails';
import { ContractNFTsQueryResponse, WalletNFTsQueryResponse, CollectionDetailsQueryResponse } from './sharedTypes';
export declare class NFTQueries {

@@ -14,2 +15,3 @@ private client;

getNFTsByContractAddress(variables: ContractAddressNFTsQueryVariables): Promise<ApolloQueryResult<ContractNFTsQueryResponse>>;
getCollectionDetails(variables: CollectionDetailsQueryVariables): Promise<ApolloQueryResult<CollectionDetailsQueryResponse>>;
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc