Author

Topic: NXT :: descendant of Bitcoin - Updated Information - page 1975. (Read 2761645 times)

newbie
Activity: 43
Merit: 0
When will the explorer be back online?
legendary
Activity: 2142
Merit: 1010
Newbie
Transfer of colored NXT coin 'll also have 1 NXT min fee?

Yes.
member
Activity: 98
Merit: 10
Transfer of colored NXT coin 'll also have 1 NXT min fee?
legendary
Activity: 2142
Merit: 1010
Newbie
@CfB,
e.g, when transfer some nxt from A to B acc,after the first confirmation,the NXT should be displayed in B acc,right? or need more confirmations?

10 confirms is min for such deposits.
legendary
Activity: 1722
Merit: 1217
Planning on selling one million nxt in a couple of days in compliance with fair distribution with other members Smiley.

Happy new year, Lophie

P.S. of course close to market price at that time but a bit lower Wink

- Lophie

Awesome! Please do. If I could ask a favor, if at all possible, please shoot for owning <1% of total currency supply when all is said and done. That is the amount that would make many people most comfortable. If this thing makes it big 9.9million nxt will make you a gazillionare some day and having no one individual owning more than 1% will really help to make it as big as it could be. Grin
member
Activity: 60
Merit: 10
Undecided Only 200 aliases... I feel I should have at least twice that. Some are registering hourly,,, some others are not adding though. Could it take more than 24 hours to update?

See someone locked in Sakura in all 30 plus ways it can be written  Grin Still got an alt of it in 1337

I hope you make a lot of money from it.
heh, probably not Smiley
Some aliases I'm very surprised I got. Other fairly obscure ones I'm surprised were already taken.

Waiting for the servers to come online as I have another 700 to input. I can see doing 10k atleast...

Kinda wish you could batch upload a list of Aliases.... instead of this tedious 1 by 1 shit
Happy New Year
Code:
#!/usr/bin/env bash


#title :nxt_alias_batch_register.sh
#description :This script creates nxt aliases from a list in the given file
#author :nadrimajstor
#date :2014-01-01
#version :0.1
#licence :This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .

function are_arguments_correct(){
  if [[ "$#" -ne 4 || "$1" == "-h" || "$1" == "--help" ]]; then
    echo ""
    echo "Usage:"
    echo "  $0 ACCOUNT PASSPHRASE FILE URI"
    echo ""
    echo "Example:"
    echo "  $0 23948723498 mY1337PassPhrase alias.txt 'http://www.example.com'"
    exit 0
  fi
}

function is_curl_installed(){
  if ! hash curl &>/dev/null; then
    echo -e "\e[1;37mcurl\e[0m - \e[0;31mnot installed\e[0m"
    echo "try: sudo apt-get install curl"
    exit 1
  fi
}

function is_server_running(){
  if ! curl --silent -k "$URL/nxt?requestType=getState" &>/dev/null; then
    echo -e "\e[1;37m$URL\e[0m - \e[0;31mserver not found\e[0m"
    exit 1
  fi
}

function is_account_balance_positive(){
  local __balance=$(curl --silent -k "$URL/nxt?requestType=getBalance&account=$ACCOUNT" |\
                    grep 'balance' | tr --delete '{"}' | tr ':,' ' ' | cut -d ' ' -f2
                   )
  if ! [[ "$__balance" -gt 0 ]]; then
    echo -e "\e[1;37m$ACCOUNT\e[0m - \e[0;31mnot enough funds\e[0m"
    exit 1
  fi
}

function does_file_exist(){
  if ! [ -r "$FILE" ]; then
    echo -e "\e[1;37m$FILE\e[0m - \e[0;31mcan not read file\e[0m"
    exit 1
  fi
}

function create_alias(){
  local ALIAS=$1
  local __result=$(curl --silent -k "$URL/nxt?requestType=assignAlias&secretPhrase=$SECRET&alias=$ALIAS&uri=$URI&fee=$FEE&deadline=$DEADLINE")
  echo -e "\e[1;37m$ALIAS\e[0m - $__result"
}

are_arguments_correct $*
is_curl_installed

URL="https://localhost:7875"
is_server_running

ACCOUNT=$1
is_account_balance_positive

FILE=$3
does_file_exist

SECRET=$2
URI=$4
FEE=1
DEADLINE=1440

for line in $(cat "$FILE"); do
  create_alias $line
done
nxt_alias_batch_register.sh

Thanks mate!
hero member
Activity: 1039
Merit: 507
was asking nadrimajstor
.sh files are linux based
therefor I need something like Cygwin or MinGW MSYS to run the .sh script



sr. member
Activity: 644
Merit: 250
Someone should write a guide on running Nxt through Tor and I2P.

Be sure to include routing DNS requests through the anonymizing application.
sr. member
Activity: 644
Merit: 250
hero member
Activity: 924
Merit: 1003
Unlimited Free Crypto
Planning on selling one million nxt in a couple of days in compliance with fair distribution with other members Smiley.

Happy new year, Lophie

P.S. of course close to market price at that time but a bit lower Wink

- Lophie
hero member
Activity: 1039
Merit: 507

Happy New Year


EXCELLENT !!!
 Grin

I'll try to figure it out
Another guy posted one but I was clueless and he didn't follow up

there are plenty good ones left
absolutely


EDIT: LINUX?
member
Activity: 98
Merit: 10
I didn't start registering until 12/25 (Christmas night!)... how could valuable aliases still be sitting out there three days later?

there are plenty good ones left, I did a few aliases just yesterday.
newbie
Activity: 30
Merit: 0
Undecided Only 200 aliases... I feel I should have at least twice that. Some are registering hourly,,, some others are not adding though. Could it take more than 24 hours to update?

See someone locked in Sakura in all 30 plus ways it can be written  Grin Still got an alt of it in 1337

I hope you make a lot of money from it.
heh, probably not Smiley
Some aliases I'm very surprised I got. Other fairly obscure ones I'm surprised were already taken.

Waiting for the servers to come online as I have another 700 to input. I can see doing 10k atleast...

Kinda wish you could batch upload a list of Aliases.... instead of this tedious 1 by 1 shit
Happy New Year
Code:
#!/usr/bin/env bash

#title :nxt_alias_batch_register.sh
#description :This script creates nxt aliases from a list in the given file
#author :nadrimajstor
#date :2014-01-01
#version :0.1
#licence :This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .

function are_arguments_correct(){
  if [[ "$#" -ne 4 || "$1" == "-h" || "$1" == "--help" ]]; then
    echo ""
    echo "Usage:"
    echo "  $0 ACCOUNT PASSPHRASE FILE URI"
    echo ""
    echo "Example:"
    echo "  $0 23948723498 mY1337PassPhrase alias.txt 'http://www.example.com'"
    exit 0
  fi
}

function is_curl_installed(){
  if ! hash curl &>/dev/null; then
    echo -e "\e[1;37mcurl\e[0m - \e[0;31mnot installed\e[0m"
    echo "try: sudo apt-get install curl"
    exit 1
  fi
}

function is_server_running(){
  if ! curl --silent -k "$URL/nxt?requestType=getState" &>/dev/null; then
    echo -e "\e[1;37m$URL\e[0m - \e[0;31mserver not found\e[0m"
    exit 1
  fi
}

function is_account_balance_positive(){
  local __balance=$(curl --silent -k "$URL/nxt?requestType=getBalance&account=$ACCOUNT" |\
                    grep 'balance' | tr --delete '{"}' | tr ':,' ' ' | cut -d ' ' -f2
                   )
  if ! [[ "$__balance" -gt 0 ]]; then
    echo -e "\e[1;37m$ACCOUNT\e[0m - \e[0;31mnot enough funds\e[0m"
    exit 1
  fi
}

function does_file_exist(){
  if ! [ -r "$FILE" ]; then
    echo -e "\e[1;37m$FILE\e[0m - \e[0;31mcan not read file\e[0m"
    exit 1
  fi
}

function create_alias(){
  local ALIAS=$1
  local __result=$(curl --silent -k "$URL/nxt?requestType=assignAlias&secretPhrase=$SECRET&alias=$ALIAS&uri=$URI&fee=$FEE&deadline=$DEADLINE")
  echo -e "\e[1;37m$ALIAS\e[0m - $__result"
}

are_arguments_correct $*
is_curl_installed

URL="https://localhost:7875"
is_server_running

ACCOUNT=$1
is_account_balance_positive

FILE=$3
does_file_exist

SECRET=$2
URI=$4
FEE=1
DEADLINE=1440

for line in $(cat "$FILE"); do
  create_alias $line
done
nxt_alias_batch_register.sh
member
Activity: 60
Merit: 10
for the night crew...
Introducing the NXT Foundations forums site at https://forums.nxtcrypto.org

Everyone, as part of the NXT Foundation initiative, I am pleased to announce that bitcointalk user btc24 has completed migration of his nxtalk.org forums over to forums.nxtcrypto.org effective immediately.  We formed the NXT Foundation in an effort to collaborate on the promotion of NXT as the 2nd generation cryptocurrency.  The first goal will be to set up a series of sites under the Foundation's official domain NXTCRYPTO.ORG.  As one of the main functions of NXT is decentralization, we have devised a decentralized method of control of the information between all sites of the domain, such that 1 person does not control everything and from cooperation, things get done.  The NXT dev team will have little to no connection at all with the foundation, though we certainly intend to assist the dev team however we can.

Wiki:
Joefox@bitcointalk has stepped up and provided hosting for http://wiki.nxtcrypto.org as well as DDOS protection on a MediaWiki system.  Please visit the wiki if you are interested in translation help.  He is paying for all this himself, so donations are appreciated.

Info:
A person wishing to remain anonymous has stepped up and provided hosting for http://info.nxtcrypto.org as well as DDOS protection on that site.  The site is intended for critical updates and critical info/news from the dev team. As he wishes anonymity, he is unable to receive donations.

Web:
QBTC from nextcoin.org has stepped up and provided hosting for http://www.nxtcrypto.org as well as DDOS protection on that site.  She is paying for all this herself, so donations are appreciated.

Forums:
NXTALK.ORG has moved to forums.nxtcrypto.org and will become the official forums for the NXT Foundation. Please visit the forums if you are interesting in moderating one of the language boards.  Adminius on forums.nxtcrypto.org AKA btc24 on bitcointalk has stepped up and provided hosting for http://forums.nxtcrypto.org as well as DDOS protection on the site.  He is paying for all this himself, so donations are appreciated.

DNS administrator:
These duties will be my particular area.  Since that is the case I will not be administering any of the sites.  Though I will be helping out with the forums, moderation, ultimate control of these forums falls to Adminius.  Thanks to 2Kool4Skewl for paying for the domain and to the anonymous Info site manager for the SSL certs.  Hopefully in a year when these are renewed I'll have lots of $ to pay for it.

Please support the new https://forums.nxtcrypto.org to take the bloat off this thread

I'm from China, if I can do anything just tell me ok?

NXT is the real next gen.
full member
Activity: 238
Merit: 100
for the night crew...
Introducing the NXT Foundations forums site at https://forums.nxtcrypto.org

Everyone, as part of the NXT Foundation initiative, I am pleased to announce that bitcointalk user btc24 has completed migration of his nxtalk.org forums over to forums.nxtcrypto.org effective immediately.  We formed the NXT Foundation in an effort to collaborate on the promotion of NXT as the 2nd generation cryptocurrency.  The first goal will be to set up a series of sites under the Foundation's official domain NXTCRYPTO.ORG.  As one of the main functions of NXT is decentralization, we have devised a decentralized method of control of the information between all sites of the domain, such that 1 person does not control everything and from cooperation, things get done.  The NXT dev team will have little to no connection at all with the foundation, though we certainly intend to assist the dev team however we can.

Wiki:
Joefox@bitcointalk has stepped up and provided hosting for http://wiki.nxtcrypto.org as well as DDOS protection on a MediaWiki system.  Please visit the wiki if you are interested in translation help.  He is paying for all this himself, so donations are appreciated.

Info:
A person wishing to remain anonymous has stepped up and provided hosting for http://info.nxtcrypto.org as well as DDOS protection on that site.  The site is intended for critical updates and critical info/news from the dev team. As he wishes anonymity, he is unable to receive donations.

Web:
QBTC from nextcoin.org has stepped up and provided hosting for http://www.nxtcrypto.org as well as DDOS protection on that site.  She is paying for all this herself, so donations are appreciated.

Forums:
NXTALK.ORG has moved to forums.nxtcrypto.org and will become the official forums for the NXT Foundation. Please visit the forums if you are interesting in moderating one of the language boards.  Adminius on forums.nxtcrypto.org AKA btc24 on bitcointalk has stepped up and provided hosting for http://forums.nxtcrypto.org as well as DDOS protection on the site.  He is paying for all this himself, so donations are appreciated.

DNS administrator:
These duties will be my particular area.  Since that is the case I will not be administering any of the sites.  Though I will be helping out with the forums, moderation, ultimate control of these forums falls to Adminius.  Thanks to 2Kool4Skewl for paying for the domain and to the anonymous Info site manager for the SSL certs.  Hopefully in a year when these are renewed I'll have lots of $ to pay for it.

Please support the new https://forums.nxtcrypto.org to take the bloat off this thread
legendary
Activity: 2128
Merit: 1002

You can use http://22k.io/-account/

It shows all the raw data and is pretty useful

James

really nice, thanks.
legendary
Activity: 1176
Merit: 1134
Can anybody calculate 5% of the total transaction fees for yesterday?
What percentage of that was from alias and what percentage from NXT transfer fees?

James
legendary
Activity: 1176
Merit: 1134
I wouldn't think it would be that hard, but I think this is ferment's tool. You have to ask him. I think he is wanting to get a big chunk of the community fund!

James
full member
Activity: 238
Merit: 100

You can use http://22k.io/-account/

It shows all the raw data and is pretty useful

James

that is a very cool tool.  Hoe easy would it be to have it show which blocks than an account generated?
Jump to: