forked from TrueCloudLab/frostfs-node
d6c0307431
There is a need to provide contract address getter from all contract client wrappers. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
77 lines
1.9 KiB
Go
77 lines
1.9 KiB
Go
package wrapper
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client/internal"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client/reputation"
|
|
)
|
|
|
|
// ClientWrapper is a wrapper over reputation contract
|
|
// client which implements storage of reputation values.
|
|
type ClientWrapper struct {
|
|
internal.StaticClient
|
|
|
|
client *reputation.Client
|
|
}
|
|
|
|
// Option allows to set an optional
|
|
// parameter of ClientWrapper.
|
|
type Option func(*opts)
|
|
|
|
type opts []client.StaticClientOption
|
|
|
|
func defaultOpts() *opts {
|
|
return new(opts)
|
|
}
|
|
|
|
// Morph returns raw morph client.
|
|
func (w ClientWrapper) Morph() *client.Client {
|
|
return w.client.Morph()
|
|
}
|
|
|
|
// TryNotary returns option to enable
|
|
// notary invocation tries.
|
|
func TryNotary() Option {
|
|
return func(o *opts) {
|
|
*o = append(*o, client.TryNotary())
|
|
}
|
|
}
|
|
|
|
// AsAlphabet returns option to sign main TX
|
|
// of notary requests with client's private
|
|
// key.
|
|
//
|
|
// Considered to be used by IR nodes only.
|
|
func AsAlphabet() Option {
|
|
return func(o *opts) {
|
|
*o = append(*o, client.AsAlphabet())
|
|
}
|
|
}
|
|
|
|
// NewFromMorph returns the wrapper instance from the raw morph client.
|
|
func NewFromMorph(cli *client.Client, contract util.Uint160, fee fixedn.Fixed8, opts ...Option) (*ClientWrapper, error) {
|
|
o := defaultOpts()
|
|
|
|
for i := range opts {
|
|
opts[i](o)
|
|
}
|
|
|
|
staticClient, err := client.NewStatic(cli, contract, fee, ([]client.StaticClientOption)(*o)...)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not create static client of reputation contract: %w", err)
|
|
}
|
|
|
|
enhancedRepurationClient, err := reputation.New(staticClient)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not create reputation contract client: %w", err)
|
|
}
|
|
|
|
return &ClientWrapper{
|
|
StaticClient: staticClient,
|
|
client: enhancedRepurationClient,
|
|
}, nil
|
|
}
|