Messages
near
social
Set

near.social.set

An account has committed data to social DB.

Schema

FieldRequiredData typeExplanationExample
__typeYesstringAlways "near.social.set"."near.social.set"
blockchainYesstringThe blockchain this transaction was executed on. This field will have one of the values in the ID column where the Ecosystem column's value is Near."near"
txHashYesstringThe transaction's hash."2AhNGN5fnuGfP1K1xcgqAz2dKAE9Xns9RWY7HKsFbBka"
isSuccessfulYesbooleanWhether the transaction succeeded or failed.true
senderIdYesstringNear address of the sendersamvelraja.near
receiverIdYesstringAlways "social.near"."social.near"
dataYesstringdata.{ 'samvelraja.near': { graph: [Object], index: [Object] } }

Example

{
  "blockchain": "near",
  "txHash": "2AhNGN5fnuGfP1K1xcgqAz2dKAE9Xns9RWY7HKsFbBka",
  "isSuccessful": true,
  "__type": "near.social.set",
  "senderId": "samvelraja.near",
  "receiverId": "social.near",
  "data": {
    "samvelraja.near": {
      "graph": [
        null
      ],
      "index": [
        null
      ]
    }
  }
}