getAssetsByAuthority RPC Method - Metaplex DAS
Please note that this RPC method requires the Metaplex Digital Asset Standard (DAS) API add-on enabled on your QuickNode endpoint.
Solana Kit includes the ability to customize RPC methods and transports, allowing you to seamlessly integrate QuickNode Marketplace add-ons into your applications. For more information on how to use QuickNode Marketplace add-ons with Solana Kit, check out these guides: How to Use QuickNode Add-ons using Solana Kit (Part 1) and How to Use QuickNode Add-ons using Solana Kit (Part 2)
Parameters
authorityAddress
string
REQUIRED
Loading...
options
object
Loading...
showFungible
boolean
Loading...
showCollectionMetadata
boolean
Loading...
sortBy
object
Loading...
sortBy
string
Loading...
sortDirection
string
Loading...
limit
integer
Loading...
cursor
string
Loading...
page
integer
Loading...
before
string
Loading...
after
string
Loading...
Returns
assetList
object
Loading...
total
integer
Loading...
limit
integer
Loading...
page
integer
Loading...
cursor
string
Loading...
items
array of objects
Loading...
asset
object
Loading...
interface
string
Loading...
id
string
Loading...
content
object
Loading...
$schema
string
Loading...
json_uri
string
Loading...
files
array of objects
Loading...
uri
string
Loading...
mime
string
Loading...
quality
object
Loading...
contexts
array of strings
Loading...
metadata
object
Loading...
name
string
Loading...
description
string
Loading...
symbol
string
Loading...
token_standard
string
Loading...
attributes
array of objects
Loading...
value
integer/string
Loading...
trait_type
string
Loading...
links
object
Loading...
external_url
string
Loading...
image
string
Loading...
authorities
array of objects
Loading...
address
string
Loading...
scopes
array of strings
Loading...
compression
object
Loading...
asset_hash
string
Loading...
compressed
boolean
Loading...
creator_hash
string
Loading...
data_hash
string
Loading...
eligible
boolean
Loading...
leaf_id
integer
Loading...
seq
integer
Loading...
tree
string
Loading...
grouping
array of objects
Loading...
group_key
string
Loading...
group_value
string
Loading...
royalty
string
Loading...
basis_points
number
Loading...
locked
boolean
Loading...
percent
integer
Loading...
primary_sale_happened
boolean
Loading...
royalty_model
string
Loading...
target
string
Loading...
creators
array of objects
Loading...
address
string
Loading...
share
integer
Loading...
verified
boolean
Loading...
ownership
object
Loading...
delegate
string
Loading...
delegated
boolean
Loading...
frozen
boolean
Loading...
owner
string
Loading...
ownership_model
string
Loading...
uses
object
Loading...
remaining
number
Loading...
total
integer
Loading...
use_method
string
Loading...
supply
object
Loading...
edition_nonce
integer
Loading...
print_current_supply
integer
Loading...
print_max_supply
integer
Loading...
mutable
boolean
Loading...
burnt
boolean
Loading...
mint_extensions
object
Loading...
Request
curl https://docs-demo.solana-mainnet.quiknode.pro/ \ -X POST \ -H "Content-Type: application/json" \ --data '{"jsonrpc": "2.0","id": 1,"method": "getAssetsByAuthority","params": {"authorityAddress": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "limit": 10}}'
require "uri" require "json" require "net/http" url = URI("https://docs-demo.solana-mainnet.quiknode.pro/") https = Net::HTTP.new(url.host, url.port) https.use_ssl = true request = Net::HTTP::Post.new(url) request["Content-Type"] = "application/json" request.body = JSON.dump({ "jsonrpc": "2.0", "id": 1, "method": "getAssetsByAuthority", "params": { "authorityAddress": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "limit": 10 } }) response = https.request(request) puts response.read_body
use reqwest::header; use reqwest::Client; use std::error::Error; #[tokio::main] async fn main() -> Result<(), Box<dyn Error>> { let mut headers = header::HeaderMap::new(); headers.insert("Content-Type", "application/json".parse().unwrap()); let client = Client::new(); let json_data = r#" { "jsonrpc": "2.0", "id": 1, "method": "getAssetsByAuthority", "params": { "authorityAddress": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "limit": 10 } }"#; let response = client .post("https://docs-demo.solana-mainnet.quiknode.pro/") .headers(headers) .body(json_data) .send() .await?; let body = response.text().await?; println!("{}", body); Ok(()) }
Response
{ "jsonrpc": "2.0", "result": { "total": 10, "limit": 10, "cursor": "JC7nJ24YTyQ6LNvqFuzmRDQs1V17LbLazFMxhzd3vzbd", "items": [ { "interface": "ProgrammableNFT", "id": "JEGrd3hGwAj9tLUjTERphJcRWBYeEvX3Gz4nBzSExib4", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/2832.json", "files": [ { "uri": "https://arweave.net/_m-tolfQWlY8wgHoEbHOszwYLAMfpk9xVnlx5tIeOwg", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": 2, "trait_type": "Attributes Count" }, { "value": "Dark", "trait_type": "Type" }, { "value": "None", "trait_type": "Clothes" }, { "value": "Silver Earring", "trait_type": "Ears" }, { "value": "None", "trait_type": "Mouth" }, { "value": "None", "trait_type": "Eyes" }, { "value": "Black Top Hat", "trait_type": "Hat" } ], "description": "SMB is a collection of 5000 randomly generated 24x24 pixels NFTs on the Solana Blockchain. Each SolanaMonkey is unique and comes with different type and attributes varying in rarity.", "name": "SMB #2832", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": { "external_url": "https://solanamonkey.business/", "image": "https://arweave.net/_m-tolfQWlY8wgHoEbHOszwYLAMfpk9xVnlx5tIeOwg" } }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "1BWutmTvYPwDtmw9abTkS4Ssr8no61spGAvW1X6NDix" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 253 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JEDBG6xZQ3inAiMuZiwcWaQq9NqfePBgLvnzfgAm8rXR", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/1423.json", "files": [], "metadata": { "name": "SMB #1423", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": {} }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "5ecNqE8ZRFudPKVHiRaDyMA6ijk6oeiqsVF2QjN67aKm" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 252 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JE4tpFYs3nnW3rNoAmaNNXGWGRc6UhzUDDKQ3z2Ea26K", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/727.json", "files": [ { "uri": "https://arweave.net/h8ziOVC4gAaV0yweVxzXxv9UM82l6DfMBkTlX3VSiwY", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": 4, "trait_type": "Attributes Count" }, { "value": "Brown", "trait_type": "Type" }, { "value": "Blue Shirt", "trait_type": "Clothes" }, { "value": "None", "trait_type": "Ears" }, { "value": "Pipe", "trait_type": "Mouth" }, { "value": "Vipers", "trait_type": "Eyes" }, { "value": "Black Fedora 1", "trait_type": "Hat" } ], "description": "SMB is a collection of 5000 randomly generated 24x24 pixels NFTs on the Solana Blockchain. Each SolanaMonkey is unique and comes with different type and attributes varying in rarity.", "name": "SMB #727", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": { "external_url": "https://solanamonkey.business/", "image": "https://arweave.net/h8ziOVC4gAaV0yweVxzXxv9UM82l6DfMBkTlX3VSiwY" } }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "71R8VaomX6LUdSAZotqTMqer4xZJGh9kLhzxqvogtizL" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 254 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JE1MBnzT3aZLw19Rp45xDpgwakz8UVbHB7HEYS5tkqj9", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/1264.json", "files": [], "metadata": { "name": "SMB #1264", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": {} }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "6viMVCkeD4AYh7YStANBgCrjbqctTbqQhKcVxh38UuNm" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JDb4VdDyqCuBjB65xUAMyU6faJStSUaLqzanyHXFcXDS", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/1330.json", "files": [ { "uri": "https://arweave.net/lzOToq-0TY79mEneRpxIvSDm6UAUoTTHGnWi6dmeC8Q", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": 3, "trait_type": "Attributes Count" }, { "value": "Red", "trait_type": "Type" }, { "value": "Poncho", "trait_type": "Clothes" }, { "value": "None", "trait_type": "Ears" }, { "value": "Cigarette", "trait_type": "Mouth" }, { "value": "None", "trait_type": "Eyes" }, { "value": "Protagonist Black Hat", "trait_type": "Hat" } ], "description": "SMB is a collection of 5000 randomly generated 24x24 pixels NFTs on the Solana Blockchain. Each SolanaMonkey is unique and comes with different type and attributes varying in rarity.", "name": "SMB #1330", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": { "image": "https://arweave.net/lzOToq-0TY79mEneRpxIvSDm6UAUoTTHGnWi6dmeC8Q", "external_url": "https://solanamonkey.business/" } }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "H7mtTUY1KNcAM9ZPUL9hYsB3z4z2g67QdtX3wdsASc4v" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 252 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JDYbxvXA9rKF36zfww55P9d4egRfFFqAgHS4QaeRbex4", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/383.json", "files": [ { "uri": "https://arweave.net/CDiy8QsB8Ngd8pZaE6XojhPTuqpPa2U4yBKJbYfGDWc", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": 2, "trait_type": "Attributes Count" }, { "value": "Orange", "trait_type": "Type" }, { "value": "Black Smoking", "trait_type": "Clothes" }, { "value": "None", "trait_type": "Ears" }, { "value": "None", "trait_type": "Mouth" }, { "value": "None", "trait_type": "Eyes" }, { "value": "Blue Backwards Cap", "trait_type": "Hat" } ], "description": "SMB is a collection of 5000 randomly generated 24x24 pixels NFTs on the Solana Blockchain. Each SolanaMonkey is unique and comes with different type and attributes varying in rarity.", "name": "SMB #383", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": { "image": "https://arweave.net/CDiy8QsB8Ngd8pZaE6XojhPTuqpPa2U4yBKJbYfGDWc", "external_url": "https://solanamonkey.business/" } }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "5ecNqE8ZRFudPKVHiRaDyMA6ijk6oeiqsVF2QjN67aKm" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JCvxok5fpmoPgFa2CBa4JaCL2GrrAN9h4pifr3E1EGHt", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/4130.json", "files": [ { "uri": "https://arweave.net/wxf3p4JJKnvELIclydr46r9fOLnDwak1YNaV2v_6YIc", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": 3, "trait_type": "Attributes Count" }, { "value": "Dark", "trait_type": "Type" }, { "value": "Red Shirt", "trait_type": "Clothes" }, { "value": "Silver Earring", "trait_type": "Ears" }, { "value": "None", "trait_type": "Mouth" }, { "value": "None", "trait_type": "Eyes" }, { "value": "Blue Punk Hair", "trait_type": "Hat" } ], "description": "SMB is a collection of 5000 randomly generated 24x24 pixels NFTs on the Solana Blockchain. Each SolanaMonkey is unique and comes with different type and attributes varying in rarity.", "name": "SMB #4130", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": { "image": "https://arweave.net/wxf3p4JJKnvELIclydr46r9fOLnDwak1YNaV2v_6YIc", "external_url": "https://solanamonkey.business/" } }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "HEccTFFbqsB9k9zbLQZnTmEP4f8Y8J9gxLqWrPvboBt6" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 254 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JCap6aT2dzomEx7bDsPJfxfNnikPnYZcfMUCRMY4K4oj", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/515.json", "files": [ { "uri": "https://arweave.net/9bv9K0XjKidtq0j2svVJupc79Xohy0EujQIlfQLErqQ", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": 2, "trait_type": "Attributes Count" }, { "value": "Brown", "trait_type": "Type" }, { "value": "Orange Shirt", "trait_type": "Clothes" }, { "value": "None", "trait_type": "Ears" }, { "value": "None", "trait_type": "Mouth" }, { "value": "Yellow Glasses", "trait_type": "Eyes" }, { "value": "None", "trait_type": "Hat" } ], "description": "SMB is a collection of 5000 randomly generated 24x24 pixels NFTs on the Solana Blockchain. Each SolanaMonkey is unique and comes with different type and attributes varying in rarity.", "name": "SMB #515", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": { "external_url": "https://solanamonkey.business/", "image": "https://arweave.net/9bv9K0XjKidtq0j2svVJupc79Xohy0EujQIlfQLErqQ" } }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "DB27Zn42xuKKuWGufe1yGwbwzA2qaPqKhgbQ2nRY8gYB" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JCMLJaxiBjnZ2eLtRGaWBJpgskzWAfyBzKBMD44CJQAv", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/3188.json", "files": [ { "uri": "https://arweave.net/hWEeYpPEyGZ0_co93szDLfp6s9GRFrNsoPjV7F-o7ac", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": 3, "trait_type": "Attributes Count" }, { "value": "Brown", "trait_type": "Type" }, { "value": "Beige Smoking", "trait_type": "Clothes" }, { "value": "Silver Earring", "trait_type": "Ears" }, { "value": "None", "trait_type": "Mouth" }, { "value": "None", "trait_type": "Eyes" }, { "value": "Blue Backwards Cap", "trait_type": "Hat" } ], "description": "SMB is a collection of 5000 randomly generated 24x24 pixels NFTs on the Solana Blockchain. Each SolanaMonkey is unique and comes with different type and attributes varying in rarity.", "name": "SMB #3188", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": { "external_url": "https://solanamonkey.business/", "image": "https://arweave.net/hWEeYpPEyGZ0_co93szDLfp6s9GRFrNsoPjV7F-o7ac" } }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "8ZnzJFzZGgfcxy2Dg6NKLVVuE1jR76Pb72aHgNjMJnd9" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 254 }, "mutable": false, "burnt": false }, { "interface": "ProgrammableNFT", "id": "JC7nJ24YTyQ6LNvqFuzmRDQs1V17LbLazFMxhzd3vzbd", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://arweave.net/w4RVczdWwyiWS8tXgDenLEL7iFDdu4bi2YVmGyQo_dE/1740.json", "files": [ { "uri": "https://arweave.net/yRQv9P8BaFkkJ19r0g-F3Fe7GvQ_w5xEVrmfanLbxKE", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": 3, "trait_type": "Attributes Count" }, { "value": "Red", "trait_type": "Type" }, { "value": "Orange Shirt", "trait_type": "Clothes" }, { "value": "None", "trait_type": "Ears" }, { "value": "Cigarette", "trait_type": "Mouth" }, { "value": "None", "trait_type": "Eyes" }, { "value": "White Fedora 1", "trait_type": "Hat" } ], "description": "SMB is a collection of 5000 randomly generated 24x24 pixels NFTs on the Solana Blockchain. Each SolanaMonkey is unique and comes with different type and attributes varying in rarity.", "name": "SMB #1740", "symbol": "SMB", "token_standard": "ProgrammableNonFungible" }, "links": { "image": "https://arweave.net/yRQv9P8BaFkkJ19r0g-F3Fe7GvQ_w5xEVrmfanLbxKE", "external_url": "https://solanamonkey.business/" } }, "authorities": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "SMBtHCCC6RYRutFEPb4gZqeBLUZbMNhRKaMKZZLHi7W" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0, "basis_points": 0, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2", "share": 0, "verified": true }, { "address": "HAryckvjyViFQEmhmMoCtqqBMJnpXEYViamyDhZUJfnG", "share": 100, "verified": false }, { "address": "9uBX3ASjxWvNBAD1xjbVaKA74mWGZys3RGSF7DdeDD3F", "share": 0, "verified": false } ], "ownership": { "frozen": true, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "5ecNqE8ZRFudPKVHiRaDyMA6ijk6oeiqsVF2QjN67aKm" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 253 }, "mutable": false, "burnt": false } ] }, "id": 1 }
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free