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
8 changes: 6 additions & 2 deletions apps/playground-web/src/app/insight/insightBlueprints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
path: "/v1/tokens/transfers/{contract_address}",
},
{
name: "Get token transfers by wallet address",
name: "Get token transfers",
path: "/v1/tokens/transfers",
},
{
Expand Down Expand Up @@ -94,6 +94,10 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
id: "nfts",
name: "Nfts",
paths: [
{
name: "Get NFT balances by address",
path: "/v1/nfts/balance/{ownerAddress}",
},
{
name: "Get collection",
path: "/v1/nfts/collections/{contract_address}",
Expand All @@ -111,7 +115,7 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
path: "/v1/nfts/owners/{contract_address}/{token_id}",
},
{
name: "Get NFT transfers by owner",
name: "Get NFT transfers",
path: "/v1/nfts/transfers",
},
{
Expand Down
Loading