Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions developerDocs/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ Fetch detailed information about a single collection including fees, traits, and
const collection = await openseaSDK.api.getCollection("boredapeyachtclub");

console.log(collection.name);
console.log(collection.total_supply);
console.log(collection.totalSupply);
console.log(collection.fees);
```

Expand Down Expand Up @@ -888,7 +888,7 @@ const account = await openseaSDK.api.getAccount(

console.log(account.address);
console.log(account.username);
console.log(account.profile_image_url);
console.log(account.profileImageUrl);
```

**Parameters:**
Expand All @@ -913,7 +913,7 @@ const token = await openseaSDK.api.getPaymentToken(

console.log(token.symbol); // "WETH"
console.log(token.decimals); // 18
console.log(token.usd_price); // Current USD price
console.log(token.usdPrice); // Current USD price
```

**Parameters:**
Expand Down
Loading