-
Notifications
You must be signed in to change notification settings - Fork 634
/
config.go
62 lines (52 loc) · 1.41 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package ibctesting
import (
"time"
connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types"
channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"
"github.com/cosmos/ibc-go/v9/modules/core/exported"
ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint"
"github.com/cosmos/ibc-go/v9/testing/mock"
)
type ClientConfig interface {
GetClientType() string
}
type TendermintConfig struct {
TrustLevel ibctm.Fraction
TrustingPeriod time.Duration
UnbondingPeriod time.Duration
MaxClockDrift time.Duration
}
func NewTendermintConfig() *TendermintConfig {
return &TendermintConfig{
TrustLevel: DefaultTrustLevel,
TrustingPeriod: TrustingPeriod,
UnbondingPeriod: UnbondingPeriod,
MaxClockDrift: MaxClockDrift,
}
}
func (*TendermintConfig) GetClientType() string {
return exported.Tendermint
}
type ConnectionConfig struct {
DelayPeriod uint64
Version *connectiontypes.Version
}
func NewConnectionConfig() *ConnectionConfig {
return &ConnectionConfig{
DelayPeriod: DefaultDelayPeriod,
Version: ConnectionVersion,
}
}
type ChannelConfig struct {
PortID string
Version string
Order channeltypes.Order
ProposedUpgrade channeltypes.Upgrade
}
func NewChannelConfig() *ChannelConfig {
return &ChannelConfig{
PortID: mock.PortID,
Version: DefaultChannelVersion,
Order: channeltypes.UNORDERED,
}
}