Rarible · Schema

RewardByBlockchainEntity

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
blockchain object
View JSON Schema on GitHub

JSON Schema

RewardByBlockchainEntity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RewardByBlockchainEntity",
  "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
    },
    "blockchain": {
      "$ref": "#/components/schemas/Blockchain"
    }
  },
  "required": [
    "rewardWallet",
    "points",
    "blockchain"
  ]
}