Giter VIP home page Giter VIP logo

agama's Introduction

VerusCoin version 1.2.3-2

Arguably the world's most advanced technology, zero knowledge privacy enabled, multi-chain blockchain protocol, Verus Public Blockchains as a Service (PBaaS) combines Sapling zero knowledge technology with an intelligent, multi-chain, provable protocol, using interchain smart transactions. Verus PBaaS also enables merge mining and cross-chain staking with a completely original, combined proof of stake/proof of work consensus algorithm, Proof of Power, that can be mined on CPUs and mobile phones, and also solves the nothing at stake problem. With this and its approach towards CPU mining and ASICs, Verus Coin strives to be one of the most naturally decentralizing and attack resistant blockchain networks in existence.

VerusCoin web site and VerusCoin Explorer.

Our Vision.

VerusCoin

This software is the VerusCoin p2p node and client. Generally, you will use this if you want to mine VRSC or setup a full node. When you run the wallet it launches verusd automatically. On first launch it downloads Zcash parameters, roughly 1GB, which is relatively slow.

The daemon downloads and stores the block chain of the PBaaS chain you select on load, using the -chain= parameter. It downloads and stores the entire history of the coins transactions; depending on the speed of your computer and network connection, the synchronization process could take a day or more once the blockchain has reached a significant size.

Development Resources

Tech Specification

  • Launch Date May 21, 2018
  • Max Supply: 83,540,184 VRSC
  • Block Time: 1M
  • Block Reward: variable 24 on December 20, 2018
  • Mining Algorithm: VerusHash 2.0
  • Consensus 50% PoW, 50% PoS
  • Transaction Fee 0.0001
  • Privacy: Zcash Sapling
  • dPOW on Komodo blockchain
  • CheatCatcher distributed stake cheating detector

About this Project

VerusCoin is based on Komodo which is based on Zcash and has been extended by our innovative consensus staking and mining algorithms and a novel 50% PoW/50% PoS approach.

Many VRSC innovations are now also available back in the Komodo fork:

  • Eras
  • Timelocking
  • VerusHash
  • VerusPoS
  • 50% PoS/50% PoW

More details including a link to our vision and white papers and client downloads are available on our web site

Getting started

Dependencies

#The following packages are needed:
sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git zlib1g-dev wget bsdmainutils automake curl

ARMv8 cross-compile

#The following packages are needed:
sudo apt-get install build-essential pkg-config linux-libc-dev-arm64-cross m4 autoconf g++-aarch64-linux-gnu binutils-aarch64-linux-gnu libtool ncurses-dev unzip git zlib1g-dev wget bsdmainutils automake curl

Windows cross-compile

#The following packages are needed:
sudo apt-get install autoconf automake autogen bsdmainutils cmake curl git libc6-dev libcap-dev libdb++-dev libqrencode-dev libprotobuf-dev libssl-dev libtool libz-dev libbz2-dev m4 make mingw-w64 ncurses-dev pkg-config protobuf-compiler unzip wget zip zlib1g-dev 

Building

First time you'll need to get assorted startup values downloaded. This takes a moderate amount of time once but then does not need to be repeated unless you bring a new system up. The command is:

zcutil/fetch-params.sh

Building for Linux:

zcutil/build.sh

Building for Mac OS/X (see README-MAC.md):

zcutil/build-mac.sh

Building for Windows:

zcutil/build-win.sh

VerusCoin

We develop on dev and some other branches and produce releases of of the master branch, using pull requests to manage what goes into master. The dev branch is considered the bleeding edge codebase, and may even be incompatible from time to time, while the master-branch is considered tested (unit tests, runtime tests, functionality). At no point of time do the Komodo Platform developers or Verus Developers take any responsibility for any damage out of the usage of this software.

Verus builds for all operating systems out of the same codebase. Follow the OS specific instructions from below.

Linux

git clone https://github.com/VerusCoin/VerusCoin
cd VerusCoin
#you might want to: git checkout <branch>; git pull
./zcutil/fetch-params.sh
# -j8 = using 8 threads for the compilation - replace 8 with number of threads you want to use
./zcutil/build.sh -j8
#This can take some time.

Linux ARMv8 Cross-compile

