mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-04-23 03:00:50 -04:00
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"`
|
|
}
|