All Projects → monax → Monax

monax / Monax

Licence: gpl-3.0
DEPRECATED. To be removed December, 2018 (use monax/bosmarmot)

Programming Languages

golang
3204 projects
solidity
1140 projects

Projects that are alternatives of or similar to Monax

Pyquarkchain
Python implementation of QuarkChain
Stars: ✭ 194 (-27.88%)
Mutual labels:  blockchain, ethereum, evm
Burrow
https://wiki.hyperledger.org/display/burrow
Stars: ✭ 851 (+216.36%)
Mutual labels:  blockchain, ethereum, evm
Ruby Ethereum
A Ruby implementation of Ethereum.
Stars: ✭ 270 (+0.37%)
Mutual labels:  blockchain, ethereum, evm
Ette
EVM-based Blockchain Indexer, with historical data query & real-time notification support 😎
Stars: ✭ 37 (-86.25%)
Mutual labels:  blockchain, ethereum, evm
Remix Project
Remix is a browser-based compiler and IDE that enables users to build Ethereum contracts with Solidity language and to debug transactions.
Stars: ✭ 225 (-16.36%)
Mutual labels:  blockchain, ethereum, evm
Evmone
Fast Ethereum Virtual Machine implementation
Stars: ✭ 162 (-39.78%)
Mutual labels:  blockchain, ethereum, evm
Intellij Solidity
Solidity plugin for IntelliJ
Stars: ✭ 646 (+140.15%)
Mutual labels:  blockchain, ethereum, evm
Remix
This has been moved to https://github.com/ethereum/remix-project
Stars: ✭ 1,063 (+295.17%)
Mutual labels:  blockchain, ethereum, evm
Chaingear
The consensus computer driven database framework
Stars: ✭ 83 (-69.14%)
Mutual labels:  blockchain, ethereum, evm
Remix Ide
Documentation for Remix IDE
Stars: ✭ 1,768 (+557.25%)
Mutual labels:  blockchain, ethereum, evm
Armors Solidity
Armors-solidity is a framework to build secure smart contracts on Ethereum.
Stars: ✭ 184 (-31.6%)
Mutual labels:  blockchain, ethereum, evm
Smart Contract Search Engine
Takes a link to a smart contract's raw ABI file and an RPC URL and then indexes all instances of that smart contract
Stars: ✭ 265 (-1.49%)
Mutual labels:  blockchain, ethereum
Arc
Arc is an operating system for DAOs.
Stars: ✭ 190 (-29.37%)
Mutual labels:  blockchain, ethereum
Loom Js
JS library for building browser apps & NodeJS services that interact with Loom DAppChains
Stars: ✭ 189 (-29.74%)
Mutual labels:  blockchain, ethereum
Client
The nOS Client
Stars: ✭ 202 (-24.91%)
Mutual labels:  blockchain, ethereum
Manticore
Symbolic execution tool
Stars: ✭ 2,599 (+866.17%)
Mutual labels:  blockchain, ethereum
Ethermint
Ethermint is a scalable and interoperable Ethereum, built on Proof-of-Stake with fast-finality using the Cosmos SDK.
Stars: ✭ 207 (-23.05%)
Mutual labels:  blockchain, ethereum
Protocol
Enzyme Protocol Implementation
Stars: ✭ 211 (-21.56%)
Mutual labels:  blockchain, ethereum
Blockchain Stuff
Blockchain and Crytocurrency Resources
Stars: ✭ 2,549 (+847.58%)
Mutual labels:  blockchain, ethereum
Ethwallet
A ethereum wallet like imToken
Stars: ✭ 190 (-29.37%)
Mutual labels:  blockchain, ethereum

Introduction

Monax is an application platform for building, testing, maintaining, and
operating applications built to run on an ecosystem level.

monax is a tool which makes it easy for developers to build, test, manage, and operate smart contract applications. No matter the blockchain.

For the motivation behind this tool see this post.

Install (For Developers)

  • Install Docker.
  • Install Go.
go get github.com/monax/monax/cmd/monax
monax init

See below for the directory structure created by init.

Install (For Non-Developers)

Please see our getting started page for those who are not familiar with go and/or docker.

Overview

The monax tool is centered around a very few concepts:

  • services — things that you turn on or off
  • chains — develop permissioned chains
  • pkgs — our smart contract tool chain
  • keys — wrapping of our key management tooling

These concepts provide the core functionality of what we think a true smart contract application platform requires.

To get started using monax to see what the tooling can do and how it can help your development patterns for smart contract applications, please see our tutorial series.

Architecture of the Tool

monax is mostly an opinionated wrapper around Docker's API. We have found that running applications locally which require sophisticated installation paths and/or complex configuration work best when used from Docker's container based system.

Each of the concepts listed above is described in a bit more detail below.

Services

Services are "things that you turn on or off". Examples of services include:

  • a PGP daemon
  • an IPFS node
  • a Bitcoin node
  • an Ethereum node
  • a Tendermint test chain node
  • BigchainDB service
  • ZCash node

Services work from a base of service definition files. These files are held on the host in the following location: ~/.monax/services. Service definition files tell monax how a docker container should be started. The specification for service definition files is located here.

To see the various ways in which monax can interact with services, please type:

monax services

Chains

Chains are an opinionated toolchain around permissioned chains. They can be most easily thought of as your "develop" branch for chains. In other words, if you need to work on a permissioned chain, then it is best to use monax chains. Chains hardcode most of the service starting criteria, but still allow for some flexibility as to how chains are worked with.

To see the various ways in which monax can help you develop chains, please type:

monax chains

Pkgs

Pkgs are an opinionated toolkit to help you deploy and test your smart contract packages on both permissioned and unpermissioned blockchain networks.

monax pkgs is a package manager to deal with contracts. The package manager is a yaml based automation framework which makes it trivial to deploy and test your smart contract systems. The specification for monax:jobs definition files is located here.

Pkgs give you access to test your smart contracts both against "throwaway chains" which are one time use chains that are needed for the sole purpose of testing smart contract packages, as well as existing blockchain networks.

To see the various ways in which monax can help you develop smart contract applications, please type:

monax pkgs

Keys

Keys is an opinionated toolchain around monax-keys. Please note that this concept of the monax platform is for development only and should not be used in production because it has not been fully security audited and we do not plan for it to be. In production the keys service should be replaced with your audited security system of choice.

To see the various ways in which monax can help you manage your various key pairs, please type:

monax keys

Directory Structure

Created by monax init in $HOME directory:

├── .monax/
│   ├── monax.toml
│   ├── apps/
│   ├── bundles/
│   ├── chains/
│       ├── account-types/
│       ├── chain-types/
│   ├── keys/
│       ├── data/
│       ├── names/
│   ├── scratch/
│       ├── data/
│       ├── languages/
│   ├── services/
│       ├── keys.toml

Contributions

Are Welcome! Before submitting a pull request please:

  • fork from develop
  • go fmt your changes
  • have tests
  • pull request
  • be awesome

See our CONTRIBUTING.md and PULL_REQUEST_TEMPLATE.md for more details.

Please note that this repository is GPLv3.0 per the LICENSE file. Any code which is contributed via pull request shall be deemed to have consented to GPLv3.0 via submission of the code (were such code accepted into the repository).

Bug Reporting

Found a bug in our stack? Make an issue!

The issue template specifies what needs to be included in your issue and will autopopulate the issue.

License

Proudly GPL-3. See license file

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].