We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa040e7 commit d8e6ba8Copy full SHA for d8e6ba8
networks/networks.go
@@ -2,6 +2,7 @@ package networks
2
3
import (
4
"strconv"
5
+ "time"
6
7
"github.com/0xsequence/ethkit/ethproviders"
8
)
@@ -30,6 +31,9 @@ type Network struct {
30
31
InternalIndexerURL string `toml:"internal_indexer_url" json:"-"`
32
InternalRelayerURL string `toml:"internal_relayer_url" json:"-"`
33
34
+ BlockInterval time.Duration `toml:"block_interval" json:"blockInterval,omitempty"`
35
+ BlockRetention int `toml:"block_retention" json:"blockRetention,omitempty"`
36
+
37
NativeToken *Currency `toml:"native_token" json:"nativeToken,omitempty"`
38
Currencies []*Currency `toml:"currencies" json:"currencies,omitempty"`
39
}
0 commit comments