Bitcoin Forum
June 22, 2024, 09:19:45 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 »
1  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: BitShares true story 3 on: October 27, 2017, 02:16:26 PM
This thread was started to help prevent a similar situation affecting the Bitshares community:

https://bitsharestalk.org/index.php/topic,25197.msg311952.html#msg311952

Bitshares Token holders can vote to remove anyone in a position of influence that could be in a direct conflict of interest with the Bitshares Blockchain.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: June 06, 2016, 04:47:59 PM
A little Greencoin promotion.

My Favourite Miner post on Steemit.



3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: May 08, 2016, 12:17:22 PM
exchanges?

Chris

Please have a look at Openledger / BitShares as an exchange.

https://openledger.info/

You can talk to the CEO of Openledger on telegram if you are intrested - https://telegram.me/joinchat/BYoMpwH95HL-crZbLpMiAA
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][STEEM][POW] - NO IPO | NO PREMINE | NO INSTAMINE (relaunch) on: April 23, 2016, 07:40:41 PM
Seed and Witness nodes have been updated to the latest code on "git checkout master"
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][STEEM][POW] - NO IPO | NO PREMINE | NO INSTAMINE (relaunch) on: April 19, 2016, 05:00:51 PM
My STEEM witness information is on the blockchain  Smiley
6  Alternate cryptocurrencies / Altcoin Discussion / Re: Run Your Own P2P Decentralised Exchange Node on: March 29, 2016, 12:42:25 PM
This type of error ( 'libraries/fc'):
Code:
git submodule update --init --recursive
fatal: reference is not a tree: 31adee49d91275cc63aa3a47b3a9e3c826baccca
Unable to checkout '31adee49d91275cc63aa3a47b3a9e3c826baccca' in submodule path 'libraries/fc'
can be bypassed by the following code:
Code:
cd libraries/fc
git checkout master
git pull
git submodule update --init --recursive
cd ../..
cmake -D CMAKE_BUILD_TYPE=Release .
make witness_node cli_wallet
7  Alternate cryptocurrencies / Altcoin Discussion / Re: Run Your Own P2P Decentralised Exchange Node on: March 24, 2016, 01:04:51 PM
To update the P2P Decentralised Exchange Node (hard fork)

Ctrl+d to close cli_wallet (if your running it)
Ctrl+c to close the witness_node

Then run the following code to update:
Code:
# update the P2P node software (fork update)
cd bitshares-2
git checkout bitshares
git describe --tags
git submodule update --init --recursive
make clean
cmake -D CMAKE_BUILD_TYPE=Release .
make witness_node cli_wallet

for easy blockchain startup:
Code:
#mkdir ~/bin
strip ./programs/witness_node/witness_node
strip ./programs/cli_wallet/cli_wallet
cp ./programs/witness_node/witness_node ~/bin
cp ./programs/cli_wallet/cli_wallet ~/bin

then restart  the P2P Decentralised Exchange Node:
Code:
#in git folder
~/bitshares-2/programs/witness_node/witness_node --rpc-endpoint "127.0.0.1:8090" # will allow only your computer's wallet to connect to the blockchain

# or if you copied witness_node to your bin folder for easy blockchain startup
# cd to your bts folder
cd ~/bts
witness_node --rpc-endpoint "127.0.0.1:8090"

Your witness_node should replay the blockchain for the hard fork
8  Alternate cryptocurrencies / Altcoin Discussion / Re: Run Your Own P2P Decentralised Exchange Node on: February 16, 2016, 11:17:38 PM

Very nice. I will try it tonight.

Enjoy the new code - 2.0.160216 was released today. 
If anyone needs help, please feel free ask/post in this thread.
9  Alternate cryptocurrencies / Altcoin Discussion / Run Your Own P2P Decentralised Exchange Node on: February 16, 2016, 09:43:56 AM
You can now run your own decentralised exchange node and trade:

BTC LTC DOGE DASH PPC ETH NXT MUSE NSR NBT EMC EGH GOLD SILVER USD EUR
CNY GBP ...

all using a Light Wallet with built-in deposit/Withdraw and FIAT gateway.

A few steps will have you up and running. The system uses a Light
Wallet which can connect to trusted secure servers or your own local
blockchain (run from the command line).

P2P Decentralised Exchange Node setup for Ubuntu x64 15.10 - ( copy and paste to your terminal )
You can run on your own computer, a local server, VPS or VirtualBox.

