Bitcoin Forum
June 16, 2024, 06:39:13 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 ... 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 [750] 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 ... 878 »
  Print  
Author Topic: [ANN][KMD][dPoW] Komodo - An Open, Composable Smart Chain Platform, Secured by B  (Read 1191717 times)
mybitcoin101
Sr. Member
****
Offline Offline

Activity: 378
Merit: 251


View Profile
March 13, 2018, 08:09:59 AM
Merited by Decker (1)
 #14981


thank you
Decker
Member
**
Offline Offline

Activity: 119
Merit: 61


View Profile
March 13, 2018, 08:41:11 AM
 #14982


Today, when all the rewards were received by participants i can post the right solution:

1. Achiving first 7.77 KMD was very easy. Look at the screen - https://deckersu.github.io/images/decker_quest_01.jpg . We see LaMetric Time clock on the table, displaying current time. It's 20:22, entering "20:22" as passphrase in Agama or BarterdDEX will get access to REFhpPU7B75ADNEyjbLGAHf3DWz6XSggXX address. First reward was taken - eea7e7ca9051b8702abaf593f5fab3bf4a812f03bdc228379e4b80dcad6e559f .
2. Second part is a little bit harder. Private key for reward's address contained in the image in IPTC info field "Special instructions". There is a two ways how to get it. Easiest, is to download image on PC:
Code:
wget https://github.com/DeckerSU/deckersu.github.io/raw/master/images/decker_quest_01.jpg
and just open it in a hex editor:

See the phrase "YourPrizeIsRightHereOneStep2Win!" ? This is privkey. There is also other way to get it:
Code:
exiv2 -pi decker_quest_01.jpg
Here is the output:
Code:
Iptc.Envelope.CharacterSet                   String      3                                  
Iptc.Envelope.ModelVersion                   Short       1  4                              
Iptc.Application2.SpecialInstructions        String     32  YourPrizeIsRightHereOneStep2Win!
Iptc.Application2.BylineTitle                String      6  Decker                          
After we get SpecialInstructions, let's convert ASCII phrase to hex to get 32-bytes privkey:
Code:
YourPrizeIsRightHereOneStep2Win! = 596f75725072697a6549735269676874486572654f6e65537465703257696e21
Now we should get uncompressed address and WIF for it. Let's use this http://gobittest.appspot.com/Address service to get it. Enter 32 bytes above in "0 - Private ECDSA Key" field and click send. After this go to "4 - Adding network bytes to 3" field and change first byte to 0x3C (Komodo Network) and click Send once more. We get address: RPLuaFx1bafJGJtaV3u724k3ZyrD9h5aVZ .

Check it via explorer https://kmd.explorer.supernet.org/address/RPLuaFx1bafJGJtaV3u724k3ZyrD9h5aVZ and will see 7.77 KMD on it. Bingo.

Now let's generate WIF for it via "Private key to wallet import format" on http://gobittest.appspot.com/PrivateKey . But unfortunatelly there is a one problem here. Service generates WIF only for Bitcoin network Wink

Step "2 - Add 0x80 byte to the front" is only for BTC main network. For KMD we should add 0xBC (188) instead of 0x80 on this step. We can write a simple script for calc:

Code:
#!/bin/bash
export PRIV_KEY=596f75725072697a6549735269676874486572654f6e65537465703257696e21
export VER=bc
echo ${VER}${PRIV_KEY}
# Compute checksum (Double SHA256)
echo ${VER}${PRIV_KEY} -n | xxd -r -p | openssl dgst -sha256 -binary | openssl dgst -sha256
# Take the first 4 bytes of the double SHA256 hash (403f84da)
export CHECKSUM=403f84da
# Append checksum
echo ${VER}${PRIV_KEY}${CHECKSUM}
Result:
Code:
bc596f75725072697a6549735269676874486572654f6e65537465703257696e21403f84da
Now we should convert it to base58:
Code:
7K8LfzaZj6yoTM2PJhn8Cb4SQ3M7dkxCL47p2DDa5uMrLNRtqrh
Let's import this privkey in komodod or Agama and take win 7.77 KMD.

