Newer
Older
// Copyright 2017 Monax Industries Limited
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// TODO: [ben] This respects the old Pipe interface from Eris-DB.
// This made sense as a wrapper around the old Tendermint, but now
// it strongly reflects the internal details of old Tendermint outwards
// and provides little value as an abstraction.
// The refactor needed here for eris-db-0.12.1 is to expose a language
// of transactions, block verification and accounts, grouping
// these interfaces into an Engine, Communicator, NameReg, Permissions (suggestion)
import (
blockchain_types "github.com/eris-ltd/eris-db/blockchain/types"
consensus_types "github.com/eris-ltd/eris-db/consensus/types"
types "github.com/eris-ltd/eris-db/core/types"
event "github.com/eris-ltd/eris-db/event"
manager_types "github.com/eris-ltd/eris-db/manager/types"
Blockchain() blockchain_types.Blockchain
Events() event.EventEmitter
NameReg() NameReg
Transactor() Transactor
// Hash of Genesis state
GenesisHash() []byte
// NOTE: [ben] added to Pipe interface on 0.12 refactor
GetApplication() manager_types.Application
SetConsensusEngine(consensusEngine consensus_types.ConsensusEngine) error
GetConsensusEngine() consensus_types.ConsensusEngine
SetBlockchain(blockchain blockchain_types.Blockchain) error
GetBlockchain() blockchain_types.Blockchain
// Support for Tendermint RPC
GetTendermintPipe() (TendermintPipe, error)
}
type Accounts interface {
GenPrivAccount() (*account.PrivAccount, error)
GenPrivAccountFromKey(privKey []byte) (*account.PrivAccount, error)
Accounts([]*event.FilterData) (*types.AccountList, error)
Account(address []byte) (*account.Account, error)
Storage(address []byte) (*types.Storage, error)
StorageAt(address, key []byte) (*types.StorageItem, error)
}
type NameReg interface {
Entries([]*event.FilterData) (*types.ResultListNames, error)
}
type Transactor interface {
Call(fromAddress, toAddress, data []byte) (*types.Call, error)
CallCode(fromAddress, code, data []byte) (*types.Call, error)
// Send(privKey, toAddress []byte, amount int64) (*types.Receipt, error)
// SendAndHold(privKey, toAddress []byte, amount int64) (*types.Receipt, error)
TransactAndHold(privKey, address, data []byte, gasLimit,
Send(privKey, toAddress []byte, amount int64) (*txs.Receipt, error)
SendAndHold(privKey, toAddress []byte, amount int64) (*txs.Receipt, error)
TransactNameReg(privKey []byte, name, data string, amount,
Silas Davis
committed
SignTx(tx txs.Tx, privAccounts []*account.PrivAccount) (txs.Tx, error)