2021-03-16 19:55:17 +00:00
|
|
|
package client
|
|
|
|
|
2021-03-22 09:13:08 +00:00
|
|
|
// Various non-policy things from native contracts.
|
2021-03-16 19:55:17 +00:00
|
|
|
|
|
|
|
import (
|
2021-03-24 10:12:33 +00:00
|
|
|
"errors"
|
2021-03-16 19:55:17 +00:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native/nativenames"
|
2021-03-24 10:12:33 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native/nnsrecords"
|
2021-03-22 17:34:27 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native/noderoles"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
2021-05-14 16:38:04 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2021-03-16 19:55:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetOraclePrice invokes `getPrice` method on a native Oracle contract.
|
|
|
|
func (c *Client) GetOraclePrice() (int64, error) {
|
|
|
|
oracleHash, err := c.GetNativeContractHash(nativenames.Notary)
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("failed to get native Oracle hash: %w", err)
|
|
|
|
}
|
|
|
|
return c.invokeNativeGetMethod(oracleHash, "getPrice")
|
|
|
|
}
|
2021-03-16 19:59:04 +00:00
|
|
|
|
2021-05-14 16:38:04 +00:00
|
|
|
// GetNNSPrice invokes `getPrice` method on a NeoNameService contract with the specified hash.
|
|
|
|
func (c *Client) GetNNSPrice(nnsHash util.Uint160) (int64, error) {
|
2021-03-16 19:59:04 +00:00
|
|
|
return c.invokeNativeGetMethod(nnsHash, "getPrice")
|
|
|
|
}
|
2021-03-16 20:03:51 +00:00
|
|
|
|
|
|
|
// GetGasPerBlock invokes `getGasPerBlock` method on a native NEO contract.
|
|
|
|
func (c *Client) GetGasPerBlock() (int64, error) {
|
|
|
|
neoHash, err := c.GetNativeContractHash(nativenames.Neo)
|
|
|
|
if err != nil {
|
|
|
|
return 0, fmt.Errorf("failed to get native NEO hash: %w", err)
|
|
|
|
}
|
|
|
|
return c.invokeNativeGetMethod(neoHash, "getGasPerBlock")
|
|
|
|
}
|
2021-03-22 17:34:27 +00:00
|
|
|
|
|
|
|
// GetDesignatedByRole invokes `getDesignatedByRole` method on a native RoleManagement contract.
|
|
|
|
func (c *Client) GetDesignatedByRole(role noderoles.Role, index uint32) (keys.PublicKeys, error) {
|
|
|
|
rmHash, err := c.GetNativeContractHash(nativenames.Designation)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to get native RoleManagement hash: %w", err)
|
|
|
|
}
|
|
|
|
result, err := c.InvokeFunction(rmHash, "getDesignatedByRole", []smartcontract.Parameter{
|
|
|
|
{
|
|
|
|
Type: smartcontract.IntegerType,
|
|
|
|
Value: int64(role),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: smartcontract.IntegerType,
|
|
|
|
Value: int64(index),
|
|
|
|
},
|
|
|
|
}, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = getInvocationError(result)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("`getDesignatedByRole`: %w", err)
|
|
|
|
}
|
|
|
|
return topPublicKeysFromStack(result.Stack)
|
|
|
|
}
|
2021-03-24 10:12:33 +00:00
|
|
|
|
2021-05-14 16:38:04 +00:00
|
|
|
// NNSResolve invokes `resolve` method on a NameService contract with the specified hash.
|
|
|
|
func (c *Client) NNSResolve(nnsHash util.Uint160, name string, typ nnsrecords.Type) (string, error) {
|
2021-03-24 10:12:33 +00:00
|
|
|
if typ == nnsrecords.CNAME {
|
|
|
|
return "", errors.New("can't resolve CNAME record type")
|
|
|
|
}
|
2021-05-14 16:38:04 +00:00
|
|
|
result, err := c.InvokeFunction(nnsHash, "resolve", []smartcontract.Parameter{
|
2021-03-24 10:12:33 +00:00
|
|
|
{
|
|
|
|
Type: smartcontract.StringType,
|
|
|
|
Value: name,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: smartcontract.IntegerType,
|
|
|
|
Value: int64(typ),
|
|
|
|
},
|
|
|
|
}, nil)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
err = getInvocationError(result)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("`resolve`: %w", err)
|
|
|
|
}
|
|
|
|
return topStringFromStack(result.Stack)
|
|
|
|
}
|
|
|
|
|
2021-05-14 16:38:04 +00:00
|
|
|
// NNSIsAvailable invokes `isAvailable` method on a NeoNameService contract with the specified hash.
|
|
|
|
func (c *Client) NNSIsAvailable(nnsHash util.Uint160, name string) (bool, error) {
|
|
|
|
result, err := c.InvokeFunction(nnsHash, "isAvailable", []smartcontract.Parameter{
|
2021-03-24 10:12:33 +00:00
|
|
|
{
|
|
|
|
Type: smartcontract.StringType,
|
|
|
|
Value: name,
|
|
|
|
},
|
|
|
|
}, nil)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
err = getInvocationError(result)
|
|
|
|
if err != nil {
|
|
|
|
return false, fmt.Errorf("`isAvailable`: %w", err)
|
|
|
|
}
|
|
|
|
return topBoolFromStack(result.Stack)
|
|
|
|
}
|