Somebody was succeded with this: https://kmd.explorer.supernet.org/tx/f33c2a55b4865b09d7a5f3a9d882d36c5f5e39db903d7c62e7a0dcb7ab3e5ccf Wink

Congratulations to the winners!

p.s. NN 2018 elections upcoming, you can find my proposal here - https://deckersu.github.io/ .







mybitcoin101
Sr. Member
****
Offline Offline

Activity: 378
Merit: 251


View Profile
March 13, 2018, 08:56:52 AM
 #14983

Agama link not working on announcement page. Yes, github is the place to go for those that understand this but the majority are simple, hard working people that want to be part of the project and need simple.

Thanks!
VoskCoin
Sr. Member
****
Offline Offline

Activity: 1414
Merit: 487


YouTube.com/VoskCoin


View Profile WWW
March 13, 2018, 10:32:03 PM
 #14984

VoskCoin is proud to announce that we have entered Komodo 2018 Notary Node Elections

Today I reviewed What is Komodo and BarterDEX along with covering some important topics of KMD such as 5% interest, dPoW, and dICO along with the upcoming Notary Node Elections
https://youtu.be/TGKazUHue6w



Here is a link to our full Komodo 2018 Notary Node Proposal - http://bit.ly/KMDVosk2018

Check out my Crypto YouTube channel
https://www.youtube.com/VoskCoin
If you enjoy my content click Subscribe
ptytrader
Sr. Member
****
Offline Offline

Activity: 466
Merit: 253


Imagine a world without banks.......


View Profile WWW
March 14, 2018, 01:56:42 AM
 #14985


|
   

              ▄
              █
             ▐█
            ▄██
 █▌          ▐█
 ██       █████
 ▐██▌      ████
  █████    ████
▐██████▌   ████
  ██████▌ █████
  █████████████
   ████████████
  ▐████████████
   ▐███████████
   ▐███████████
    ███████████
      █████████
       ████████
         ██████
           ▀███
             ▀▀
 

█▄▄              █▄▄
█████▄▄         ██████▄▄
████████       ████████ █
████████ ██   ████████ ██
████████ ███ ████████ ███
████████ ████ ██████ ████
████████ █████ ████ █████
████████ ▀█████ ██ ██████
████████    ▀▀██  ███████
▀███████         ▀███████
   ▀▀███            ▀▀███
       ▀                ▀
 
in
 

             █▀▀▀▄▄▄██▄
             █     ▀██▀
            █
         ▄▄▄█▄▄▄
 ████▄▄███████████▄▄████
▐██████▀▀███████▀▀██████▌
 ▀████    █████    ████▀
  ████▄  ▄█████▄  ▄████
  ▀███████████████████▀
   ▀████▄▀█████▀▄████▀
     ▀▀███▄▄▄▄▄███▀▀
         ▀▀▀▀▀▀▀


             ▄████▄▄   ▄
█▄          ██████████▀▄
███        ███████████▀
▐████▄     ██████████▌
▄▄██████▄▄▄▄█████████▌
▀████████████████████
  ▀█████████████████
  ▄▄███████████████
   ▀█████████████▀
    ▄▄█████████▀
▀▀██████████▀
    ▀▀▀▀▀
 

     ▄▄█▀▀ ▄▄▄▄▄▄▄▄ ▀▀█▄▄
   ▐██▄▄██████████████▄▄██▌
   ████████████████████████
  ▐████████████████████████▌
  ███████▀▀▀██████▀▀▀███████
 ▐██████     ████     ██████▌
 ███████     ████     ███████
▐████████▄▄▄██████▄▄▄████████▌
▐████████████████████████████▌
 █████▄▄▀▀▀▀██████▀▀▀▀▄▄█████
  ▀▀██████          ██████▀▀
      ▀▀▀            ▀▀▀
 

                   ▄▄████
              ▄▄████████▌
         ▄▄█████████▀███
    ▄▄██████████▀▀ ▄███▌
▄████████████▀▀  ▄█████
▀▀▀███████▀   ▄███████▌
      ██    ▄█████████
       █  ▄██████████▌
       █  ███████████
       █ ██▀ ▀██████▌
       ██▀     ▀████
                 ▀█▌
 
