forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.go
46 lines (40 loc) · 1.19 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
package build
import (
"github.com/stellar/go/keypair"
"github.com/stellar/go/support/errors"
"github.com/stellar/go/xdr"
)
func setAccountId(addressOrSeed string, aid *xdr.AccountId) error {
kp, err := keypair.Parse(addressOrSeed)
if err != nil {
return err
}
if aid == nil {
return errors.New("aid is nil in setAccountId")
}
return aid.SetAddress(kp.Address())
}
func createAlphaNumAsset(code, issuerAccountId string) (xdr.Asset, error) {
var issuer xdr.AccountId
err := setAccountId(issuerAccountId, &issuer)
if err != nil {
return xdr.Asset{}, err
}
length := len(code)
switch {
case length >= 1 && length <= 4:
var codeArray [4]byte
byteArray := []byte(code)
copy(codeArray[:], byteArray[0:length])
asset := xdr.AssetAlphaNum4{AssetCode: codeArray, Issuer: issuer}
return xdr.NewAsset(xdr.AssetTypeAssetTypeCreditAlphanum4, asset)
case length >= 5 && length <= 12:
var codeArray [12]byte
byteArray := []byte(code)
copy(codeArray[:], byteArray[0:length])
asset := xdr.AssetAlphaNum12{AssetCode: codeArray, Issuer: issuer}
return xdr.NewAsset(xdr.AssetTypeAssetTypeCreditAlphanum12, asset)
default:
return xdr.Asset{}, errors.New("Asset code length is invalid")
}
}