gifchain-mainnet-1chain id 6464head #4,134,618gas 0.42 ngifblock 5.00sall systems operationalrpcexplorerdocs
GIFCHAIN

GIFCHAIN

the blockchain for NFTs  ·  objects, not just balances

Webhooks

Push delivery for teams that do not want to poll. Events are signed, retried with exponential backoff for 24 hours, and delivered at least once.

reference
eventpayloadfires when
object.mintedobject, tx, heighta mint is included in a block
object.transferredobject, from, toownership leaf changes
object.soldobject, price, royaltythe market module settles a fill
object.listedobject, price, escrowa listing enters escrow
object.burnedobject, txthe leaf is cleared
collection.deployedcollection, creatora new contract is deployed
block.finalizedheight, objectRoottwo blocks build on a height

Verify the signature before trusting a payload: HMAC the raw body with your endpoint secret and compare against v1. Reject anything older than five minutes.

example
POST /your-endpoint
x-gifchain-signature: t=1739812,v1=6f2c...9ab1

{
  "event": "object.sold",
  "height": 4128733,
  "data": {
    "object": "gifcats#128",
    "from": "0x7f3a...",
    "to": "0x1c08...",
    "price": "12.40",
    "royalty": "0.62"
  }
}