BTC




█▌
█▌          ▐█
█████       ██
████      ▐██▌
████    █████
████   ▐██████▌
█████ ▐██████
█████████████
████████████
████████████▌
███████████▌
███████████▌
███████████
█████████
████████
██████
███▀
▀▀
jl777B
Full Member
***
Offline Offline

Activity: 476
Merit: 133


View Profile
March 14, 2018, 08:56:03 AM
 #14986

One place for all the NN proposals: https://github.com/KomodoPlatform/vote2018
stan86
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 511


View Profile
March 14, 2018, 09:28:33 AM
 #14987

https://twitter.com/KomodoPlatform/status/973621936050855942
Proud to announce our partnership with @PantosIO alongside @LiskHQ, @Wavesplatform, @ethereum and #Bitcoin. Pantos' vision is to create seamless interoperability between all #blockchains and to unite the greatest minds and projects in the #blockchain space.

KomodoPlatform
Sr. Member
****
Offline Offline

Activity: 784
Merit: 253


Set Your Ideas Free


View Profile WWW
March 14, 2018, 11:35:58 AM
 #14988

Nice video @VoskCoin Smiley

◈▣ KOMODO ● Set Your Ideas Free ▣◈
.......AECOSYSTEFONATIVE BLOCKCHAINS.......
Blockchain Generator | Atomic Swaps | Decentralized Exchange | UTXO Contracts | Community-Led | Open Source | Scalable Ecosystem
jl777B
Full Member
***
Offline Offline

Activity: 476
Merit: 133


View Profile
March 14, 2018, 12:01:14 PM
 #14989

I would like to welcome all the newcomers to the KMD ecosystem. There are so many new people and projects now, I literally cannot keep track of it all. Considering I have a pretty high capacity to keep track of things, that is saying a lot.

stephenyork
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
March 14, 2018, 01:51:00 PM
 #14990

Weird thing happened today. I quit slack and couple hours later when i wanted to log back in, it says i'm not member of komodo slack anymore? can anyone on the team look into this? my email is stephenyork@protonmail.com

TIA
ptytrader
Sr. Member
****
Offline Offline

Activity: 466
Merit: 253


Imagine a world without banks.......


View Profile WWW
March 14, 2018, 03:11:49 PM
 #14991

Weird thing happened today. I quit slack and couple hours later when i wanted to log back in, it says i'm not member of komodo slack anymore? can anyone on the team look into this? my email is stephenyork@protonmail.com

TIA

I've checked and you are added. Please check again.

|
   

              ▄
              █
             ▐█
            ▄██
 █▌          ▐█
 ██       █████
 ▐██▌      ████
  █████    ████
▐██████▌   ████
  ██████▌ █████
  █████████████
   ████████████
  ▐████████████
   ▐███████████
   ▐███████████
    ███████████
      █████████
       ████████
         ██████
           ▀███
             ▀▀
 

█▄▄              █▄▄
█████▄▄         ██████▄▄
████████       ████████ █
████████ ██   ████████ ██
████████ ███ ████████ ███
████████ ████ ██████ ████
████████ █████ ████ █████
████████ ▀█████ ██ ██████
████████    ▀▀██  ███████
▀███████         ▀███████
   ▀▀███            ▀▀███
       ▀                ▀
 
in
 

             █▀▀▀▄▄▄██▄
             █     ▀██▀
            █
         ▄▄▄█▄▄▄
 ████▄▄███████████▄▄████
▐██████▀▀███████▀▀██████▌
 ▀████    █████    ████▀
  ████▄  ▄█████▄  ▄████
  ▀███████████████████▀
   ▀████▄▀█████▀▄████▀
     ▀▀███▄▄▄▄▄███▀▀
         ▀▀▀▀▀▀▀


             ▄████▄▄   ▄
█▄          ██████████▀▄
███        ███████████▀
▐████▄     ██████████▌
▄▄██████▄▄▄▄█████████▌
▀████████████████████
  ▀█████████████████
  ▄▄███████████████
   ▀█████████████▀
    ▄▄█████████▀
