-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutil.go
75 lines (62 loc) · 2.09 KB
/
util.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package qlcchain
import (
"math/big"
"github.com/qlcchain/qlc-go-sdk/pkg/types"
"github.com/qlcchain/qlc-go-sdk/pkg/util"
)
type UtilApi struct {
client *QLCClient
}
// NewUtilAPI creates unit module for client
func NewUtilAPI(c *QLCClient) *UtilApi {
return &UtilApi{client: c}
}
// Decrypt decrypts cryptograph to raw by passphrase
func (u *UtilApi) Decrypt(cryptograph string, passphrase string) (string, error) {
return util.Decrypt(cryptograph, passphrase)
}
// Encrypt encrypts raw to cryptograph by passphrase
func (u *UtilApi) Encrypt(raw string, passphrase string) (string, error) {
return util.Encrypt(raw, passphrase)
}
type APIBalance struct {
*big.Float
}
func (b *APIBalance) MarshalText() ([]byte, error) {
return []byte(b.String()), nil
}
func (b *APIBalance) String() string {
return b.Text('f', -1)
}
// RawToBalance transforms QLC amount from raw to unit
func (u *UtilApi) RawToBalance(balance types.Balance, unit string) (APIBalance, error) {
var b APIBalance
if err := u.client.getClient().Call(&b, "util_rawToBalance", balance, unit); err != nil {
return APIBalance{big.NewFloat(0)}, err
}
return b, nil
}
// RawToBalance transforms token (not QLC) amount from raw
func (u *UtilApi) RawToBalanceForToken(balance types.Balance, tokenName string) (APIBalance, error) {
var b APIBalance
if err := u.client.getClient().Call(&b, "util_rawToBalance", balance, "", tokenName); err != nil {
return APIBalance{big.NewFloat(0)}, err
}
return b, nil
}
// RawToBalance transforms QLC amount from unit to raw
func (u *UtilApi) BalanceToRaw(balance types.Balance, unit string) (types.Balance, error) {
var b types.Balance
if err := u.client.getClient().Call(&b, "util_balanceToRaw", balance, unit); err != nil {
return types.ZeroBalance, err
}
return b, nil
}
// RawToBalance transforms token (not QLC) amount to raw
func (u *UtilApi) BalanceToRawForToken(balance types.Balance, tokenName string) (types.Balance, error) {
var b types.Balance
if err := u.client.getClient().Call(&b, "util_balanceToRaw", balance, "", tokenName); err != nil {
return types.ZeroBalance, err
}
return b, nil
}