2021-03-31 14:02:02 +00:00
|
|
|
package reputation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Client is a wrapper over StaticClient
|
|
|
|
// which makes calls with the names and arguments
|
|
|
|
// of the NeoFS reputation contract.
|
|
|
|
//
|
|
|
|
// Working client must be created via constructor New.
|
|
|
|
// Using the Client that has been created with new(Client)
|
|
|
|
// expression (or just declaring a Client variable) is unsafe
|
|
|
|
// and can lead to panic.
|
|
|
|
type Client struct {
|
|
|
|
client *client.StaticClient // static reputation contract client
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2022-01-29 13:06:36 +00:00
|
|
|
putMethod = "put"
|
|
|
|
getMethod = "get"
|
|
|
|
getByIDMethod = "getByID"
|
|
|
|
listByEpochMethod = "listByEpoch"
|
2021-03-31 14:02:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// New creates, initializes and returns the Client instance.
|
2022-01-29 13:21:49 +00:00
|
|
|
func New(c *client.StaticClient) *Client {
|
|
|
|
return &Client{client: c}
|
2021-03-31 14:02:02 +00:00
|
|
|
}
|
|
|
|
|
2021-09-08 15:18:09 +00:00
|
|
|
// Morph returns raw morph client.
|
|
|
|
func (c Client) Morph() *client.Client {
|
|
|
|
return c.client.Morph()
|
|
|
|
}
|