Documentation ¶
Overview ¶
Package network contains functions that deal with lantah network passphrases and IDs.
Index ¶
- Constants
- Variables
- func HashFeeBumpTransaction(tx xdr.FeeBumpTransaction, passphrase string) ([32]byte, error)
- func HashTransaction(tx xdr.Transaction, passphrase string) ([32]byte, error)
- func HashTransactionInEnvelope(envelope xdr.TransactionEnvelope, passphrase string) ([32]byte, error)
- func HashTransactionV0(tx xdr.TransactionV0, passphrase string) ([32]byte, error)
- func ID(passphrase string) [32]byte
Constants ¶
const ( // PublicNetworkPassphrase is the pass phrase used for every transaction intended for the public lantah network PublicNetworkPassphrase = "Public Global Lantah Network ; 2023" // TestNetworkPassphrase is the pass phrase used for every transaction intended for the SDF-run test network TestNetworkPassphrase = "Test Lantah Network ; 2023" // FutureNetworkPassphrase is the pass phrase used for every transaction intended for the SDF-run future network FutureNetworkPassphrase = "Test Lantah Future Network ; 2023" )
Variables ¶
var ( // PublicNetworkhistoryArchiveURLs is a list of history archive URLs for lantah 'pubnet' PublicNetworkhistoryArchiveURLs = []string{"https://gravity1.lantah/network/", "https://gravity2.lantah/network/", "https://gravity3.lantah/network/"} // TestNetworkhistoryArchiveURLs is a list of history archive URLs for lantah 'testnet' TestNetworkhistoryArchiveURLs = []string{"https://testgravity1.lantah/network/", "http://testgravity2.lantah/network/", "https://testgravity3.lantah/network/"} )
Functions ¶
func HashFeeBumpTransaction ¶
func HashFeeBumpTransaction(tx xdr.FeeBumpTransaction, passphrase string) ([32]byte, error)
HashFeeBumpTransaction derives the network specific hash for the provided fee bump transaction using the network identified by the supplied passphrase. The resulting hash is the value that can be signed by stellar secret key to authorize the transaction identified by the hash to stellar validators.
func HashTransaction ¶
func HashTransaction(tx xdr.Transaction, passphrase string) ([32]byte, error)
HashTransaction derives the network specific hash for the provided transaction using the network identified by the supplied passphrase. The resulting hash is the value that can be signed by stellar secret key to authorize the transaction identified by the hash to stellar validators.
func HashTransactionInEnvelope ¶
func HashTransactionInEnvelope(envelope xdr.TransactionEnvelope, passphrase string) ([32]byte, error)
HashTransactionInEnvelope derives the network specific hash for the transaction contained in the provided envelope using the network identified by the supplied passphrase. The resulting hash is the value that can be signed by stellar secret key to authorize the transaction identified by the hash to stellar validators.
func HashTransactionV0 ¶
func HashTransactionV0(tx xdr.TransactionV0, passphrase string) ([32]byte, error)
HashTransactionV0 derives the network specific hash for the provided legacy transaction using the network identified by the supplied passphrase. The resulting hash is the value that can be signed by stellar secret key to authorize the transaction identified by the hash to stellar validators.
Types ¶
This section is empty.