Go to file
Ian Norden 7d6c705aa1
Merge pull request #6 from vulcanize/statedb
Add go report card and some additional detail/comments
2020-06-22 13:51:34 -05:00
.gitignore init repo 2020-05-30 11:53:27 -05:00
batch_test.go tests 2020-06-03 15:46:34 -05:00
batch.go golint, add go report card 2020-06-22 13:03:46 -05:00
database_test.go tests 2020-06-03 15:46:34 -05:00
database.go golint, add go report card 2020-06-22 13:03:46 -05:00
go.mod tests 2020-06-03 15:46:34 -05:00
go.sum tests 2020-06-03 15:46:34 -05:00
iterator.go golint, add go report card 2020-06-22 13:03:46 -05:00
LICENSE license 2020-05-30 11:59:16 -05:00
README.md extend example in readme 2020-06-22 13:49:34 -05:00
suite_test.go tests 2020-06-03 15:46:34 -05:00
util.go tests 2020-06-03 15:46:34 -05:00

pg-ipfs-ethdb

Go Report Card

go-ethereum ethdb interfaces for Ethereum state data stored in Postgres-backed IPFS

Background

Go-ethereum defines a number of interfaces in the ethdb package for interfacing with a state database. These interfaces are used to build higher-level types such as the trie.Database which are used to perform the bulk of state related needs.

Ethereum data can be stored on IPFS, standard codecs for Etheruem data are defined in the go-cid library. Here at Vulcanize we have extended IPFS to use Postgres as a backing database. Additionally, we have extended go-ethereum to enable the efficient export of state data in the form of state diff objects. Together, this allows us to store all Ethereum data on Postgres-backed IPFS.

Geth stores state data in leveldb as key-value pairs between the keccak256 hash of the rlp-encoded object and the rlp-encoded object. Ethereum data on IPFS is also stored as key-value pairs with the value being the rlp-encoded byte value for the object, but the key is a derivative of the keccak256 hash rather than the hash itself. This library provides ethdb interfaces for Ethereum data on IPFS by handling the conversion of a keccak256 hash to its multihash-derived key.

Usage

To use this module simply import it and build the desired interface around an instance of sqlx.DB, you can then employ it as you would the usual leveldb or memorydb interfaces with a few exceptions:

package main

import (
	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/core/state"
	"github.com/ethereum/go-ethereum/trie"
	"github.com/jmoiron/sqlx"
	"github.com/vulcanize/pg-ipfs-ethdb"
)

func main() {
    connectStr := "postgresql://localhost:5432/vulcanize_testing?sslmode=disable"
    db, _ := sqlx.Connect("postgres", connectStr)

    kvs := ipfsethdb.NewKeyValueStore(db)
    trieDB := trie.NewDatabase(kvs)
    t, _ := trie.New(common.Hash{}, trieDB)
    // do stuff with trie or trieDB

    database := ipfsethdb.NewDatabase(db)
    stateDatabase := state.NewDatabase(database)
    // do stuff with the state database
}

EXCEPTIONS: AncientReader, AncientWriter, and Iteratee interfaces are not functionally complete.

Ancient data does not currently have a representation on IPFS, and recapitulation of the database key iterator is complicated since go-ethereum types that use this interface expect the iterator to iterate over keccak256 hash keys, whereas the keys for Ethereum data on IPFS are derived from that hash but not the hash itself.

Iteratee interface is only used in Geth for various tests, in trie/sync_bloom.go (for fast sync), and for rawdb.InspectDatabase while the Ancient interfaces are only used for Ancient data operations, so we don't need these interfaces for the majority of state operations.

The ethdb.Iteratee/ethdb.Iterator interfaces should not be confused with the trie.NodeIterator or state.NodeIterator. These can be constructed from the ethdb.KeyValueStore and ethdb.Database interfaces, respectively:

package main

import (
	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/core/state"
	"github.com/ethereum/go-ethereum/core/state/snapshot"
	"github.com/ethereum/go-ethereum/trie"
	"github.com/jmoiron/sqlx"
	"github.com/vulcanize/pg-ipfs-ethdb"
)

func main() {
    connectStr := "postgresql://localhost:5432/vulcanize_testing?sslmode=disable"
    db, _ := sqlx.Connect("postgres", connectStr)

    kvs := ipfsethdb.NewKeyValueStore(db)
    trieDB := trie.NewDatabase(kvs)
    t, _ := trie.New(common.Hash{}, trieDB)
    trieNodeIterator := t.NodeIterator([]byte{})
    // do stuff with trie node iterator

    database := ipfsethdb.NewDatabase(db)
    stateDatabase := state.NewDatabase(database)
    snapshotTree := snapshot.New(kvs, trieDB, 1, common.Hash{}, false)
    stateDB, _ := state.New(common.Hash{}, stateDatabase, snapshotTree)
    stateDBNodeIterator := state.NewNodeIterator(stateDB)
    // do stuff with the statedb node iterator
}

Maintainers

@vulcanize @AFDudley @i-norden

Contributing

Contributions are welcome!

VulcanizeDB follows the Contributor Covenant Code of Conduct.

License

AGPL-3.0 © Vulcanize Inc