Documentation
¶
Index ¶
- Constants
- Variables
- func EqualSubset(start, stop int, id1, id2 ID) bool
- func FirstDifferenceSubset(start, stop int, id1, id2 ID) (int, bool)
- func GetRelevantAliases(aliaser Aliaser, ids []ID) (map[ID][]string, error)
- func IsNativeChain(id ID) bool
- func NativeChainAlias(id ID) string
- func NativeChainString(id ID) string
- func ShortIDsToStrings(ids []ShortID) []string
- type Aliaser
- type AliaserReader
- type AliaserWriter
- type Certificate
- type ID
- func AllNativeChainIDs() []ID
- func Checksum256(data []byte) ID
- func FromString(idStr string) (ID, error)
- func FromStringOrPanic(idStr string) ID
- func FromStringWithForce(idStr string, forceIgnoreChecksum bool) (ID, error)
- func GenerateNodeIDFromBytes(bytes []byte) ID
- func GenerateTestID() ID
- func NativeChainFromString(s string) (ID, bool)
- func NativeChainIDFromLetter(letter byte) (ID, bool)
- func ToID(bytes []byte) (ID, error)
- func (id ID) Append(suffixes ...uint32) ID
- func (id ID) Bit(i uint) int
- func (id ID) Compare(other ID) int
- func (id ID) Hex() string
- func (id ID) IsZero() bool
- func (id ID) MarshalJSON() ([]byte, error)
- func (id ID) MarshalText() ([]byte, error)
- func (id ID) Prefix(prefixes ...uint64) ID
- func (id ID) String() string
- func (id ID) ToShortID() ShortID
- func (id *ID) UnmarshalJSON(b []byte) error
- func (id *ID) UnmarshalText(text []byte) error
- func (id ID) XOR(other ID) ID
- type NodeID
- func (id NodeID) Bytes() []byte
- func (id NodeID) Compare(other NodeID) int
- func (id NodeID) MarshalJSON() ([]byte, error)
- func (id NodeID) MarshalText() ([]byte, error)
- func (id NodeID) String() string
- func (id *NodeID) UnmarshalJSON(b []byte) error
- func (id *NodeID) UnmarshalText(text []byte) error
- type RequestID
- type ShortID
- func (id ShortID) Bytes() []byte
- func (id ShortID) Compare(other ShortID) int
- func (id ShortID) Hex() string
- func (id ShortID) MarshalJSON() ([]byte, error)
- func (id ShortID) MarshalText() ([]byte, error)
- func (id ShortID) PrefixedString(prefix string) string
- func (id ShortID) String() string
- func (id *ShortID) UnmarshalJSON(b []byte) error
- func (id *ShortID) UnmarshalText(text []byte) error
Constants ¶
const ( // Precomputed full strings for each chain PChainIDStr = nativeChainPrefix + "P" CChainIDStr = nativeChainPrefix + "C" XChainIDStr = nativeChainPrefix + "X" QChainIDStr = nativeChainPrefix + "Q" AChainIDStr = nativeChainPrefix + "A" BChainIDStr = nativeChainPrefix + "B" TChainIDStr = nativeChainPrefix + "T" ZChainIDStr = nativeChainPrefix + "Z" GChainIDStr = nativeChainPrefix + "G" // Coming soon IChainIDStr = nativeChainPrefix + "I" // Coming soon KChainIDStr = nativeChainPrefix + "K" // Coming soon )
Native chain constants - precomputed for maximum speed
const ( NodeIDPrefix = "NodeID-" NodeIDLen = ShortIDLen )
const BitsPerByte = 8
BitsPerByte is the number of bits per byte
const (
IDLen = 32
)
const NumBits = 256
NumBits is the number of bits this patricia tree manages
const ShortIDLen = 20
Variables ¶
var ( // Empty is a useful all zero value Empty = ID{} )
var (
EmptyNodeID = NodeID{}
)
var (
ErrNoIDWithAlias = errors.New("there is no ID with alias")
)
var (
ShortEmpty = ShortID{}
)
ShortEmpty is a useful all zero value
Functions ¶
func EqualSubset ¶
EqualSubset takes in two indices and two ids and returns if the ids are equal from bit start to bit end (non-inclusive). Bit indices are defined as: [7 6 5 4 3 2 1 0] [15 14 13 12 11 10 9 8] ... [255 254 253 252 251 250 249 248] Where index 7 is the MSB of byte 0.
func FirstDifferenceSubset ¶
FirstDifferenceSubset takes in two indices and two ids and returns the index of the first difference between the ids inside bit start to bit end (non-inclusive). Bit indices are defined above
func GetRelevantAliases ¶
GetRelevantAliases returns the aliases with the redundant identity alias removed (each id is aliased to at least itself).
func IsNativeChain ¶ added in v1.2.0
IsNativeChain returns true if the ID is a well-known native chain ID. This is the fastest possible check - just verify all zeros except valid last byte.
func NativeChainAlias ¶ added in v1.2.0
NativeChainAlias returns the single-letter alias for a native chain (P, C, X, Q, A, B, T, Z, G, I, K). Returns empty string if not a native chain.
func NativeChainString ¶ added in v1.2.0
NativeChainString returns the human-friendly string for a native chain ID. Returns empty string if not a native chain. This is the fast-path for String().
func ShortIDsToStrings ¶
ShortIDsToStrings converts an array of shortIDs to an array of their string representations
Types ¶
type Aliaser ¶
type Aliaser interface {
AliaserReader
AliaserWriter
// PrimaryAliasOrDefault returns the first alias of [id], or ID string as a
// default if no alias exists
PrimaryAliasOrDefault(id ID) string
}
Aliaser allows one to give an ID aliases and lookup the aliases given to an ID.
func NewAliaser ¶
func NewAliaser() Aliaser
type AliaserReader ¶
type AliaserReader interface {
// Lookup returns the ID associated with alias
Lookup(alias string) (ID, error)
// PrimaryAlias returns the first alias of [id]
PrimaryAlias(id ID) (string, error)
// Aliases returns the aliases of an ID
Aliases(id ID) ([]string, error)
}
AliaserReader allows one to lookup the aliases given to an ID.
type AliaserWriter ¶
type AliaserWriter interface {
// Alias gives [id] the alias [alias]
Alias(id ID, alias string) error
// RemoveAliases of the provided ID
RemoveAliases(id ID)
}
AliaserWriter allows one to give an ID aliases. An ID can have arbitrarily many aliases; two IDs may not have the same alias.
type Certificate ¶
type Certificate struct {
// Raw contains the complete ASN.1 DER content of the certificate
Raw []byte
// PublicKey contains the public key from the certificate
PublicKey crypto.PublicKey
}
Certificate represents a TLS certificate
type ID ¶
ID wraps a 32 byte hash used as an identifier
var ( // PChainID is the well-known P-Chain (Platform) ID PChainID ID // CChainID is the well-known C-Chain (Contract/EVM) ID CChainID ID // XChainID is the well-known X-Chain (Exchange/DAG) ID XChainID ID // QChainID is the well-known Q-Chain (Quantum) ID QChainID ID // AChainID is the well-known A-Chain (AI) ID AChainID ID // BChainID is the well-known B-Chain (Bridge) ID BChainID ID // TChainID is the well-known T-Chain (Threshold) ID TChainID ID // ZChainID is the well-known Z-Chain (Zero-knowledge) ID ZChainID ID // GChainID is the well-known G-Chain (Graph/dgraph) ID - COMING SOON GChainID ID // IChainID is the well-known I-Chain (Identity) ID - COMING SOON IChainID ID // KChainID is the well-known K-Chain (KMS) ID - COMING SOON KChainID ID )
func AllNativeChainIDs ¶ added in v1.2.0
func AllNativeChainIDs() []ID
AllNativeChainIDs returns all well-known native chain IDs.
func Checksum256 ¶
Checksum256 computes SHA256 checksum and returns an ID
func FromString ¶
FromString is the inverse of ID.String()
func FromStringOrPanic ¶
FromStringOrPanic is the same as FromString, but will panic on error
func FromStringWithForce ¶
FromStringWithForce is like FromString but can force ignore checksum errors
func GenerateNodeIDFromBytes ¶
GenerateNodeIDFromBytes generates a node ID from bytes
func GenerateTestID ¶
func GenerateTestID() ID
GenerateTestID returns a new ID that should only be used for testing
func NativeChainFromString ¶ added in v1.2.0
NativeChainFromString parses a native chain string and returns the ID. Supports full strings (11111111111111111111111111111111P) and aliases (P, p). Returns Empty and false if not a native chain string.
func NativeChainIDFromLetter ¶ added in v1.2.0
NativeChainIDFromLetter returns the chain ID for a given letter. Returns Empty and false if the letter is not a valid chain identifier.
func (ID) Append ¶
Append this id with the provided suffixes and re-hash the result. This returns a new ID and does not modify the original ID.
This is used to generate LP-77 validationIDs.
func (ID) MarshalJSON ¶
func (ID) MarshalText ¶
func (ID) Prefix ¶
Prefix this id to create a more selective id. This can be used to store multiple values under the same key. For example: prefix1(id) -> confidence prefix2(id) -> vertex This will return a new id and not modify the original id.
func (*ID) UnmarshalJSON ¶
func (*ID) UnmarshalText ¶
type NodeID ¶
type NodeID ShortID
func BuildTestNodeID ¶
BuildTestNodeID is an utility to build NodeID from bytes in UTs It must not be used in production code. In production code we should use ToNodeID, which performs proper length checking.
func GenerateTestNodeID ¶
func GenerateTestNodeID() NodeID
GenerateTestNodeID returns a new ID that should only be used for testing
func NodeIDFromCert ¶
func NodeIDFromCert(cert *Certificate) NodeID
func NodeIDFromString ¶
NodeIDFromString is the inverse of NodeID.String()
func (NodeID) MarshalJSON ¶
func (NodeID) MarshalText ¶
func (*NodeID) UnmarshalJSON ¶
func (*NodeID) UnmarshalText ¶
type RequestID ¶
type RequestID struct {
// The node this request came from
NodeID NodeID
// The chain this request came from
SourceChainID ID
// The chain the expected response should come from
DestinationChainID ID
// The unique identifier for this request
RequestID uint32
// The message opcode
Op byte
}
RequestID is a unique identifier for an in-flight request pending a response.
type ShortID ¶
type ShortID [ShortIDLen]byte
ShortID wraps a 20 byte hash as an identifier
func GenerateTestShortID ¶
func GenerateTestShortID() ShortID
GenerateTestShortID returns a new ID that should only be used for testing
func ShortFromPrefixedString ¶
ShortFromPrefixedString returns a ShortID assuming the cb58 format is prefixed
func ShortFromString ¶
ShortFromString is the inverse of ShortID.String()
func (ShortID) Bytes ¶
Bytes returns the 20 byte hash as a slice. It is assumed this slice is not modified.
func (ShortID) MarshalJSON ¶
func (ShortID) MarshalText ¶
func (ShortID) PrefixedString ¶
PrefixedString returns the String representation with a prefix added
func (*ShortID) UnmarshalJSON ¶
func (*ShortID) UnmarshalText ¶
Source Files
¶
Directories
¶
| Path | Synopsis |
|---|---|
|
cmd
|
|
|
test_native
command
|
|
|
Package codectest provides a test suite for testing functionality related to IDs.
|
Package codectest provides a test suite for testing functionality related to IDs. |