Bitcoin Forum
May 02, 2024, 08:47:00 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 [57] 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 ... 149 »
  Print  
Author Topic: Re: [AXIOM] AxiomMemHash, Schnorr Sigs Implemented, APOS 3.0, AXH 2.0 Proposed  (Read 204910 times)
danilo303
Member
**
Offline Offline

Activity: 107
Merit: 10



View Profile
July 31, 2015, 06:09:47 AM
 #1121

How can I tell if I mined or staked?  Huh
1714639620
Hero Member
*
Offline Offline

Posts: 1714639620

View Profile Personal Message (Offline)

Ignore
1714639620
Reply with quote  #2

1714639620
Report to moderator
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
July 31, 2015, 06:12:05 AM
 #1122

How can I tell if I mined or staked?  Huh

3 Quick ways:

1) look at the reward size
2) see if some coins move to "stake" when the block is found
3) look at number of confirms
bitspill
Legendary
*
Offline Offline

Activity: 2058
Merit: 1015



View Profile
July 31, 2015, 06:19:23 AM
 #1123

What's the current build instructions after doing git clone https://github.com/axiomcryptocurrency/axiom on CentOS 6?

depends on what it is you want to build ...

a qt wallet or daemon ...

#crysx

Qt wallet on Linux is for sissies  Grin

damn - i MUST be a sissy then Wink ...

i use them in fedora - and daemon in vps / servers ...

#crysx

Daemon please

Assuming you have installed the proper dependencies:

Code:
git clone https://github.com/axiomcryptocurrency/axiom
cd axiom/src/
make -f makefile.unix


Not sure if it's still necessary but some people have needed to add a few mkdir's and a chmod.

Code:
git clone https://github.com/axiomcryptocurrency/axiom
cd axiom/src/
mkdir obj/secp256k1
mkdir obj/secp256k1/src
chmod +x leveldb/build_detect_platform
make -f makefile.unix

{ BitSpill }
Fuzzbawls
Hero Member
*****
Offline Offline

Activity: 750
Merit: 500



View Profile
July 31, 2015, 06:22:55 AM
 #1124

ahh yeah, forgot about the mkdir issue. when i just did a fresh clone a few minutes ago, the build_detect_platform script had the right mode set, but yeah..some people may need to make it executable
chrysophylax
Legendary
*
Offline Offline

Activity: 2814
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
July 31, 2015, 06:24:02 AM
 #1125

What's the current build instructions after doing git clone https://github.com/axiomcryptocurrency/axiom on CentOS 6?

depends on what it is you want to build ...

a qt wallet or daemon ...

#crysx

Qt wallet on Linux is for sissies  Grin

damn - i MUST be a sissy then Wink ...

i use them in fedora - and daemon in vps / servers ...

#crysx

Daemon please

if you have all the development tools installed - then that should be a simple build ...

cd /xxx/axiom/src/ ...
make -f makefile.unix ...

thats what you would normally do to compile the daemon ( axiomd ) ... BUT ... the devs at axiom missed a couple of very small details ...

first create two specific directories - and a specific file needs to be made executable ... i use full paths so i dont have issues - so ill illustrate that below using /chrysophylax/ as my main root path ...

mkdir /chrysophylax/axiom/src/obj/secp256k1/ ...
mkdir /chrysophylax/axiom/src/obj/secp256k1/src/ ...
chmod +x /chrysophylax/axiom/src/leveldb/build_detect_platform ...

THEN ...

cd /chrysophylax/axiom/src/ ...
make -f makefile.unix ...

when the compile finishes - there should be an axiomd file in the list ... move that axiomd file to a place you want it - and run it ...

./axiomd ...

that will create the relevant .axiom hidden folder in the users home directory ( the user you are currently logged into ) and it will start syncing ...

if there is an issue syncing ( which i had found when i first run it - for over an hour ) then use the node ip's that are listed previously ... simply change into the .axiom directory and create a file called axiom.conf ...

the contents of my file is below - but be sure to change the rpcuser and rpcpassword details ...

-------

rpcuser=chrysophylax
rpcpassword=x
rpcallowip=127.0.0.1
rpcport=
port=
gen=0
server=1
addnode=104.236.231.72
addnode=45.55.172.95
addnode=174.127.110.41
addnode=162.222.181.215

addnode=93.157.25.130
addnode=104.236.231.72
addnode=158.181.253.55
addnode=187.74.206.189
addnode=72.92.19.54
addnode=24.56.61.247
addnode=89.212.140.63
addnode=46.101.23.149
addnode=68.41.180.163
addnode=46.72.126.178
addnode=193.198.102.32
addnode=161.53.40.94
addnode=192.52.166.80
addnode=104.238.133.29
addnode=197.89.64.51
addnode=122.107.182.65
addnode=82.236.68.185
addnode=5.9.72.102
addnode=212.45.26.38
addnode=104.238.133.29
addnode=197.89.64.51

-------

i didnt want to sound like you were a complete novice at this - as i have no idea where you are at with linux ...

but i do hope this helps ...

#crysx

chrysophylax
Legendary
*
Offline Offline

Activity: 2814
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
July 31, 2015, 06:25:46 AM
 #1126

wow guys ...

as i was typing all that in response - you just slam dunked me with the method Wink ...

damn you guys are quick ...

still working on the dev donation links at the moment - so my time is taken with that currently ... which is why im slow in responding ...

that my excuse - and im sticking with it Wink ...

#crysx

bitspill
Legendary
*
Offline Offline

Activity: 2058
Merit: 1015



View Profile
July 31, 2015, 06:39:23 AM
 #1127

wow guys ...

as i was typing all that in response - you just slam dunked me with the method Wink ...

damn you guys are quick ...

You've gotta be quick to survive.

Jump on those ninja launches quick to catch the insta mine, make the early trade as soon as it hits the exchange, launch the first pool, launch the first miner, etc. Wink

{ BitSpill }
chrysophylax
Legendary
*
Offline Offline

Activity: 2814
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
July 31, 2015, 06:42:16 AM
 #1128

wow guys ...

as i was typing all that in response - you just slam dunked me with the method Wink ...

damn you guys are quick ...

You've gotta be quick to survive.

Jump on those ninja launches quick to catch the insta mine, make the early trade as soon as it hits the exchange, launch the first pool, launch the first miner, etc. Wink

i know ...

but thats not what im about - nor with all the projects that im involved in ... which includes the coin - the site - the farm ...

the long haul is what im looking for ... nothing less ...

so survival is only the beginning Smiley ...

#crysx

Fuzzbawls
Hero Member
*****
Offline Offline

Activity: 750
Merit: 500



View Profile
July 31, 2015, 06:45:12 AM
 #1129

wow guys ...

as i was typing all that in response - you just slam dunked me with the method Wink ...

damn you guys are quick ...

still working on the dev donation links at the moment - so my time is taken with that currently ... which is why im slow in responding ...

that my excuse - and im sticking with it Wink ...

#crysx

i actually installed centos in a VM and got it building while writing my response...slow poke! Wink
brightlight
Legendary
*
Offline Offline

Activity: 1288
Merit: 1000


View Profile
July 31, 2015, 06:48:44 AM
 #1130

Are deposits to Bittrex not working only for me?
chrysophylax
Legendary
*
Offline Offline

Activity: 2814
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
July 31, 2015, 06:57:08 AM
 #1131

wow guys ...

as i was typing all that in response - you just slam dunked me with the method Wink ...

damn you guys are quick ...

still working on the dev donation links at the moment - so my time is taken with that currently ... which is why im slow in responding ...

that my excuse - and im sticking with it Wink ...

#crysx

i actually installed centos in a VM and got it building while writing my response...slow poke! Wink

and im SOOO busy with other things like - ummm - errr - washing may hair ... which is why im so slow at responses Wink ...

no poke back - that was a really lame come back ...

bugger it - im going back to working on the servers and rebuild of the farm ...

i really should never have given up on my c++ and dev uni studies ...

ho hum ...

#crysx

xelbyb
Jr. Member
*
Offline Offline

Activity: 101
Merit: 1


View Profile
July 31, 2015, 06:57:42 AM
 #1132

Hello Axiom community,

State of the Coin Report

We know we've been a bit slow to respond and answer questions in the ANN today. We're a 3 person team and we work 12-14 hours a day on this project. If we were to choose a singular point we want to spread through the community it is that we're not Copy Pasta developers, majority of what we do is hand coded by us. Creating something NEW instead of mixing the same bag of features repeatedly is what we aim to do, and will succeed at. We're a long term project. We have been watching the ann and observing. We noticed a lot of people asking about the lengthy synchronization of the wallet. This is because of the increased security of this coin.

We have however tested our multi threaded sync and it works beautifully as designed from scratch. This will be a necessity all coins, and frankly it would make a large impact on bitcoins ease of use if utilized there. We're looking forward to releasing this and a few other tweaks shortly.

Our ANN rework is coming along and in the final stages, we will have a detailed paper on the current technology that we have in the coin, and a few things we are working on. Also, for those interested, we are writing a short paper on ECDSA technology, exploits and weaknesses and why other technology is necessary.

The network however is exceedingly strong, the wallet has over an absolutely incredible amount of people opening it, so many so that our current listing of nodes is struggling to keep up. We are adding more nodes now to handle the demand.

We're very excited to work on this project, the current price action does not phase us because we as developers know that the power to impact price rests firmly within our hands, and we plan to unleash that power.

Axiom Team


dream "ONLY CPU" We can forget?
AxiomCryptocurrency (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
July 31, 2015, 07:52:06 AM
 #1133

We've added 5 more node servers, 2 US, 2 EU, 1 in asia.

If you have any connection problems please add these to your axiom.conf:

addnode=104.197.49.247
addnode=104.197.64.168
addnode=130.211.74.245
addnode=104.155.34.235
addnode=107.167.189.225

LordPiccolo
Hero Member
*****
Offline Offline

Activity: 1022
Merit: 1000


View Profile
July 31, 2015, 08:10:53 AM
 #1134

We've added 5 more node servers, 2 US, 2 EU, 1 in asia.

If you have any connection problems please add these to your axiom.conf:

addnode=104.197.49.247
addnode=104.197.64.168
addnode=130.211.74.245
addnode=104.155.34.235
addnode=107.167.189.225



Nice work!

                                 
     ▄███████████████████████   
    █████████████████████████   
    █████████████████████████   
    ███████           ███████   
    ███████          ▄███████   
    ███████   ▄▄▄▄███████████   
    ████████████████████████▀   
    ███████████████████▀▀▀       
    █████████████▀▀▀             
    ███████▀▀                   
    █████▀▀                     
    ▀▀▀                         
                                 
.phore.
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
xD E L I V E R I N G   B L O C K C H A I N   T E C H N O L O G Yxx
xxxxxxxxxxxxxT O   T H E   R E A L   W O R L Dxxxxxxxxxxxxxx

██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
..Telegram....
..Facebook...
..Instagram...
..Youtube...
..LinkedIn...
..Twitter......
..Discord...
..Reddit.....
..Github.....
(██████████████████████████████
xphore.ioxx

██████████████████████████████████████
)
bitcrypto10101
Legendary
*
Offline Offline

Activity: 924
Merit: 1000



View Profile
July 31, 2015, 08:17:26 AM
 #1135

We've added 5 more node servers, 2 US, 2 EU, 1 in asia.

If you have any connection problems please add these to your axiom.conf:

addnode=104.197.49.247
addnode=104.197.64.168
addnode=130.211.74.245
addnode=104.155.34.235
addnode=107.167.189.225



Every day new nodes very good when I staking coins no rewards.   Huh
bitspill
Legendary
*
Offline Offline

Activity: 2058
Merit: 1015



View Profile
July 31, 2015, 08:18:21 AM
 #1136

when I staking coins no rewards.   Huh

How much are you staking?

High quantity of coins stands a better chance of staking.

{ BitSpill }
gaalx
Sr. Member
****
Offline Offline

Activity: 411
Merit: 250



View Profile
July 31, 2015, 08:24:32 AM
 #1137

AxiomCryptocurrency,
Your defense of the GPU is not working. Modify the code of the coin, or accept that the coin is not the CPU ONLY!

LordPiccolo
Hero Member
*****
Offline Offline

Activity: 1022
Merit: 1000


View Profile
July 31, 2015, 08:29:36 AM
 #1138

We've added 5 more node servers, 2 US, 2 EU, 1 in asia.

If you have any connection problems please add these to your axiom.conf:

addnode=104.197.49.247
addnode=104.197.64.168
addnode=130.211.74.245
addnode=104.155.34.235
addnode=107.167.189.225



Every day new nodes very good when I staking coins no rewards.   Huh

How many coins do you have staking? and what size chunks are they in?

I have had stakes right down to 250 coins in a chunk so far. Staking works well

                                 
     ▄███████████████████████   
    █████████████████████████   
    █████████████████████████   
    ███████           ███████   
    ███████          ▄███████   
    ███████   ▄▄▄▄███████████   
    ████████████████████████▀   
    ███████████████████▀▀▀       
    █████████████▀▀▀             
    ███████▀▀                   
    █████▀▀                     
    ▀▀▀                         
                                 
.phore.
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
xD E L I V E R I N G   B L O C K C H A I N   T E C H N O L O G Yxx
xxxxxxxxxxxxxT O   T H E   R E A L   W O R L Dxxxxxxxxxxxxxx

██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
..Telegram....
..Facebook...
..Instagram...
..Youtube...
..LinkedIn...
..Twitter......
..Discord...
..Reddit.....
..Github.....
(██████████████████████████████
xphore.ioxx

██████████████████████████████████████
)
Rabinovitch
Legendary
*
Offline Offline

Activity: 2030
Merit: 1076


BTCLife.global participant


View Profile
July 31, 2015, 08:37:08 AM
 #1139


Your defense of the GPU is not working. Modify the code of the coin, or accept that the coin is not the CPU ONLY!

What?.. Another scamcoin?.. It's sad.

From Siberia with love! Hosting by Rabinovitch!
Fundraising for BOINC Farm
Пpoфeccиoнaльнo зaнимaюcь paзвёpтывaниeм фepм (ASIC, GPU, BURST, STORJ, Filecoin), oбopyдoвaниeм пoмeщeний для мaйнингa.
markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
July 31, 2015, 08:41:17 AM
 #1140

This size of chunks concept... I have noticed in various threads about proof of stake coins discussions that seem to refer to more than just how many of a coin you leave in any one staking wallet.

Some even seem to have some kind of automatic chopping up of "coins", presumably outputs or something like that?

Some even have users talking about various plans to manually re-arrange their coins within one wallet to help or hinder staking.

So I am wondering is all that done for us automagically here or do we need to worry about fidgeting around in our wallets to stake efficiently / effectively?

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
Pages: « 1 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 [57] 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 ... 149 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!