Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
virtauniquecoin committed Jul 6, 2017
0 parents commit eceb395
Show file tree
Hide file tree
Showing 699 changed files with 334,385 additions and 0 deletions.
21 changes: 21 additions & 0 deletions COPYING
@@ -0,0 +1,21 @@
Copyright (c) 2017 VirtaUniqueCoin Developers
Copyright (c) 2011-2012 PPCoin Developers
Copyright (c) 2009-2014 Bitcoin developers

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 notice 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.
9 changes: 9 additions & 0 deletions INSTALL
@@ -0,0 +1,9 @@
Building virtauniquecoin

See doc/readme-qt.rst for instructions on building virtauniquecoin QT,
the intended-for-end-users, nice-graphical-interface, reference
implementation of virtauniquecoin.

See doc/build-*.txt for instructions on building virtauniquecoind,
the intended-for-services, no-graphical-interface, reference
implementation of virtauniquecoin.
1 change: 1 addition & 0 deletions README
@@ -0,0 +1 @@
README.md
31 changes: 31 additions & 0 deletions README.md
@@ -0,0 +1,31 @@
VUC offers several important features that Bitcoin does not. First, VUC rewards people for running a VUC node. Whereas Bitcoin transactions are completely traceable, VUC enables you to send coins anonymously. There is never any need to 'mix' or 'anonymize' your VUC — they are anonymous by default. VUC is fully integrated with VUC, which means that a snoop or attacker watching your internet connection will not know if you are using VUC and other VUC users cannot determine the physical location of your VUC node. VUC also offers encrypted end-to-end messaging between VUC users.


Coin Name: VirtaUniqueCoin
Coin Abbreviation: VUC
Coin Type: Pow-Pos
Hashing Algorithm: NIST5
Block Time: 120 seconds
Initial Block Reward: 25 VUC
Year interest: 5%
Premine Amount: 60,000,000 VUC
PoW Coins: 60,000,000 VUC
Supply: 120,000,000 VUC
Maximum Block Size: 1MB
PoS activation: after PoW end



RPC PORT 15700
P2P PORT 15702



Block structure

1: 60000000
2-800002 = 25
800003-2050002= 20
2050003-3050002 = 15


35 changes: 35 additions & 0 deletions share/genbuild.sh
@@ -0,0 +1,35 @@
#!/bin/sh

if [ $# -gt 0 ]; then
FILE="$1"
shift
if [ -f "$FILE" ]; then
INFO="$(head -n 1 "$FILE")"
fi
else
echo "Usage: $0 <filename>"
exit 1
fi

if [ -e "$(which git)" ]; then
# clean 'dirty' status of touched files that haven't been modified
git diff >/dev/null 2>/dev/null

# get a string like "v0.6.0-66-g59887e8-dirty"
DESC="$(git describe --dirty 2>/dev/null)"

# get a string like "2012-04-10 16:27:19 +0200"
TIME="$(git log -n 1 --format="%ci")"
fi

if [ -n "$DESC" ]; then
NEWINFO="#define BUILD_DESC \"$DESC\""
else
NEWINFO="// No build information available"
fi

# only update build.h if necessary
if [ "$INFO" != "$NEWINFO" ]; then
echo "$NEWINFO" >"$FILE"
echo "#define BUILD_DATE \"$TIME\"" >>"$FILE"
fi
Binary file added share/pixmaps/Thumbs.db
Binary file not shown.
Binary file added share/pixmaps/addressbook16.bmp
Binary file not shown.
Binary file added share/pixmaps/addressbook16mask.bmp
Binary file not shown.
Binary file added share/pixmaps/addressbook20.bmp
Binary file not shown.
Binary file added share/pixmaps/addressbook20mask.bmp
Binary file not shown.
Binary file added share/pixmaps/check.ico
Binary file not shown.
Binary file added share/pixmaps/favicon.ico
Binary file not shown.
Binary file added share/pixmaps/nsis-header.bmp
Binary file not shown.
Binary file added share/pixmaps/nsis-wizard.bmp
Binary file not shown.
Binary file added share/pixmaps/send16.bmp
Binary file not shown.
Binary file added share/pixmaps/send16mask.bmp
Binary file not shown.
Binary file added share/pixmaps/send16masknoshadow.bmp
Binary file not shown.
Binary file added share/pixmaps/send20.bmp
Binary file not shown.
Binary file added share/pixmaps/send20mask.bmp
Binary file not shown.
Binary file added share/pixmaps/virtauniquecoin-bc.ico
Binary file not shown.
Binary file added share/pixmaps/virtauniquecoin.ico
Binary file not shown.

0 comments on commit eceb395

Please sign in to comment.