diff --git a/pkg/morph/client/static.go b/pkg/morph/client/static.go index 64fde1c55..ccc805f74 100644 --- a/pkg/morph/client/static.go +++ b/pkg/morph/client/static.go @@ -30,6 +30,20 @@ type staticOpts struct { fees fees } +// WithNotary returns notary status of the client. +// +// See also TryNotary. +func (s *StaticClient) WithNotary() bool { + return s.tryNotary +} + +// IsAlpha returns Alphabet status of the client. +// +// See also AsAlphabet. +func (s *StaticClient) IsAlpha() bool { + return s.alpha +} + // StaticClientOption allows to set an optional // parameter of StaticClient. type StaticClientOption func(*staticOpts)