mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* Replace p2pkh with p2pk * Fix tests * Fix comments and variable names * Add README.md for genkeypair * Rename pubkey->publicKey * Rename p2pkh to p2pk * Use util.PublicKeySize where needed * Remove redundant pointer * Fix comment * Rename pubKey->publicKey
38 lines
1.2 KiB
Go
38 lines
1.2 KiB
Go
/*
|
|
Package util provides kaspa-specific convenience functions and types.
|
|
|
|
Block Overview
|
|
|
|
A Block defines a kaspa block that provides easier and more efficient
|
|
manipulation of raw blocks. It also memoizes hashes for the
|
|
block and its transactions on their first access so subsequent accesses don't
|
|
have to repeat the relatively expensive hashing operations.
|
|
|
|
Tx Overview
|
|
|
|
A Tx defines a kaspa transaction that provides more efficient manipulation of
|
|
raw transactions. It memoizes the hash for the transaction on its
|
|
first access so subsequent accesses don't have to repeat the relatively
|
|
expensive hashing operations.
|
|
|
|
Address Overview
|
|
|
|
The Address interface provides an abstraction for a kaspa address. While the
|
|
most common type is a pay-to-pubkey, kaspa already supports others and
|
|
may well support more in the future. This package currently provides
|
|
implementations for the pay-to-pubkey, and pay-to-script-hash address
|
|
types.
|
|
|
|
To decode/encode an address:
|
|
|
|
addrString := "kaspa:qqj9fg59mptxkr9j0y53j5mwurcmda5mtza9n6v9pm9uj8h0wgk6uma5pvumr"
|
|
defaultPrefix := util.Bech32PrefixKaspa
|
|
addr, err := util.DecodeAddress(addrString, defaultPrefix)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
fmt.Println(addr.EncodeAddress())
|
|
*/
|
|
package util
|