2020-07-24 13:54:03 +00:00
|
|
|
package invoke
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
// TransferXParams for TransferBalanceX invocation.
|
|
|
|
TransferXParams struct {
|
|
|
|
Sender []byte
|
|
|
|
Receiver []byte
|
|
|
|
Amount int64 // in Fixed16
|
|
|
|
Comment []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// LockParams for LockAsset invocation.
|
|
|
|
LockParams struct {
|
|
|
|
ID []byte
|
|
|
|
User util.Uint160
|
|
|
|
LockAccount util.Uint160
|
|
|
|
Amount int64 // in Fixed16
|
|
|
|
Until uint64 // epochs
|
|
|
|
}
|
2020-09-01 11:16:16 +00:00
|
|
|
|
|
|
|
// MintBurnParams for Mint and Burn invocations.
|
|
|
|
MintBurnParams struct {
|
|
|
|
ScriptHash []byte
|
|
|
|
Amount int64 // in Fixed16
|
|
|
|
Comment []byte
|
|
|
|
}
|
2020-07-24 13:54:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
transferXMethod = "transferX"
|
2020-08-27 12:37:01 +00:00
|
|
|
lockMethod = "lock"
|
2020-09-01 11:16:16 +00:00
|
|
|
mintMethod = "mint"
|
|
|
|
burnMethod = "burn"
|
2020-10-27 10:25:55 +00:00
|
|
|
precisionMethod = "decimals"
|
2020-07-24 13:54:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TransferBalanceX invokes transferX method.
|
|
|
|
func TransferBalanceX(cli *client.Client, con util.Uint160, p *TransferXParams) error {
|
|
|
|
if cli == nil {
|
|
|
|
return client.ErrNilClient
|
|
|
|
}
|
|
|
|
|
|
|
|
return cli.Invoke(con, extraFee, transferXMethod,
|
|
|
|
p.Sender,
|
|
|
|
p.Receiver,
|
|
|
|
p.Amount,
|
|
|
|
p.Comment,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-09-01 11:16:16 +00:00
|
|
|
// Mint assets in contract.
|
|
|
|
func Mint(cli *client.Client, con util.Uint160, p *MintBurnParams) error {
|
|
|
|
if cli == nil {
|
|
|
|
return client.ErrNilClient
|
|
|
|
}
|
|
|
|
|
|
|
|
return cli.Invoke(con, extraFee, mintMethod,
|
|
|
|
p.ScriptHash,
|
|
|
|
p.Amount,
|
|
|
|
p.Comment,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Burn minted assets.
|
|
|
|
func Burn(cli *client.Client, con util.Uint160, p *MintBurnParams) error {
|
|
|
|
if cli == nil {
|
|
|
|
return client.ErrNilClient
|
|
|
|
}
|
|
|
|
|
|
|
|
return cli.Invoke(con, extraFee, burnMethod,
|
|
|
|
p.ScriptHash,
|
|
|
|
p.Amount,
|
|
|
|
p.Comment,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-07-24 13:54:03 +00:00
|
|
|
// LockAsset invokes Lock method.
|
|
|
|
func LockAsset(cli *client.Client, con util.Uint160, p *LockParams) error {
|
|
|
|
if cli == nil {
|
|
|
|
return client.ErrNilClient
|
|
|
|
}
|
|
|
|
|
|
|
|
return cli.Invoke(con, extraFee, lockMethod,
|
|
|
|
p.ID,
|
|
|
|
p.User.BytesBE(),
|
|
|
|
p.LockAccount.BytesBE(),
|
|
|
|
p.Amount,
|
2020-09-08 09:09:08 +00:00
|
|
|
int64(p.Until),
|
2020-07-24 13:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
2020-10-27 10:25:55 +00:00
|
|
|
|
|
|
|
// BalancePrecision invokes Decimal method that returns precision of NEP-5 contract.
|
|
|
|
func BalancePrecision(cli *client.Client, con util.Uint160) (uint32, error) {
|
|
|
|
if cli == nil {
|
|
|
|
return 0, client.ErrNilClient
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := cli.TestInvoke(con, precisionMethod)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
precision, err := client.IntFromStackItem(v[0])
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return uint32(precision), nil
|
|
|
|
}
|