package
0.9.39
Repository: https://github.com/sei-protocol/go-ethereum.git
Documentation: pkg.go.dev

# README

ethutil

Build
Status

The ethutil package contains the ethereum utility library.

Installation

go get github.com/ethereum/ethutil-go

Usage

RLP (Recursive Linear Prefix) Encoding

RLP Encoding is an encoding scheme utilized by the Ethereum project. It encodes any native value or list to string.

More in depth information about the Encoding scheme see the Wiki article.

rlp := ethutil.Encode("doge")
fmt.Printf("%q\n", rlp) // => "\0x83dog"

rlp = ethutil.Encode([]interface{}{"dog", "cat"})
fmt.Printf("%q\n", rlp) // => "\0xc8\0x83dog\0x83cat"
decoded := ethutil.Decode(rlp)
fmt.Println(decoded) // => ["dog" "cat"]

Patricia Trie

Patricie Tree is a merkle trie utilized by the Ethereum project.

More in depth information about the (modified) Patricia Trie can be found on the Wiki.

The patricia trie uses a db as backend and could be anything as long as it satisfies the Database interface found in ethutil/db.go.

db := NewDatabase()

// db, root
trie := ethutil.NewTrie(db, "")

trie.Put("puppy", "dog")
trie.Put("horse", "stallion")
trie.Put("do", "verb")
trie.Put("doge", "coin")

// Look up the key "do" in the trie
out := trie.Get("do")
fmt.Println(out) // => verb

trie.Delete("puppy")

The patricia trie, in combination with RLP, provides a robust, cryptographically authenticated data structure that can be used to store all (key, value) bindings.

// ... Create db/trie

// Note that RLP uses interface slices as list
value := ethutil.Encode([]interface{}{"one", 2, "three", []interface{}{42}})
// Store the RLP encoded value of the list
trie.Put("mykey", value)

Value

Value is a Generic Value which is used in combination with RLP data or ([])interface{} structures. It may serve as a bridge between RLP data and actual real values and takes care of all the type checking and casting. Unlike Go's reflect.Value it does not panic if it's unable to cast to the requested value. It simple returns the base value of that type (e.g. Slice() returns []interface{}, Uint() return 0, etc).

Creating a new Value

NewEmptyValue() returns a new *Value with it's initial value set to a []interface{}

AppendList() appends a list to the current value.

Append(v) appends the value (v) to the current value/list.

val := ethutil.NewEmptyValue().Append(1).Append("2")
val.AppendList().Append(3)

Retrieving values

Get(i) returns the i item in the list.

Uint() returns the value as an unsigned int64.

Slice() returns the value as a interface slice.

Str() returns the value as a string.

Bytes() returns the value as a byte slice.

Len() assumes current to be a slice and returns its length.

Byte() returns the value as a single byte.

val := ethutil.NewValue([]interface{}{1,"2",[]interface{}{3}})
val.Get(0).Uint() // => 1
val.Get(1).Str()  // => "2"
s := val.Get(2)   // => Value([]interface{}{3})
s.Get(0).Uint()   // => 3

Decoding

Decoding streams of RLP data is simplified

val := ethutil.NewValueFromBytes(rlpData)
val.Get(0).Uint()

Encoding

Encoding from Value to RLP is done with the Encode method. The underlying value can be anything RLP can encode (int, str, lists, bytes)

val := ethutil.NewValue([]interface{}{1,"2",[]interface{}{3}})
rlp := val.Encode()
// Store the rlp data
Store(rlp)

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Functions

No description provided by the author
Big Shortcut for new(big.Int).SetString(..., 0).
Big copy Creates a copy of the given big integer.
No description provided by the author
Big max Returns the maximum size big integer.
Big min Returns the minimum size big integer.
Big pow Returns the power of two big integers.
No description provided by the author
Big to bytes Returns the bytes of a big integer with the size specified by **base** Attempts to pad the byte array with zeros.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Address.
Bytes2Big .
No description provided by the author
Bytes to number Attempts to cast a byte slice to a unsigned integer.
No description provided by the author
Copy bytes Returns an exact copy of the provided bytes.
Currency to string Returns a string representing a human readable format.
TODO Use a bytes.Buffer instead of a raw byte slice.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Find file in archive Returns the index of the given file name if it exists.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
LoadJSON reads the given file and unmarshals its content.
MakeName creates a node name that follows the ethereum convention for such names.
Initialise a new list.
No description provided by the author
Value setters.
No description provided by the author
NewValueFromBytes decodes RLP data.
Number to bytes Returns the number in bytes with the specified base.
Open package Opens a prepared ethereum package Reads the manifest file and determines file contents and returns and the external package.
No description provided by the author
PP Pretty Prints a byte slice in the following format: hex(value[:4])...(hex[len(value)-4:]).
Read config Initialize Config from Config File.
Read file Read a given compressed file and returns the read bytes.
Reads manifest Reads and returns a manifest object.
Read variable int Read a variable length number in big endian byte order.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Constants

No description provided by the author
No description provided by the author

# Variables

The different number of units.
The different number of units.
Common big integers often used.
Common big integers often used.
Common big integers often used.
Common big integers often used.
Common big integers often used.
Common big integers often used.
Common big integers often used.
Common big integers often used.
Common big integers often used.
The different number of units.
The different number of units.
The different number of units.
The different number of units.
Common big integers often used.
The different number of units.
The different number of units.
The different number of units.

# Structs

Config struct.
External package External package contains the main html file and manifest.
The list type is an anonymous slice handler which can be used for containing any slice type to use in an environment which does not support slice types (e.g., JavaScript, QML).
Manifest object The manifest object holds all the relevant information supplied with the the manifest specified in the package.
No description provided by the author
Value can hold values of certain basic types and provides ways to convert between types without bothering to check whether the conversion is actually meaningful.
No description provided by the author

# Interfaces

Database interface.
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author