mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-10 06:28:04 -05:00
Co-authored-by: vincent <419436363@qq.com> Co-authored-by: colinlyguo <colinlyguo@scroll.io> Co-authored-by: HAOYUatHZ <haoyu@protonmail.com>
12 lines
208 B
Go
12 lines
208 B
Go
package model
|
|
|
|
type QueryByAddressRequest struct {
|
|
Address string `url:"address"`
|
|
Offset int `url:"offset"`
|
|
Limit int `url:"limit"`
|
|
}
|
|
|
|
type QueryByHashRequest struct {
|
|
Txs []string `url:"txs"`
|
|
}
|