mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 00:18:03 -05:00
Co-authored-by: vincent <419436363@qq.com> Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Co-authored-by: georgehao <haohongfan@gmail.com>
19 lines
373 B
Go
19 lines
373 B
Go
package model
|
|
|
|
import "bridge-history-api/service"
|
|
|
|
type Data struct {
|
|
Result []*service.TxHistoryInfo `json:"result"`
|
|
Total uint64 `json:"total"`
|
|
}
|
|
|
|
type QueryByAddressResponse struct {
|
|
Message string `json:"message"`
|
|
Data *Data `json:"data"`
|
|
}
|
|
|
|
type QueryByHashResponse struct {
|
|
Message string `json:"message"`
|
|
Data *Data `json:"data"`
|
|
}
|