mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-03 23:19:44 +00:00
ddd1d92ff1
The idea here is to preserve the history of `dev` branch development and its code when merging with the `master`. Later this code could be moved into the masters code where appropriate.
43 lines
1 KiB
Go
43 lines
1 KiB
Go
package address
|
|
|
|
import (
|
|
"github.com/CityOfZion/neo-go/pkg/crypto/base58"
|
|
"github.com/CityOfZion/neo-go/pkg/wire/util"
|
|
)
|
|
|
|
// ToScriptHash converts an address to a script hash
|
|
func ToScriptHash(address string) string {
|
|
a, err := Uint160Decode(address)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
return a.String()
|
|
|
|
}
|
|
|
|
// ToReverseScriptHash converts an address to a reverse script hash
|
|
func ToReverseScriptHash(address string) string {
|
|
a, err := Uint160Decode(address)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
return a.ReverseString()
|
|
}
|
|
|
|
// FromUint160 returns the "NEO address" from the given
|
|
// Uint160.
|
|
func FromUint160(u util.Uint160) (string, error) {
|
|
// Dont forget to prepend the Address version 0x17 (23) A
|
|
b := append([]byte{0x17}, u.Bytes()...)
|
|
return base58.CheckEncode(b)
|
|
}
|
|
|
|
// Uint160Decode attempts to decode the given NEO address string
|
|
// into an Uint160.
|
|
func Uint160Decode(s string) (u util.Uint160, err error) {
|
|
b, err := base58.CheckDecode(s)
|
|
if err != nil {
|
|
return u, err
|
|
}
|
|
return util.Uint160DecodeBytes(b[1:21])
|
|
}
|