2020-12-21 08:40:30 +00:00
|
|
|
package invoke
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
2020-12-22 11:33:39 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client/audit"
|
|
|
|
auditWrapper "github.com/nspcc-dev/neofs-node/pkg/morph/client/audit/wrapper"
|
2021-01-26 10:33:28 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client/balance"
|
|
|
|
balanceWrapper "github.com/nspcc-dev/neofs-node/pkg/morph/client/balance/wrapper"
|
2020-12-21 08:40:30 +00:00
|
|
|
morphContainer "github.com/nspcc-dev/neofs-node/pkg/morph/client/container"
|
|
|
|
wrapContainer "github.com/nspcc-dev/neofs-node/pkg/morph/client/container/wrapper"
|
|
|
|
morphNetmap "github.com/nspcc-dev/neofs-node/pkg/morph/client/netmap"
|
|
|
|
wrapNetmap "github.com/nspcc-dev/neofs-node/pkg/morph/client/netmap/wrapper"
|
2021-01-26 10:33:28 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-12-21 08:40:30 +00:00
|
|
|
)
|
|
|
|
|
2021-01-29 07:04:03 +00:00
|
|
|
// NewContainerClient creates wrapper to access data from container contract.
|
|
|
|
func NewContainerClient(cli *client.Client, contract util.Uint160) (*wrapContainer.Wrapper, error) {
|
|
|
|
staticClient, err := client.NewStatic(cli, contract, extraFee)
|
2020-12-21 08:40:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't create container static client: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
enhancedContainerClient, err := morphContainer.New(staticClient)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't create container morph client: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return wrapContainer.New(enhancedContainerClient)
|
|
|
|
}
|
|
|
|
|
2021-01-29 07:04:03 +00:00
|
|
|
// NewNetmapClient creates wrapper to access data from netmap contract.
|
|
|
|
func NewNetmapClient(cli *client.Client, contract util.Uint160) (*wrapNetmap.Wrapper, error) {
|
|
|
|
staticClient, err := client.NewStatic(cli, contract, extraFee)
|
2020-12-21 08:40:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't create netmap static client: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
enhancedNetmapClient, err := morphNetmap.New(staticClient)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't create netmap morph client: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return wrapNetmap.New(enhancedNetmapClient)
|
|
|
|
}
|
2020-12-22 11:33:39 +00:00
|
|
|
|
2021-01-29 07:04:03 +00:00
|
|
|
// NewAuditClient creates wrapper to work with Audit contract.
|
|
|
|
func NewAuditClient(cli *client.Client, contract util.Uint160) (*auditWrapper.ClientWrapper, error) {
|
|
|
|
staticClient, err := client.NewStatic(cli, contract, extraFee)
|
2020-12-22 11:33:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return auditWrapper.WrapClient(audit.New(staticClient)), nil
|
|
|
|
}
|
2021-01-26 10:33:28 +00:00
|
|
|
|
2021-01-28 17:17:25 +00:00
|
|
|
// NewBalanceClient creates wrapper to work with Balance contract.
|
|
|
|
func NewBalanceClient(cli *client.Client, contract util.Uint160) (*balanceWrapper.Wrapper, error) {
|
|
|
|
staticClient, err := client.NewStatic(cli, contract, extraFee)
|
2021-01-26 10:33:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "could not create static client of Balance contract")
|
|
|
|
}
|
|
|
|
|
|
|
|
enhancedBalanceClient, err := balance.New(staticClient)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "could not create Balance contract client")
|
|
|
|
}
|
|
|
|
|
|
|
|
return balanceWrapper.New(enhancedBalanceClient)
|
|
|
|
}
|