Code:
###
### 1. Download the software to build for Ubuntu Linux x64 using git:
###

# update your system and install ntp
sudo apt-get update && sudo apt-get -y upgrade
sudo apt-get install ntp
sudo dpkg-reconfigure tzdata # to set your time zone

# Install the build tools
sudo apt-get install gcc g++ cmake make libbz2-dev libdb++-dev libdb-dev
libssl-dev openssl libreadline-dev autoconf libtool git libncurses-dev
build-essential kernel-package libncurses-dev doxygen libboost-all-dev
autotools-dev automake

# you may have to run this on a fresh install and reboot
#sudo dpkg --configure -a
#sudo reboot

# download the P2P node software
git clone https://github.com/bitshares/bitshares-2.git

# build the P2P node software
cd bitshares-2
git checkout bitshares
git describe --tags
git submodule update --init --recursive
cmake -D CMAKE_BUILD_TYPE=Release .
make witness_node cli_wallet





Code:
###
### 2. Run your new P2P Decentralised Exchange Node
###

~/bitshares-2/programs/witness_node/witness_node --rpc-endpoint "127.0.0.1:8090" # will allow only your computer's wallet to connect to the blockchain
# ~/bitshares-2/programs/witness_node/witness_node --rpc-endpoint "0.0.0.0:8090" # will allow anyone to connect their wallet to your copy of the blockchain

# you can also strip and copy witness_node to your bin folder for easy blockchain startup

mkdir ~/bin
strip ./programs/witness_node/witness_node
strip ./programs/cli_wallet/cli_wallet
cp ./programs/witness_node/witness_node ~/bin
cp ./programs/cli_wallet/cli_wallet ~/bin



Check the block explorer for the latest block http://cryptofresh.com/

I have used VirtualBox to run the blockchain on Ubuntu
Remember to install openssh and forward ports in VirtualBox host
Network settings then ssh in
# ssh user@127.0.0.1 -p 3022 # you can use putty on windoze



###
### 3. The fun part - download the light wallet software for your OS
###

# Download the light wallet here
https://bitshares.org/download/?r=by24seven

# Tutorial
https://bitshares.org/register/

Set your user name and password (if you found the post useful, you could add by24seven as your Referrer and get a few Free PERKS too)

# Connect to your local chain after it has synced
In the light wallet under settings * API CONNECTION click on wss://bitshares.openledger.info/ws and change it to your own blockchain node from part 2

# linux
ws://127.0.0.1:8090
or
ws://localhost:8090

# VirtualBox linux
ws://localhost:3022

# or server ip
ws://localserverip:8090

Then click CONFIRM

* if you are using a VPS it is recommended you use ssh to connect to the API eg: ssh -L 6080:localhost:8090 user@vpsserverip
then connect to the API with ws://localhost:6080 in the light wallet



Welcome to your own Decentralised Exchange



More help can be found here:
http://docs.bitshares.eu/
https://bitsharestalk.org/index.php/board,45.0.html

Enjoy!

# if you are lazy you can use these Decentralised Exchanges in your chromium browser! (no need to install software and a few Free PERKS too)

https://bitshares.org/wallet/?r=by24seven
https://bitshares.openledger.info/?r=by24seven
https://bitshares.dacplay.org/?r=by24seven

Remember to back-up your wallet, as only you have the private keys to access your funds to trade on all these Decentralised Exchanges.

10  Bitcoin / Project Development / Re: [BETA] Coinffeine. Distributed Bitcoin exchange. on: February 15, 2016, 06:54:57 PM
You can now run your own decentralised exchange node and trade: https://bitcointalk.org/index.php?topic=1365729
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: January 09, 2016, 06:01:50 PM
Code:
"connections" : 0
Could someone run 'getpeerinfo' in the console and post here.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: January 06, 2016, 09:35:19 PM
50% green tax  Shocked  Grin

13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: January 06, 2016, 12:36:13 PM
Is there a list of nodes or could someone run 'getpeerinfo' in the console and post here.
So I can add more with 'addnode'
Thanks
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: January 05, 2016, 05:11:36 PM
Great work Ahmed!

Built on Archlinux-ARM - now running POS 24/7

