Rarible · Schema

RewardEntity

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
rewardWallet object Wallet address with blockchain prefix
points object Points accumulated by the wallet
rank integer Rank position of the wallet
View JSON Schema on GitHub

JSON Schema

RewardEntity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RewardEntity",
  "type": "object",
  "properties": {
    "rewardWallet": {
      "$ref": "#/components/schemas/UnionAddress",
      "description": "Wallet address with blockchain prefix",
      "example": "ETHEREUM:0x1234567890123456789012345678901234567890"
    },
    "points": {
      "description": "Points accumulated by the wallet",
      "$ref": "#/components/schemas/BigDecimal"
    },
    "rank": {
      "type": "integer",
      "format": "int64",
      "description": "Rank position of the wallet",
      "example": 1
    }
  },
  "required": [
    "rewardWallet",
    "points"
  ]
}