package response

import "time"

type ChainResp struct {
	Time         *time.Time `json:"time"`         // 上链时间
	BlockHeight  int64      `json:"block_height"` // 块高度
	BlockAddress string     `json:"block_adress"` // 所在区块
	Hash         string     `json:"hash"`         // 交易哈希
}