1db6d316c2
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru> Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
56 lines
1.4 KiB
Go
56 lines
1.4 KiB
Go
package balance
|
|
|
|
import (
|
|
"fmt"
|
|
"math/big"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
)
|
|
|
|
// GetBalanceOfArgs groups the arguments
|
|
// of "balance of" test invoke call.
|
|
type GetBalanceOfArgs struct {
|
|
wallet []byte // wallet script hash
|
|
}
|
|
|
|
// GetBalanceOfValues groups the stack parameters
|
|
// returned by "balance of" test invoke.
|
|
type GetBalanceOfValues struct {
|
|
amount *big.Int // wallet funds amount
|
|
}
|
|
|
|
// SetWallet sets the wallet script hash
|
|
// in a binary format.
|
|
func (g *GetBalanceOfArgs) SetWallet(v []byte) {
|
|
g.wallet = v
|
|
}
|
|
|
|
// Amount returns the amount of funds.
|
|
func (g *GetBalanceOfValues) Amount() *big.Int {
|
|
return g.amount
|
|
}
|
|
|
|
// BalanceOf performs the test invoke of "balance of"
|
|
// method of NeoFS Balance contract.
|
|
func (c *Client) BalanceOf(args GetBalanceOfArgs) (*GetBalanceOfValues, error) {
|
|
invokePrm := client.TestInvokePrm{}
|
|
|
|
invokePrm.SetMethod(c.balanceOfMethod)
|
|
invokePrm.SetArgs(args.wallet)
|
|
|
|
prms, err := c.client.TestInvoke(invokePrm)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not perform test invocation (%s): %w", c.balanceOfMethod, err)
|
|
} else if ln := len(prms); ln != 1 {
|
|
return nil, fmt.Errorf("unexpected stack item count (%s): %d", c.balanceOfMethod, ln)
|
|
}
|
|
|
|
amount, err := client.BigIntFromStackItem(prms[0])
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not get integer stack item from stack item (%s): %w", c.balanceOfMethod, err)
|
|
}
|
|
|
|
return &GetBalanceOfValues{
|
|
amount: amount,
|
|
}, nil
|
|
}
|