Categorygithub.com/SecretBlockChain/go-secret
modulepackage
0.0.0-20210715082108-b97d44849f10
Repository: https://github.com/secretblockchain/go-secret.git
Documentation: pkg.go.dev

# README

Go Secret

Official Golang implementation of the Secret protocol.

GoDoc License

About Secret

Secret is committed to solving the problems of existing blockchain solutions such as low transaction processing speeds, very expensive and limited computing resources and capacity. Secret proposes a blockchain solution suitable for large-scale transactions and calculations, with high performance, high security, and flexible expansion.

Secret core features include:

  1. Original POE (Proof of Equality) consensus mechanism With high-performance transaction processing capabilities (average TPS 4500+) and low-consumption performance, the POE consensus mechanism provides everyone with the same opportunity to participate, truly breaking the monopoly of blockchain computing power.
  2. The built-in decentralized computing power network brings verifiable and unlimited computing power to the blockchain. Smart contracts make it possible to implement large-scale matrix multiplications, AI model training and 3D rendering, to enable more real-world commercial applications and achieve computing goals.
  3. The chain state synchronization function can effectively, solve the problems of the continuous expansion of block data, and greatly reduce the participation threshold of Secret nodes, to truly allow everyone to participate in blockchain and benefit from it.

The Secret ecosystem is a framework that consists of three technical layers: the data persistence layer, the domain layer and the service layer. The data persistence layer has an account system, a POE consensus mechanism, and smart contracts. The domain layer consists of a cross-chain protocol suite based on smart contracts, a distributed computing system, and a data mapping and storage protocol suite. Finally, the service layer of the plaborm consists of a complete third-party protocol, API and SDK, a dashboard and related components. The service layer also provides access to developers and other related parties, realizing the processes of information generation, consumption, and delivery of the entire ecosystem.

Contact

email: [email protected]

# Packages

Package accounts implements high level Ethereum account management.
No description provided by the author
Package common contains various helper functions.
Package consensus implements different Ethereum consensus engines.
No description provided by the author
No description provided by the author
Package core implements the Ethereum consensus protocol.
No description provided by the author
Package eth implements the Ethereum protocol.
Package ethclient provides a client for the Ethereum RPC API.
Package ethdb defines the interfaces for an Ethereum data store.
Package ethstats implements the network stats reporting service.
Package event deals with subscriptions to real-time events.
Package graphql provides a GraphQL interface to Ethereum node data.
Package les implements the Light Ethereum Subprotocol.
Package light implements on-demand retrieval capable state and chain objects for the Ethereum Light Client.
Package log15 provides an opinionated, simple toolkit for best-practice logging that is both human and machine readable.
Go port of Coda Hale's Metrics library <https://github.com/rcrowley/go-metrics> Coda Hale's original work: <https://github.com/codahale/metrics>.
Package miner implements Ethereum block creation and mining.
Package geth contains the simplified mobile APIs to go-ethereum.
Package node sets up multi-protocol Ethereum nodes.
Package p2p implements the Ethereum p2p network protocols.
No description provided by the author
Package rlp implements the RLP serialization format.
Package rpc implements bi-directional JSON-RPC 2.0 on multiple transports.
No description provided by the author
Package tests implements execution of Ethereum JSON tests.
Package trie implements Merkle Patricia Tries.

# Variables

NotFound is returned by API methods if the requested item does not exist.

# Structs

CallMsg contains parameters for contract calls.
FilterQuery contains options for contract log filtering.
SyncProgress gives progress indications when the node is synchronising with the Ethereum network.

# Interfaces

ChainReader provides access to the blockchain.
ChainStateReader wraps access to the state trie of the canonical blockchain.
ChainSyncReader wraps access to the node's current sync status.
A ContractCaller provides contract calls, essentially transactions that are executed by the EVM but not mined into the blockchain.
GasEstimator wraps EstimateGas, which tries to estimate the gas needed to execute a specific transaction based on the pending state.
GasPricer wraps the gas price oracle, which monitors the blockchain to determine the optimal gas price given current fee market conditions.
LogFilterer provides access to contract log events using a one-off query or continuous event subscription.
PendingContractCaller can be used to perform calls against the pending state.
A PendingStateEventer provides access to real time notifications about changes to the pending state.
A PendingStateReader provides access to the pending state, which is the result of all known executable transactions which have not yet been included in the blockchain.
Subscription represents an event subscription where events are delivered on a data channel.
TransactionReader provides access to past transactions and their receipts.
TransactionSender wraps transaction sending.