improved

Royalty recipients added to NFT response

  • The royalty object now includes a list of recipients, along with their basis_points and their share of all creator royalties (percentage).
"royalty": [
  {
    "source": "opensea",
    "total_creator_fee_basis_points": 500,
    "recipients": [
      {
        "address": "0x1C3d22F1B7Bf77B9a3B852fB0cBeAc778c5bAE18",
        "percentage": 100.0,
        "basis_points": 500
      }
    ]
  }
]
  • In the example above, 500 basis points (0.5% of sale price) will be paid to address 0x1C3d22F1B7Bf77B9a3B852fB0cBeAc778c5bAE18 and this address gets 100% of the royalties.