github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/tm2/pkg/crypto/consts.go (about)

     1  package crypto
     2  
     3  const (
     4  	// Bech32AddrPrefix defines the Bech32 prefix of an address
     5  	Bech32AddrPrefix = "g"
     6  
     7  	// Bech32PubKeyPrefix defines the Bech32 prefix of a pubkey
     8  	Bech32PubKeyPrefix = "gpub"
     9  
    10  	// Atom in https://github.com/satoshilabs/slips/blob/master/slip-0044.md
    11  	CoinType uint32 = 118
    12  
    13  	// BIP44Prefix is the parts of the BIP44 HD path that are fixed by
    14  	// what we used during the fundraiser.
    15  	Bip44DefaultPath = "44'/118'/0'/0/0"
    16  )