DHPC
  • 👋Welcome to DHPC
  • 🎆DHPC Network
  • Product Guides
    • ⭕How to run a node
    • ⛏️How to run miners
  • Fundamentals
    • 🪄Providing data
    • 🏛️Reputation and Score
  • Specs
    • 🧍Users
    • 💿Data
    • ❓Requests
  • Integration
    • EVM
      • Dapp Integration
  • API
    • 📗DHPC API Guide
    • 📑API Reference
    • Build Node from source code
    • Build Miner from source code
Powered by GitBook
On this page
  1. Specs

Requests

Represents a request for information, including details like:

  • date received

  • UUID

  • target L1 transaction hash

  • network

  • sender

  • address

  • score

Requests are routed through DApps to the DHPC network via the Oracle system.

syntax = "proto3";
package dhpc.request;

option go_package = "github.com/DhpcChain/Dhpc/x/request/types";
import "dhpc/request/miner_response.proto"; 

message RequestRecord {
  string uUID = 1; 
  string tXhash = 2; 
  string network = 3; 
  string from = 4; 
  string address = 5; 
  int32 score = 6; 
  string oracle = 7; 
  uint64 block = 8; 
  int32 stage = 9; 
  repeated MinerResponse miners = 10; 
  string creator = 11;
  int64 createdBlock = 12;
  int64 updatedBlock = 13;
}
PreviousDataNextEVM

Last updated 1 year ago

❓