▀▀██████████▀
    ▀▀▀▀▀
 

     ▄▄█▀▀ ▄▄▄▄▄▄▄▄ ▀▀█▄▄
   ▐██▄▄██████████████▄▄██▌
   ████████████████████████
  ▐████████████████████████▌
  ███████▀▀▀██████▀▀▀███████
 ▐██████     ████     ██████▌
 ███████     ████     ███████
▐████████▄▄▄██████▄▄▄████████▌
▐████████████████████████████▌
 █████▄▄▀▀▀▀██████▀▀▀▀▄▄█████
  ▀▀██████          ██████▀▀
      ▀▀▀            ▀▀▀
 

                   ▄▄████
              ▄▄████████▌
         ▄▄█████████▀███
    ▄▄██████████▀▀ ▄███▌
▄████████████▀▀  ▄█████
▀▀▀███████▀   ▄███████▌
      ██    ▄█████████
       █  ▄██████████▌
       █  ███████████
       █ ██▀ ▀██████▌
       ██▀     ▀████
                 ▀█▌
 
BTC




█▌
█▌          ▐█
█████       ██
████      ▐██▌
████    █████
████   ▐██████▌
█████ ▐██████
█████████████
████████████
████████████▌
███████████▌
███████████▌
███████████
█████████
████████
██████
███▀
▀▀
stephenyork
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
March 14, 2018, 03:28:52 PM
 #14992

Weird thing happened today. I quit slack and couple hours later when i wanted to log back in, it says i'm not member of komodo slack anymore? can anyone on the team look into this? my email is stephenyork@protonmail.com

TIA

I've checked and you are added. Please check again.

Thank you ptytrader for your quick reply. Turns out that it tried to log me into sprnt.slack workspace instead of komodo-platform. The solution was to remove komodo from list of workspaces on the left and then to add it again as komodo-platform.slack.com

Everything's good now! Rock on!
dimao
Sr. Member
****
Offline Offline

Activity: 1162
Merit: 389


Keep Network


View Profile
March 14, 2018, 03:33:31 PM
 #14993

Weird thing happened today. I quit slack and couple hours later when i wanted to log back in, it says i'm not member of komodo slack anymore? can anyone on the team look into this? my email is stephenyork@protonmail.com

TIA

I've checked and you are added. Please check again.

Thank you ptytrader for your quick reply. Turns out that it tried to log me into sprnt.slack workspace instead of komodo-platform. The solution was to remove komodo from list of workspaces on the left and then to add it again as komodo-platform.slack.com

Everything's good now! Rock on!
The komodo has a very heavy purse. And there are no easy versions of the purse? And then I have a slow intelete.

enfarktus
Full Member
***
Offline Offline

Activity: 980
Merit: 152


View Profile
March 14, 2018, 03:43:58 PM
 #14994

Will the tutorial videos of BarterDex be published in various languages? There are many people who have not heard of Komodo and BarterDex yet. Especially chinese, japanese and turkish tutorial videos will be useful for promotion.
stephenyork
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
March 14, 2018, 03:54:01 PM
 #14995

Will the tutorial videos of BarterDex be published in various languages? There are many people who have not heard of Komodo and BarterDex yet. Especially chinese, japanese and turkish tutorial videos will be useful for promotion.

The tech is changing/improving so quickly that any tutorial will be seriously out of date within a week or so (sometimes even faster). There are other GUI-s coming out and the existing reference GUI still needs to mature a bit.

We are not in a noob friendly state yet, so there is no point to get them involved and then immediately disappointed, because everything changes all the time and doesn't work like they expected it to. Right now we need people that don't mind making an effort to join slack, learn first and then ask good relevant questions.
siulynotb
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
March 14, 2018, 03:55:40 PM
 #14996

Chainmakers is the first corporation built on top of the komodo platform!

notary.chainmakers.co/proposal.pdf

lusa
Jr. Member
*
Offline Offline

Activity: 109
Merit: 5

hodl


View Profile
March 14, 2018, 07:10:57 PM
 #14997

It is nice to see how komodo channel with very active with notary nodes election. I read all the proposals and I am happy to see many people who are technically very accomplished . If all of them continue to support the komodo platform, we will see very stable and good product with many different benefits. Price is reall important but decentralization and giving people chances to build something is more important. Price will follow.

dICO
Barterdex
dpow
Security

and many

Good luck all the notary candidates . I wish you best. Thanks for all your support.
MoneyJ
Hero Member
*****
Offline Offline

Activity: 1022
Merit: 504


GoMeat - Digitalizing Meat Stores - ICO


View Profile
March 15, 2018, 01:17:58 AM
 #14998

I bet right after the notary election, decentralized apps would be kept pouring and developers VCs alike recognize the full potentials of Komodo platform. As of the moment there are three being announced where in BlocNation will the first dICO ever.

█████████████████████████████
█████████████████████████████
█████████████████████████████
█████████████████████████████
████▀▀ ▄▄▄ ▀▀████▀ ▄▄▄▄ ▀████
███▀ ███████▄ ██ ▄██████▄ ███
███ ████▀▀▀▀▀  ▀█████████████
███▄ ███████▀ █▄ ▀██████▀▀███
████▄ ▀▀▀▀▀ ▄████▄ ▀▀▀▀ ▄████
█████████████████████████████
█████████████████████████████
█████████████████████████████
█████████████████████████████
.GoMeat.  300+ STORES ALREADY ONBOARD
 THE FIRST PROJECT OF ITS KIND

ONLY 160K TOKENS REMAINING
████
██
██
██
██
██
██
██
██
██
██
██
████
████
██
██
██
██
██
██
██
██
██
██
██
████
████████████████████████████
████████████████████████████
████████████████████████████
█████████████████▀▀  ███████
█████████████▀▀      ███████
█████████▀▀   ▄▄     ███████
█████▀▀    ▄█▀▀     ████████
█████████ █▀        ████████
█████████ █ ▄███▄   ████████
██████████████████▄▄████████
████████████████████████████
████████████████████████████
████████████████████████████
VoskCoin
Sr. Member
****
Offline Offline

Activity: 1414
Merit: 487


YouTube.com/VoskCoin


View Profile WWW
March 15, 2018, 04:10:59 AM
 #14999

Nice video @VoskCoin Smiley
Thank you! Cheesy

Check out my Crypto YouTube channel
https://www.youtube.com/VoskCoin
If you enjoy my content click Subscribe
VoskCoin
Sr. Member
****
Offline Offline

Activity: 1414
Merit: 487


YouTube.com/VoskCoin


View Profile WWW
March 15, 2018, 04:12:06 AM
 #15000

What is the Best Komodo Wallet? Today I created a video tutorial setup outlining the setup and usage of the Agama wallet (native+lite) along with the basics of voting in the elections and claiming your 5% KMD interest

https://youtu.be/OYjs2NPJsLU


If you enjoyed this video tutorial please consider supporting me in the Komodo 2018 Notary Node Elections

Official VoskCoin Komodo Notary Node Proposal 2018 - http://bit.ly/KMDVosk2018

Official Komodo Video Guide on how to vote in the 2018 KMD Notary Node Elections - https://goo.gl/oAWhE3

VoskCoin Notary Node Vote Addresses

NA - RQio4FHvdPJr5xP8LR2cDzoiUcZWHEWxDh

EU - RR14RjE8vU2eDEdBeBTuMpBbvHbs7vXgo5

AE - RS8gWL4s46LfkFVB1Q4jffiVmAz127RiJU

SH - RX4tdCnbb68MTJtSN63aaTcA79HHo3t2GA

Z-Address - zcfHmG2ZXVRvMkMqEySUXJ8XUUKMk7cJw3qNG59fwDv36JY9AoRr1oP7wq5b nB6qxt2KBvAcz5gWm2XTer76L4PC1qNhh4N

Check out my Crypto YouTube channel
https://www.youtube.com/VoskCoin
If you enjoy my content click Subscribe
Pages: « 1 ... 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 [750] 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 ... 878 »
  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!