You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
308 B
10 lines
308 B
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"` // 交易哈希
|
|
}
|
|
|