git clone https://github.com/VerusCoin/VerusCoin
cd VerusCoin
#you might want to: git checkout <branch>; git pull
./zcutil/fetch-params.sh
# -j8 = using 8 threads for the compilation - replace 8 with number of threads you want to use
HOST= aarch64-linux-gnu ./zcutil/build.sh -j8
#This can take some time.

#To view all commands ./src/verus help

#To view verusd debug output:

tail -f ~/.komodo/VRSC/debug.log

Note that this directory is correct for Linux, not Mac or Windows. Coin info for Verus is stored in ~/.komodo/VRSC under Ubuntu/Linux.

For Windows coin info for Verus is stored under \Users\AppData\Roaming\Komodo\VRSC

For Mac coin info for Verus is stored under ~/Library/Application\ Support/Komodo/VRSC

The VerusCoin project and protocol is experimental and a work-in-progress. Use this source code and software at your own risk.

Always back your wallets up carefully and securely, especially before attempting the following process

In some cases, messed up wallets can be recovered using this process

  • backup wallet.dat safely and securely
  • backup all privkeys (launch komodod with -exportdir=<path> and dumpwallet)
  • start a totally new sync including wallet.dat, launch with same exportdir
  • stop it before it gets too far and import all the privkeys from a) using verus importwallet filename
  • resume sync till it gets to chaintip

For example:

./verusd -exportdir=/tmp &
./verus dumpwallet example
./verus stop
mv ~/.komodo/VRSC ~/.komodo/VRSC.old && mkdir ~/.komodo/VRSC && cp ~/.komodo/VRSC.old/VRSC.conf ~/.komodo/VRSC.old/peers.dat ~/.komodo/VRSC
./verusd -exchange -exportdir=/tmp &
./verus importwallet /tmp/example

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notices and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

agama's People

Contributors

alrighttt avatar aseandude avatar asherda avatar ca333 avatar davidldawes avatar devopsacid avatar emmnx avatar hypocalese avatar justbeingjustin avatar lucioric2000 avatar lukechilds avatar lumberscout avatar magnacoinx avatar metaspartan avatar michaeltout avatar miketout avatar mm21 avatar particle4dev avatar pbca26 avatar pedjaman avatar pioryan avatar satindergrewal avatar sawlysawly avatar siulynot avatar st3rling0x avatar webworker01 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

agama's Issues

Seed Phrase not restoring my wallet

Recently installed Agama Verus wallet on a new computer. I select Lite, then KMD, but my wallet name does not come up. I then enter either the seed phrase or the password. Both give me access to a wallet with no name, a different public address than before, and no balances, or transactions. Any help would be greatly appreciated, Thank you

Wrong logo and unsupported address formats about DigiByte

Agama wallet has old DigiByte logo that is no longer used. Here is the new logo: https://raw.githubusercontent.com/DigiByte-Core/digibyte-logos/master/Logos%20Bitmap/transparent%20bg/ClearBg%20DigiByte.png

In addition, the wallet does not support sending to "S" prefixed p2sh multisig/segwit and "dgb1" prefixed bech32 native segwit DigiByte addresses. These addresses are widely used. All non segwit DGB nodes have been left behind with the Odocrypt hard fork, therefore there is no reason not to support them.

transfer problem

I have my redfoxx labs coins on native agama wallet but when I go to transfer it to my Verus mobile for the swap it comes up
invalid pub key

"invalid pub address" on zcash

Created a wallet using 12 word seed.
Added zcash wallet.
Deposited zcash to the generated address.
When I try to send the zcash to an address it throws an "invalid pub address" error.
Is this a known issue?

Seed stolen/compromised from computer

Hello - Just checked my Agama Verus Wallet -- I had transferred 1280 KMD to it from the original Agama wallet after that hacking incident back in 2018. The 1280 coins that I put in the new wallet to keep safe have been removed by someone unknown to me on March 14, 2020.
I believe I have been hacked and I don't know what to do to recover my coins. Can someone steer me in the right direction. I can provide all the information of the send transaction.
image

Agama wallet

I have Komodo in my Agama wallet and I had been able to collect additional coins about once per month. Now I am not getting any rewards. Can you tell me what might have happened? Thanks.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.