Pages:
Author

Topic: [ANN] Adv Masternodes, Lucky-PoW, PrivateSend, Mixing - page 7. (Read 9417 times)

jr. member
Activity: 41
Merit: 1
-----------
-=ArcPool=- is ready for ADVANCE (x11): https://arcpool.com
fee rate 0.9%, no need registration, payouts every 1 hour, welcome!
-o stratum+tcp://arcpool.com:3533 -u -p c=ADV
for Nicehash use different port - 3534
-o stratum+tcp://arcpool.com:3534 -u -p c=ADV
-----------
Block explorer: https://arcpool.com/explorer/2031
List of Nodes: https://arcpool.com/explorer/peers?id=2031
-----------
Discord: https://discord.gg/TyH8jvB
Twitter: https://twitter.com/arcpool_com
-----------

1.2ADV=1 block?
Yes reward is 4 per block 70% of that is mns 30% pow so 1.2 is correct
full member
Activity: 354
Merit: 100
Due to high demand of MNs we are going to offer 2 of them today at 08:30 PM UTC on our discord!

https://discord.gg/nYttzMX

Payment for stocks.exchange listing was successful. We will be listed within 5 days!


Is there any solution or response from the developer about the lucky pow 4320 (orphan) block? Is there no reward for those who have mined that block?

Block 4320: https://explorer.advanceprotocol.net/tx/5f91783fdfa3cce2a690ff835a5d193dbfb659efa0467a92de04c51557d9cdb8

arcpool.com got the lucky block 5760 today, and it got orphaned.  hundreds of blocks and this one gets orphaned... now i find out 4320 also got orphaned... this smells bad

scam
full member
Activity: 354
Merit: 100
Dev, when are you planning the next auction?
And how soon do you plan to go on YoBit?

yobit - no good exchange. i think best start will www.southxchange.com
newbie
Activity: 87
Merit: 0
Due to high demand of MNs we are going to offer 2 of them today at 08:30 PM UTC on our discord!

https://discord.gg/nYttzMX

Payment for stocks.exchange listing was successful. We will be listed within 5 days!


Is there any solution or response from the developer about the lucky pow 4320 (orphan) block? Is there no reward for those who have mined that block?

Block 4320: https://explorer.advanceprotocol.net/tx/5f91783fdfa3cce2a690ff835a5d193dbfb659efa0467a92de04c51557d9cdb8

arcpool.com got the lucky block 5760 today, and it got orphaned.  hundreds of blocks and this one gets orphaned... now i find out 4320 also got orphaned... this smells bad
member
Activity: 218
Merit: 10
How about Lucky-POW? What is it mean? 1000 coins for reward is the same as the masternode, which 70% payment will belong to.
newbie
Activity: 50
Merit: 0
Dev, when are you planning the next auction?
And how soon do you plan to go on YoBit?
newbie
Activity: 50
Merit: 0
Listing on http://mnrank.com/ within 1-3 days.

 Grin Grin Grin Grin
newbie
Activity: 59
Merit: 0
Is there any solution or response from the developer about the lucky pow 4320 (orphan) block? Is there no reward for those who have mined that block?
newbie
Activity: 11
Merit: 0
Very promising project in my opinion! This ICO can not be missed in any way! Join the great idea.
newbie
Activity: 232
Merit: 0
Discord status link    Grin   https://status.discordapp.com/


 -Session Servers Impacted
We're performing a restart of Discord core services. We expect this to take Discord offline for approximately 15 minutes.
Jan 21, 23:15 PST



If you cant get in discord this is why! just give it 15-25 mins and retry
newbie
Activity: 20
Merit: 0
Docker container for Advance Protocol Wallet / Masternode.

Hi, I am creating basic Dockerfiles to build and host wallets / masternodes.

Why?
With this containers you are able to have multiple wallets / masternodes on the same VPS.
Each container runs in its own environment and does not effect any services on the host system or other containers.
People running multiple masternodes rent for each a VPS, with this you can have multiple masternodes on the same VPS.
Read up on Docker @ https://www.docker.com/what-container if you interrested.

I will guide you through a basic installation on a Ubuntu 17.10 OS.
We will create a docker image with Alpine Linux as base and compile the latest Advance Protocol daemon on it.


Login (ssh) into your VPS:

# Lets upgrade all packages.

> apt-get update
> apt-get upgrade -y


# If you are on a VPS with low RAM and no swap space, lets create one

> fallocate -l 2G /swapfile
> chmod 600 /swapfile
> mkswap /swapfile
> swapon /swapfile
> cp /etc/fstab /etc/fstab.bak
> echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab


# Install Docker

> apt-get install apt-transport-https ca-certificates curl software-properties-common -y
> curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
> apt-key fingerprint 0EBFCD88
> add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable"
> apt-get update
> apt-get install docker-ce -y


# Create a directory and copy paste the content into the Dockerfile

> mkdir -p advDockerBuild
> cd advDockerBuild
> nano Dockerfile

# save the file: CLTR+X

Code:
# Dockerfile for advanced protocol on alpine linux
FROM alpine

LABEL version="1.0"
LABEL description="Dockerized advance protocol daemon"
LABEL maintainer="TEmp"

# Install all necessary packages
RUN apk --no-cache --update add nano libstdc++ libtool build-base git autoconf automake linux-headers boost-dev openssl-dev db-dev miniupnpc-dev gmp-dev libevent-dev

# clone the advance protocol git and compile it
RUN mkdir -p advanceSource && \
    cd advanceSource && \
    git clone https://github.com/AdvanceProtocol/advance . && \
    chmod +x src/leveldb/build_detect_platform && \
    chmod +x src/secp256k1/autogen.sh && \
    cd src/leveldb && \
    make libleveldb.a libmemenv.a && \
    cd ../.. && \
    ./autogen.sh && \
    ./configure --disable-qt --with-incompatible-bdb && \
    make

# here comes the clean up
RUN apk del build-base git autoconf automake libtool linux-headers && \
    rm -rvf /var/cache/apk/* && \
    cd /advanceSource/src && \
    cp advanced advance-tx advance-cli /usr/bin && \
    cd ~ && \
    rm -rvf /advanceSource

# Create the image, this will take some time!

> docker build -t advanced .


# After the image is created, start it with an interactive shell inside
# You can repeat this step and create multiple containers now, make sure to use different ports and names
# -it = interactive
# -p = map ports from host to container
# --name = give the container a name

> docker run -it -p 30888:30888 --name ADV01 advanced


# Inside of the docker container, we will start the advanced daemon for the first time

>> advanced &


# Now cd into the dataDirectory and edit the config file, eg.: port, masternode settings, ....

>> cd ~/.advanceprotocol/
>> nano advance.conf


Code:
server=1
listen=1
daemon=1
port=30888
addnode=104.238.191.14
addnode=198.13.61.201
addnode=165.227.231.237
addnode=159.89.16.82
addnode=159.89.85.37
addnode=45.63.114.75

# Lets restart the daemon now

>> advance-cli stop
>> advanced &


# Verify its running

>> ps -ef


# Check the debug.log

>> tail -f debug.log


# DETACH the container
# press CLTR+P+Q

# SOME USEFUL DOCKER COMMANDS
# Verfiy the container is running on the host system

> docker ps -a


# Stats of all your containers

> docker stats


# Start / Stop containers

> docker start
> docker stop


# Execute a command inside of your container and exit again

> docker exec ps -ef


# Spawn a shell inside of the container

> docker exec -it /bin/sh


# Attach to a container

> docker attach



Thats it for now, hope this helps some of you who want to run multiple / sandboxed wallets (masternodes) on the same machine.

Ofc, you can do more with docker images
+ make the start full automatic
+ restart in case daemon crashes
+ send emails on events
+ basically limit is what you imagine!!

I build docker images for other coins as well. For questions, you can find me in the discord channel.

If you found this useful buy me a coffee =)


ADV: AW7pJYPGpCcNK8zwoGxE5pZUPnHfZg8Ed9
BTC: 1P1vR2T3kpJHXdWoMbiXq18moqGjGoz7Kz
member
Activity: 358
Merit: 10
-----------
-=ArcPool=- is ready for ADVANCE (x11): https://arcpool.com
fee rate 0.9%, no need registration, payouts every 1 hour, welcome!
-o stratum+tcp://arcpool.com:3533 -u -p c=ADV
for Nicehash use different port - 3534
-o stratum+tcp://arcpool.com:3534 -u -p c=ADV
-----------
Block explorer: https://arcpool.com/explorer/2031
List of Nodes: https://arcpool.com/explorer/peers?id=2031
-----------
Discord: https://discord.gg/TyH8jvB
Twitter: https://twitter.com/arcpool_com
-----------

1.2ADV=1 block?
newbie
Activity: 232
Merit: 0
If you guys can go over and Smash that Follow button! https://twitter.com/AdvanceChain
                            
https://advanceprotocol.net/images/logo_small.png

       https://advanceprotocol.net


newbie
Activity: 59
Merit: 0
Thai Translation:
https://bitcoingarden.org/forum/index.php?topic=26291.0

My Advance address:
ANKwUV782rDKckXieaFdgHENZHAw8cgsNF

Best regards.
newbie
Activity: 232
Merit: 0
Another translation  -Dev

I did the Turkish Translation  https://bitcointalksearch.org/topic/no-longer-around-2791959

wallet :   AJ5zobowZQwxxxDMmEbx9BzxKytMHoPdfn
member
Activity: 353
Merit: 10
Multipools aims to be a provider of pools for multiple algorithms and coins in order to help with general blockchain decentralization and bring lower fees to our mining community.

Welcome to our ADVANCE Coin Pool.

Pool URL:

Specs:
  • Dedicated Server
  • DDoS Protection
  • User Friendly Interface
  • Payments when every block arrives
  • Server Located in Europe
  • 1% fee
  • NiceHash mining supported

To configure your miners use:

  • URL: stratum+tcp://stratum-adv.multipools.club:11115
  • Worker: username. Workername
  • Password: Worker password.
To create your worker on the pool visit: https://adv.multipools.club/index.php?page=account&action=workers


Please feel free to share your feedback with us and we are more than welcome to review it and improve our service.
Send us your feedback to:

Come chat with us on:
Now let’s mine!
member
Activity: 308
Merit: 11
newbie
Activity: 10
Merit: 0
Romanian translation was also done by me.
Hello,

Romanian Translation is finished:
https://bitcointalksearch.org/topic/m.28491379

My Advance address:
AUoNT3u4YQGV9oxsojPFfdHFqDypdLQuDL

Afterwards i can do a public node.
Best regards.
newbie
Activity: 232
Merit: 0
I made a list of Translation's that are either Done or Reserved

-Russian Done  -Dmitry_RS          
-Vietnamese    -nguyenquangminh
-Chinese        -keseoma
-Korean         -jinujang
-German        -gaking man
-Italian         -drago777
-Spanish       -iTzShowTime
-Dutch         -iTzShowTime
-Portugese    -cleybertandre
-Indonesian   -zzleepy68
-Romanian     -Grinderu
-Turkish        -iTzShowtime
-Thai            -teerapz

Reserved to be done
-French
-Arabic
full member
Activity: 354
Merit: 100
why Masternode payment    : 70% ? for Pow miners only 30% ?  Huh Huh Huh
it is not good to offend miners, they will leave and the coin will die
Pages:
Jump to: