Class RocksStore<V>

Store based on rocksdb

RocksStore

Implements

Type Parameters

  • V

Implements

Constructors

  • Creates an instance of RocksStore.

    Type Parameters

    • V

    Parameters

    • db: LevelUp<AbstractLevelDOWN<any, any>, AbstractIterator<any, any>>
    • eltTyp: Provable<V>
    • smtName: string

    Returns RocksStore<V>

    Memberof

    RocksStore

Properties

batch: LevelUpChain<any, any>
db: LevelUp<AbstractLevelDOWN<any, any>, AbstractIterator<any, any>>
eltTyp: Provable<V>
leavesKey: string
nodesKey: string

Methods

  • Get nodes for a key. Error is thrown when a key that does not exist is being accessed.

    Parameters

    • key: Field

    Returns Promise<Field[]>

    {Promise<Field[]>}

    Memberof

    RocksStore

  • Get the value for a key. Error is thrown when a key that does not exist is being accessed.

    Parameters

    • path: Field

    Returns Promise<V>

    {Promise}

    Memberof

    RocksStore

  • Prepare put nodes for a key. Use the commit() method to actually submit changes.

    Parameters

    • key: Field
    • value: Field[]

    Returns void

    Memberof

    RocksStore

  • Protected

    Convert value string to a value of FieldElements type.

    Parameters

    • valueStr: string
    • eltTyp: Provable<V>

    Returns V

    {V}

    Memberof

    RocksStore

  • Protected

    Serialize the value of the FieldElements type into a string

    Parameters

    • value: V

    Returns string

    {string}

    Memberof

    RocksStore