Code:
greencoind getinfo
{
    "version" : "v1.2.1-46-gedf33c1",
    "protocolversion" : 60018,
    "walletversion" : 60000,
    "balance" : 10590099.27780274,
    "newmint" : 0.00000000,
    "stake" : 0.00000000,
    "blocks" : 298,
    "timeoffset" : 0,
    "moneysupply" : 1616548641.00000000,
    "connections" : 1,
    "proxy" : "",
    "ip" : "0.0.0.0",
    "difficulty" : {
        "proof-of-work" : 0.00045563,
        "proof-of-stake" : 0.00024414
    },
    "testnet" : false,
    "keypoololdest" : 1451659238,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00000000,
    "unlocked_until" : 1462013178,
    "errors" : ""
}
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: January 05, 2016, 04:10:28 PM
Built grev2.0-7-gedf33c1 on archlinux.

All my funds are listed with 1 active connection.


Also building on archlinux-ARM for 24/7 POS
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: January 03, 2016, 01:42:56 PM
anyone past block 193

Code:
{
"version" : "v1.2.1-45-gc67442b",
"protocolversion" : 60017,
"walletversion" : 60000,
"balance" : 0.00000000,
"newmint" : 0.00000000,
"stake" : 0.00000000,
"blocks" : 193,
"timeoffset" : 0,
"moneysupply" : 1616548640.99990010,
"connections" : 1,
"proxy" : "",
"ip" : "0.0.0.0",
"difficulty" : {
"proof-of-work" : 0.00044611,
"proof-of-stake" : 0.00024414
},
"testnet" : false,
"keypoololdest" : 1451659238,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"mininput" : 0.00000000,
"unlocked_until" : 0,
"errors" : ""
}
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin - A Tradeable Carbon Credit Ecosystem on: January 03, 2016, 12:06:24 PM
2 nodes up, syncing slowly and running on:

git describe --tags
grev2.0-6-gc67442b


13:05:36

{
"version" : "v1.2.1-45-gc67442b",
"protocolversion" : 60017,
"walletversion" : 60000,
"balance" : 0.00000000,
"newmint" : 0.00000000,
"stake" : 0.00000000,
"blocks" : 98,
"timeoffset" : 0,
"moneysupply" : 1616548640.99990010,
"connections" : 1,
"proxy" : "",
"ip" : "0.0.0.0",
"difficulty" : {
"proof-of-work" : 0.00061567,
"proof-of-stake" : 0.00024414
},
"testnet" : false,
"keypoololdest" : 1451659238,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"mininput" : 0.00000000,
"unlocked_until" : 0,
"errors" : ""
}
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NODE Revolution: "Money is a means of payment, not speculation" (с) on: September 04, 2015, 07:24:44 PM
Fork it
19  Bitcoin / Project Development / Re: [BETA] Coinffeine. Distributed Bitcoin exchange. on: July 27, 2015, 04:27:27 PM
OKpay balance is _.__EUR in Coinffeine but I have EUR in my OKpay wallet.

Changed wallet - deleted user-settings.conf went through setup wizard again.

Still no EUR


Same thing happened to me. Try this:

Quote

Input your OKPay account ID and password manually.


Thanks for the info.

Tried this, even setup a wallet just for Coinffeine. Still getting _.__EUR


Please check this manual to configure your okpay account manually:

http://support.coinffeine.com/knowledgebase/articles/626628-how-to-set-up-your-okpay-account-in-coinffeine

Regards,


Followed the manual to configure okpay manually - same result - _.__EUR

Deleted ~/.coinffeine/ started again - coinffeine retrieved the id and token correctly (I checked user-settings.conf) - same result - _.__EUR

Set up different wallet manually and checked user-settings.conf - same result - _.__EUR

I would like to test and use this new service.

Software was installed via https://aur4.archlinux.org/packages/coinffeine/
20  Bitcoin / Project Development / Re: [BETA] Coinffeine. Distributed Bitcoin exchange. on: July 22, 2015, 08:49:26 AM
OKpay balance is _.__EUR in Coinffeine but I have EUR in my OKpay wallet.

Changed wallet - deleted user-settings.conf went through setup wizard again.

Still no EUR


Same thing happened to me. Try this:

Quote

Input your OKPay account ID and password manually.


Thanks for the info.

Tried this, even setup a wallet just for Coinffeine. Still getting _.__EUR
Pages: [1] 2 3 4 5 6 7 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!