Author

Topic: Re: [AXIOM] AxiomMemHash, Schnorr Sigs Implemented, APOS 3.0, AXH 2.0 Proposed - page 147. (Read 204903 times)

hero member
Activity: 672
Merit: 500
Banned: For Your Protection
sr. member
Activity: 473
Merit: 250
newbie
Activity: 42
Merit: 0
A lot of forks are happening.  Shocked Diff is rising and we are adding two more strong nodes now.

The nodes are in the DNS seeding and you can manually add:

addnode=104.236.231.72
addnode=45.55.172.95
addnode=174.127.110.41

We will add 2 more servers quickly!


If you have any problem compiling, make install:

https://github.com/bitcoin/secp256k1

i still fork with this nodes

OFFICIAL CHECKPOINTING NODES are on block 341. If you aren't at this blockheight, close the wallet, open again, wait to resync. Our nodes are flooded with too many connections! New addnodes are coming!!



A 32bit wallet dev ?

The algo is very inefficient in 32 bit mode but we have included the code to compile in axiom-qt.pro if you like:

DEFINES += USE_NUM_NONE USE_FIELD_INV_BUILTIN USE_SCALAR_INV_BUILTIN
# 64-bit
#DEFINES += USE_FIELD_5X52 USE_SCALAR_4X64
# 32-bit
DEFINES += USE_FIELD_10X26 USE_SCALAR_8X32


Nevermind if I have to compile it as I dont know anything about compiling a wallet . I'll just move away from it in that case .

We will compile one for you, please have some patience, and upgrade to a 64 bit OS soon Smiley


Here is the compiled 32 bit windows wallet:

https://mega.co.nz/#!FUUUjRqR!Kt0ic_atLG3DrcejKjqHqWpDscttWrUCmqYa5BEQf8Q


And WOW  Shocked  400+ incoming wallet connections to the nodes!
full member
Activity: 209
Merit: 100
http://e.axiomcoin.xyz/richlist


none above 500.. whats that a botnet?

Each mined block pays to a new address...So I guess we will never know the true distribution.

hmm I see, thanks for pointing that out.
hero member
Activity: 654
Merit: 500
i'm on the right chain for more than 30 mins but no block found yet ,bad luck i guess Sad
legendary
Activity: 1806
Merit: 1828
http://e.axiomcoin.xyz/richlist


none above 500.. whats that a botnet?

Each mined block pays to a new address...So I guess we will never know the true distribution.
legendary
Activity: 1162
Merit: 1000
Decentralizing Jesus on the Blockchain
legendary
Activity: 2940
Merit: 1090

Dev needs to add directories.

For now,

mkdir src/obj/secp256k1
mkdir src/obj/secp256k1


You also need:

chmod +x src/leveldb/build_detect_platform


Now you can compile Smiley

Thanks! I am used to some coins lacking the obj directory but didn't make the leap to same problem happening with its subdirs. Smiley

I think you meant second occurence of mkdir src/obj/secp256k1 to say mkdir src/obj/secp256k1/src though.

-MarkM-
full member
Activity: 209
Merit: 100
legendary
Activity: 1232
Merit: 1001
buying 10-50k+ pm with offers, thanks
legendary
Activity: 2940
Merit: 1090
Ubuntu 14.04 LTS; I made and installed the secp256 thing from the specified git repo, as I had errors trying to compile without doing so.

However, even after installing that, I still cannot compile (I used "make USE_UPNP= -f makefile.unix axiomd").

What is the problem, it looks almost as if you are trying to compile your own copy of the secp thing in a subdirectory?

Code:
In file included from secp256k1/src/secp256k1.c:18:0:
secp256k1/src/ecmult_impl.h: In function ‘void secp256k1_ecmult_odd_multiples_table_storage_var(int, secp256k1_ge_storage_t*, const secp256k1_gej_t*)’:
secp256k1/src/ecmult_impl.h:96:71: warning: invalid conversion from ‘void*’ to ‘secp256k1_gej_t*’ [-fpermissive]
     secp256k1_gej_t *prej = checked_malloc(sizeof(secp256k1_gej_t) * n);
                                                                       ^
secp256k1/src/ecmult_impl.h:97:69: warning: invalid conversion from ‘void*’ to ‘secp256k1_ge_t*’ [-fpermissive]
     secp256k1_ge_t *prea = checked_malloc(sizeof(secp256k1_ge_t) * n);
                                                                     ^
secp256k1/src/ecmult_impl.h:98:67: warning: invalid conversion from ‘void*’ to ‘secp256k1_fe_t*’ [-fpermissive]
     secp256k1_fe_t *zr = checked_malloc(sizeof(secp256k1_fe_t) * n);
                                                                   ^
secp256k1/src/secp256k1.c: At global scope:
secp256k1/src/secp256k1.c:460:48: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
 static char *secp256k1_schnorr_message_tweak = "secp256k1-Schnorr-SHA256";
                                                ^
In file included from secp256k1/src/field_impl.h:17:0,
                 from secp256k1/src/secp256k1.c:15:
secp256k1/src/field_10x26_impl.h:44:13: warning: ‘void secp256k1_fe_verify(const secp256k1_fe_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_fe_verify(const secp256k1_fe_t *a) {
             ^
In file included from secp256k1/src/secp256k1.c:17:0:
secp256k1/src/group_impl.h:36:13: warning: ‘void secp256k1_ge_set_infinity(secp256k1_ge_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_ge_set_infinity(secp256k1_ge_t *r) {
             ^
In file included from secp256k1/src/secp256k1.c:17:0:
secp256k1/src/group_impl.h:161:13: warning: ‘void secp256k1_gej_set_xy(secp256k1_gej_t*, const secp256k1_fe_t*, const secp256k1_fe_t*)’ defined but not used [-Wunused-function]
 static void secp256k1_gej_set_xy(secp256k1_gej_t *r, const secp256k1_fe_t *x, const secp256k1_fe_t *y) {
             ^
secp256k1/src/group_impl.h:227:12: warning: ‘int secp256k1_gej_is_valid_var(const secp256k1_gej_t*)’ defined but not used [-Wunused-function]
 static int secp256k1_gej_is_valid_var(const secp256k1_gej_t *a) {
            ^
secp256k1/src/secp256k1.c:637:1: fatal error: opening dependency file obj/secp256k1/src/secp256k1.d: No such file or directory
 }
 ^
compilation terminated.
make: *** [obj/secp256k1/src/secp256k1.o] Error 1

-MarkM-
newbie
Activity: 42
Merit: 0
A lot of forks are happening.  Shocked Diff is rising and we are adding two more strong nodes now.

The nodes are in the DNS seeding and you can manually add:

addnode=104.236.231.72
addnode=45.55.172.95
addnode=174.127.110.41

We will add 2 more servers quickly!


If you have any problem compiling, make install:

https://github.com/bitcoin/secp256k1

i still fork with this nodes

OFFICIAL CHECKPOINTING NODES are on block 341. If you aren't at this blockheight, close the wallet, open again, wait to resync. Our nodes are flooded with too many connections! New addnodes are coming!!



A 32bit wallet dev ?

The algo is very inefficient in 32 bit mode but we have included the code to compile in axiom-qt.pro if you like:

DEFINES += USE_NUM_NONE USE_FIELD_INV_BUILTIN USE_SCALAR_INV_BUILTIN
# 64-bit
#DEFINES += USE_FIELD_5X52 USE_SCALAR_4X64
# 32-bit
DEFINES += USE_FIELD_10X26 USE_SCALAR_8X32


Nevermind if I have to compile it as I dont know anything about compiling a wallet . I'll just move away from it in that case .

We will compile one for you, please have some patience, and upgrade to a 64 bit OS soon Smiley


Confirm Block 392

NEW NODE:

addnode=162.222.181.215


addnode=104.236.231.72
addnode=45.55.172.95
addnode=174.127.110.41

MORE NODES COMING


anyone not at block 392, close wallet, reopen, wait to ask node fresh - we have many hundreds of connections to manage here!




BLOCK EXPLORER LIVE

http://e.axiomcoin.xyz/




We have years of POW, come mine and stake!!

Min stake age is 4 hours.
full member
Activity: 135
Merit: 100
I fixed another wallet on another computer by opening the wallet and waiting for it to catch up to the current block. Just leave it on and it'll sync itself. The wallet may say that it's synced when it is not, just let it go.
sr. member
Activity: 473
Merit: 250
no relaunch ?!
so is it not a fair launch ?!

who did mine the first 350 blocks ?
legendary
Activity: 1400
Merit: 1000
Think I am finally on correct chain.

Rebooted once but was still forked, finding blocks per second. They disappeared from my total twice and now the ones I am finding are sticking and now finding blocks about every 15-20 minutes now. So hopefully on correct chain now. Showing block 393. I just put the nodes in my config file.
sr. member
Activity: 392
Merit: 250
TimSweat
A lot of forks are happening.  Shocked Diff is rising and we are adding two more strong nodes now.

The nodes are in the DNS seeding and you can manually add:

addnode=104.236.231.72
addnode=45.55.172.95
addnode=174.127.110.41

We will add 2 more servers quickly!


If you have any problem compiling, make install:

https://github.com/bitcoin/secp256k1

i still fork with this nodes

OFFICIAL CHECKPOINTING NODES are on block 341. If you aren't at this blockheight, close the wallet, open again, wait to resync. Our nodes are flooded with too many connections! New addnodes are coming!!



A 32bit wallet dev ?

The algo is very inefficient in 32 bit mode but we have included the code to compile in axiom-qt.pro if you like:

DEFINES += USE_NUM_NONE USE_FIELD_INV_BUILTIN USE_SCALAR_INV_BUILTIN
# 64-bit
#DEFINES += USE_FIELD_5X52 USE_SCALAR_4X64
# 32-bit
DEFINES += USE_FIELD_10X26 USE_SCALAR_8X32


Nevermind if I have to compile it as I dont know anything about compiling a wallet . I'll just move away from it in that case .

We will compile one for you, please have some patience, and upgrade to a 64 bit OS soon Smiley

Thank you very very much , And will be watching for it . And also sorry for the impatience I have since we been only getting a bunch of ICO coins and I rarely cxatch a ninja that can be mined , And very soon I will be upgrading just dont know when exactly .
hero member
Activity: 672
Merit: 500
Banned: For Your Protection
newbie
Activity: 42
Merit: 0
A lot of forks are happening.  Shocked Diff is rising and we are adding two more strong nodes now.

The nodes are in the DNS seeding and you can manually add:

addnode=104.236.231.72
addnode=45.55.172.95
addnode=174.127.110.41

We will add 2 more servers quickly!


If you have any problem compiling, make install:

https://github.com/bitcoin/secp256k1

i still fork with this nodes

OFFICIAL CHECKPOINTING NODES are on block 341. If you aren't at this blockheight, close the wallet, open again, wait to resync. Our nodes are flooded with too many connections! New addnodes are coming!!



A 32bit wallet dev ?

The algo is very inefficient in 32 bit mode but we have included the code to compile in axiom-qt.pro if you like:

DEFINES += USE_NUM_NONE USE_FIELD_INV_BUILTIN USE_SCALAR_INV_BUILTIN
# 64-bit
#DEFINES += USE_FIELD_5X52 USE_SCALAR_4X64
# 32-bit
DEFINES += USE_FIELD_10X26 USE_SCALAR_8X32


Nevermind if I have to compile it as I dont know anything about compiling a wallet . I'll just move away from it in that case .

We will compile one for you, please have some patience, and upgrade to a 64 bit OS soon Smiley


Confirm Block 392

NEW NODE:

addnode=162.222.181.215


addnode=104.236.231.72
addnode=45.55.172.95
addnode=174.127.110.41

MORE NODES COMING


anyone not at block 392, close wallet, reopen, wait to ask node fresh - we have many hundreds of connections to manage here!
legendary
Activity: 1848
Merit: 1018
Anyone confirm?


getblockhash 378

fa75173cc87cd6d80b104fe990a09d8aa039328da9119bf6b968fff7e41be47d


Yeah me too confirms.
Jump to: