Pages:
Author

Topic: [ANN] Destiny | scrypt | Swap to Expanse asset | Road Map - page 28. (Read 46353 times)

hero member
Activity: 532
Merit: 500
Better die on your feet, than live on your knees

Well that's a start.
In the meantime I have been able to collect more coins, I actually have some stake weight now.
Now to see how many more and how cheap they get, seems I and maybe one or two others are
the only ones with any interest in this coin.
Time as always will tell if the prices allowed me to make a killing or if it will be added to my
collection of many bags.
newbie
Activity: 56
Merit: 0
hero member
Activity: 742
Merit: 500
Half every 5 days
Block 1-6750  - 16 coins
Block 6751-13500 - 8 coins
Block 13501-20250 - 4 coins
........................................



little by halving ... less than 24 hours

I think with the POS working the halving is like every 2.5 days...  Wink
newbie
Activity: 54
Merit: 0
Half every 5 days
Block 1-6750  - 16 coins
Block 6751-13500 - 8 coins
Block 13501-20250 - 4 coins
........................................



little by halving ... less than 24 hours
newbie
Activity: 56
Merit: 0
...
Hi thank you for share, which version of python are you using, i am trying to run in 3.5.1 and i am getting "missing parenthesis in call to print", some idea what can it be?
Now it should work with any python version
Code:
# type here desired prefix
IWANT="inc"

#do not change anything after the signal
#BEEP
b58_digits = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
def base58_encode(n):
    l = []
    while n > 0:
        n, r = divmod(n, 58)
        l.insert(0,(b58_digits[r]))
    return ''.join(l)

lw=len(IWANT)
result=""

for i in IWANT:
  if not i in b58_digits:
    print "Address contain non b58 symbol"
    exit()

for i in range(16**6):
  pk=int(hex(i)+"0"*(8-len(hex(i))) + "0"*44,16)
  adr=base58_encode(pk)
  if adr[:lw]==IWANT:
    result=hex(i)+"0"*(8-len(hex(i))) + "0"*44
    break

result_string='base58Prefixes[PUBKEY_ADDRESS] = list_of'
for i in range(1,16):
  st=result[i*2:i*2+2]
  if st=="00":
    break
  else:
    result_string+="(%d)"%int('0x'+st,16)

result_string+=";"

print(result_string)

It is possible to calculate desired bits without iterating, there is no hashing after adding version byte, so its just a simple math to recalculate from numeration system with base 58 to hex. However looks like for FootyCash developer (https://bitcointalk.org/index.php?topic=1374929.20) it was too hard Wink
Thank you for sharing

Slack community is slowly growing. If you want to be inside please pm me your email.
All plans and updates before official announcement!
Welcome
member
Activity: 108
Merit: 10
...
Hi thank you for share, which version of python are you using, i am trying to run in 3.5.1 and i am getting "missing parenthesis in call to print", some idea what can it be?
Now it should work with any python version
Code:
# type here desired prefix
IWANT="inc"

#do not change anything after the signal
#BEEP
b58_digits = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
def base58_encode(n):
    l = []
    while n > 0:
        n, r = divmod(n, 58)
        l.insert(0,(b58_digits[r]))
    return ''.join(l)

lw=len(IWANT)
result=""

for i in IWANT:
  if not i in b58_digits:
    print "Address contain non b58 symbol"
    exit()

for i in range(16**6):
  pk=int(hex(i)+"0"*(8-len(hex(i))) + "0"*44,16)
  adr=base58_encode(pk)
  if adr[:lw]==IWANT:
    result=hex(i)+"0"*(8-len(hex(i))) + "0"*44
    break

result_string='base58Prefixes[PUBKEY_ADDRESS] = list_of'
for i in range(1,16):
  st=result[i*2:i*2+2]
  if st=="00":
    break
  else:
    result_string+="(%d)"%int('0x'+st,16)

result_string+=";"

print(result_string)
legendary
Activity: 966
Merit: 1000
I played around with Destiny 3-symbol addresses and wrote very dumb python script to get desired prefix(by full iterating).
if someone needs
Code:

# type here desired prefix
IWANT="DES"

#do not change anything after the signal
#BEEP
b58_digits = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
def base58_encode(n):
    l = []
    while n > 0:
        n, r = divmod(n, 58)
        l.insert(0,(b58_digits[r]))
    return ''.join(l)

lw=len(IWANT)
result=""

for i in IWANT:
  if not i in b58_digits:
    print "Address contain non b58 symbol"
    exit()

for i in range(16**6):
  pk=int(hex(i)+"0"*(8-len(hex(i))) + "0"*44,16)
  adr=base58_encode(pk)
  if adr[:lw]==IWANT:
    result=hex(i)+"0"*(8-len(hex(i))) + "0"*44
    break

result_string='base58Prefixes[PUBKEY_ADDRESS] = list_of'
for i in range(1,16):
  st=result[i*2:i*2+2]
  if st=="00":
    break
  else:
    result_string+="(%d)"%int('0x'+st,16)

result_string+=";"

print result_string

Hi thank you for share, which version of python are you using, i am trying to run in 3.5.1 and i am getting "missing parenthesis in call to print", some idea what can it be?
hero member
Activity: 742
Merit: 500
Destiny Coin [DES] is listed: https://yobit.net/en/trade/DES/BTC
Destiny Coin Dice: https://yobit.net/en/dice/DES



Code:
[url=https://yobit.net/en/trade/DES/BTC][img]https://yobit.net/imginfo/DES[/img][/url]

Donate DES coins to our Giveaway: https://yobit.net/en/freecoins/

Please report about DES update/fork/issue here: https://yobit.net/en/reportupdate/DES
Great, happy trading for all.
newbie
Activity: 56
Merit: 0
Destiny Coin [DES] is listed: https://yobit.net/en/trade/DES/BTC
Destiny Coin Dice: https://yobit.net/en/dice/DES



Code:
[url=https://yobit.net/en/trade/DES/BTC][img]https://yobit.net/imginfo/DES[/img][/url]

Donate DES coins to our Giveaway: https://yobit.net/en/freecoins/

Please report about DES update/fork/issue here: https://yobit.net/en/reportupdate/DES

Thank you for adding
legendary
Activity: 1007
Merit: 1010
★YoBit.Net★
Destiny Coin [DES] is listed: https://yobit.net/en/trade/DES/BTC
Destiny Coin Dice: https://yobit.net/en/dice/DES



Code:
[url=https://yobit.net/en/trade/DES/BTC][img]https://yobit.net/imginfo/DES[/img][/url]

Donate DES coins to our Giveaway: https://yobit.net/en/freecoins/

Please report about DES update/fork/issue here: https://yobit.net/en/reportupdate/DES
hero member
Activity: 742
Merit: 500
Wow thanks for answers guys, this coin look really good, i hope dev team see the gold in this project...  Wink
hero member
Activity: 532
Merit: 500
Better die on your feet, than live on your knees
Guys help me with this, i want to know if i am not wrong.

If when POW end will be arround 213.000 coins, with POS at 10% year if all coin is staking will be generate just arround 60 coins per day?

if it is true, here are a awesome potential, the inflation of this coin is really low.
not sure about how to calculate this, but with POS starts at POW, might be les than 210000 when POW ends, this coin looks good already n stake is working great

Agree it looks great already.
It however needs to get listed on an exchange ASAP.
I really need to catch some dumping on this because my stake weight is a bit on the low side.  Grin

Any news about an exchange listing?
hero member
Activity: 742
Merit: 500
Guys help me with this, i want to know if i am not wrong.

If when POW end will be arround 213.000 coins, with POS at 10% year if all coin is staking will be generate just arround 60 coins per day?

if it is true, here are a awesome potential, the inflation of this coin is really low.
not sure about how to calculate this, but with POS starts at POW, might be les than 210000 when POW ends, this coin looks good already n stake is working great
hero member
Activity: 686
Merit: 500
Guys help me with this, i want to know if i am not wrong.

If when POW end will be arround 213.000 coins, with POS at 10% year if all coin is staking will be generate just arround 60 coins per day?

if it is true, here are a awesome potential, the inflation of this coin is really low.

Your math is right but actual coins will be much less than 60/day as not the whole supply will stake
hero member
Activity: 742
Merit: 500
Guys help me with this, i want to know if i am not wrong.

If when POW end will be arround 213.000 coins, with POS at 10% year if all coin is staking will be generate just arround 60 coins per day?

if it is true, here are a awesome potential, the inflation of this coin is really low.
legendary
Activity: 1246
Merit: 1005

willing to buy a few @ 7,500 sats PM me if interested.

member
Activity: 108
Merit: 10
I played around with Destiny 3-symbol addresses and wrote very dumb python script to get desired prefix(by full iterating).
if someone needs
Code:

# type here desired prefix
IWANT="DES"

#do not change anything after the signal
#BEEP
b58_digits = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
def base58_encode(n):
    l = []
    while n > 0:
        n, r = divmod(n, 58)
        l.insert(0,(b58_digits[r]))
    return ''.join(l)

lw=len(IWANT)
result=""

for i in IWANT:
  if not i in b58_digits:
    print "Address contain non b58 symbol"
    exit()

for i in range(16**6):
  pk=int(hex(i)+"0"*(8-len(hex(i))) + "0"*44,16)
  adr=base58_encode(pk)
  if adr[:lw]==IWANT:
    result=hex(i)+"0"*(8-len(hex(i))) + "0"*44
    break

result_string='base58Prefixes[PUBKEY_ADDRESS] = list_of'
for i in range(1,16):
  st=result[i*2:i*2+2]
  if st=="00":
    break
  else:
    result_string+="(%d)"%int('0x'+st,16)

result_string+=";"

print result_string
hero member
Activity: 742
Merit: 500
WOW  my wallet is  staking like crazy 15 stake and all good this coin should b at 10k to 20 k once it the exchange and will b nice to see it on poloniex.......you want a good coin to mine get your miner on this coin the future is bright go Destiny
Yes dude, wallet stake really fine.
hero member
Activity: 851
Merit: 1000
Do You Even Onion Bro?
WOW  my wallet is  staking like crazy 15 stake and all good this coin should b at 10k to 20 k once it the exchange and will b nice to see it on poloniex.......you want a good coin to mine get your miner on this coin the future is bright go Destiny
member
Activity: 102
Merit: 10
love life...
 Smiley  will keep an eye on it  :}
Pages:
Jump to: