Maxonrow is the sole main chain service provider in the world to offer real-name identity verification for KYC process and AML safety measures. Its a blockchain powered by Tendermint & Cosmos-SDK. We utilize GDPOS (Governed Delegated Proof of Stake) as a consensus mechanism, which is a mechanism of equity entrustment unique to Maxonrow.
Prerequisites
-
Clone the project repository
git clone https://github.com/mxw-blockchain/maxonrow-go/ -
Change to the project directory.
cd github.com/mxw-blockchain/maxonrow-go/ -
Get all the dependecies and build project the binary
make all
-
Initial the blockchain network with a valid chain-id. Below command which genrate the config,genesis and account in respective folder
./build/mxwd init --home ~/.mxw -
Generate validator transcation. Below command which create the gentx folder with gentx transcation of validator account-1
./build/mxwd gentx --name acc-1 --home ~/.mxw -
Run the blockchain using the below command
./build/mxwd start --home ~/.mxw
-
Get all the account details
./build/mxwcli keys list --home ~/.mxw -
Query the account
mxwcli query account $(mxwcli keys show account1 --address) --chain-id mxw, which verify the balance of account1 -
Send Transaction
mxwcli tx send --amount 100MXW --from $(mxwcli keys show account1 --address) --to $(mxwcli keys show account2 --address) --fees 1MXW --gas 0 --memo "TRANSFER 10-MXW" --chain-id mxw
MXWONROW come with the many test cases,you can find all our test case under test folder in project soruce.
-
To run our test case:
make test