Categorygithub.com/axis-cash/go-axis
modulepackage
1.0.3-rc3
Repository: https://github.com/axis-cash/go-axis.git
Documentation: pkg.go.dev

# README

Go Axis

The AXIS system is the world's first blockchain platform to support confidential transactions based on Zero-knowledge proof and supports Turing complete smart contracts.

What's AXIS

https://wiki.axis.cash/en/index.html?file=home-Home

From source code -- base on CentOS7

https://wiki.axis.cash/en/index.html?file=Start/from-the-sourcecode-base-on-centos7

How to mine using gaxis

https://wiki.axis.cash/en/index.html?file=Start/from-the-binary-package

Now You don't need license anymore to mine AXIS.

How to use snapshots

https://wiki.axis.cash/en/index.html?file=Start/axis-chain-snapshot-list

How to start AXIS Staking on gaxis

https://wiki.axis.cash/en/index.html?file=Tutorial/how-to-staking-using-gaxis

Decentralized light wallet

PC: https://github.com/axis-cash/pullup

Mobile: https://axis.cash/app/popup.html

POW pool list

https://wiki.axis.cash/en/index.html?file=Start/axis-pool-list

PoS stake node List

https://wiki.axis.cash/en/index.html?file=Start/stake-node-list

Contribution

Thank you for considering to help out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes!

If you'd like to contribute to go-axis, please fork, fix, commit and send a pull request for the maintainers to review and merge into the main code base.

Please make sure your contributions adhere to our coding guidelines:

  • Code must adhere to the official Go formatting guidelines (i.e. uses gofmt).
  • Code must be documented adhering to the official Go commentary guidelines.
  • Pull requests need to be based on and opened against the master branch.
  • Commit messages should be prefixed with the package(s) they modify.
    • E.g. "axis, rpc: make trace configs optional"

Please see the Developers' Guide for more details on configuring your environment, managing project dependencies and testing procedures.

Community resources

Wechat: AXIS9413

Discord: https://discord.gg/n5HVxE

Twitter: https://twitter.com/AXISdotCASH

Telegram: https://t.me/AxisOfficial

Gitter: https://gitter.im/axis-cash/Lobby?utm_source=share-link&utm_medium=link&utm_campaign=share-link

Other resources

Official Website: https://axis.cash

White Paper: http://axis-media.s3-website-ap-southeast-1.amazonaws.com/Axis_ENG_V1.06.pdf

WIKI: https://wiki.axis.cash/zh/index.html?file=home-Home

Block Explorer: https://explorer.web.axis.cash/blocks.html

Introduction Video: https://v.qq.com/x/page/s0792e921ok.html

License

The go-axis library (i.e. all code outside of the cmd directory) is licensed under the GNU Lesser General Public License v3.0, also included in our repository in the COPYING.LESSER file.

The go-axis binaries (i.e. all code inside of the cmd directory) is licensed under the GNU General Public License v3.0, also included in our repository in the COPYING file.

Note: Go Axis inherit with licenses of ethereum.

# Packages

Package accounts implements high level Axis account management.
Package axis implements the Axis protocol.
Package axisclient provides a client for the Ethereum RPC API.
No description provided by the author
Package axisstats implements the network stats reporting service.
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
Package core implements the Ethereum consensus protocol.
No description provided by the author
No description provided by the author
Package event deals with subscriptions to real-time events.
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 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 provides access to the exported methods of an object across a network or other I/O connection.
Package tests implements execution of Ethereum JSON tests.
Package trie implements Merkle Patricia Tries.
Package ethapi implements the general Ethereum API functions.
No description provided by the author

# 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.