mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-22 12:28:13 -05:00
Co-authored-by: vincent <419436363@qq.com> Co-authored-by: colinlyguo <colinlyguo@scroll.io> Co-authored-by: HAOYUatHZ <haoyu@protonmail.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 int `json:"total"`
|
|
}
|
|
|
|
type QueryByAddressResponse struct {
|
|
Message string `json:"message"`
|
|
Data *Data `json:"data"`
|
|
}
|
|
|
|
type QueryByHashResponse struct {
|
|
Message string `json:"message"`
|
|
Data *Data `json:"data"`
|
|
}
|