Bitcoin Forum
May 08, 2024, 04:38:06 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 »  All
  Print  
Author Topic: [ANN][FLX] Flash [Encrypted Messaging] [Stealth Addressing] Decentralized,Secure  (Read 4809 times)
CryptoFlash (OP)
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
June 13, 2016, 02:29:41 AM
Last edit: June 24, 2016, 08:11:43 PM by CryptoFlash
 #1

https://i.imgur.com/qM2mhGt.png

Technical Specifications

Stealth Addressing
Encrypted Messaging

Proof of Work
Algorithm: Scrypt
Max Coin supply: 1~m
Block Times: 60s
Premine: <2~%


POW Schedule
Blocks 1- 500: 500FLX
Blocks 500-1000: 250FLX
Blocks 1000-1500: 50FLX
Blocks 1500-2000: 25FLX
POS Schedule
Random is 1-100
1-500: rand * 500;
500-1000: rand * 250;
1000-1500: rand * 75;
Proof of Stake
Interest: 1.25%

10MB Block sizes to have plenty room for growth.

No TX Fees, the way it should be.

Wallets
Source: https://github.com/CryptoFlashDev/Flash


Windows and Mac Builds are here.

Mac wallet that works on OS X 10.6 to 10.11


Windows: https://mega.nz/#!GNAVABJa!57d6Prdalub4XyR2gzf5T2cYpbu3LtSlPxRH1QuuVRY

MAC: https://mega.nz/#!HEwEhQIS!89qiWt9NN2nZADsFsvqlk6jZvUd2mc6521L3mh_m-II

Exchanges
https://novaexchange.com/market/BTC_FLX/
https://yobit.net/en/trade/FLX/BTC

Social
https://twitter.com/CryptoFlashDev

Follow us on twitter!

1715186286
Hero Member
*
Offline Offline

Posts: 1715186286

View Profile Personal Message (Offline)

Ignore
1715186286
Reply with quote  #2

1715186286
Report to moderator
Whoever mines the block which ends up containing your transaction will get its fee.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715186286
Hero Member
*
Offline Offline

Posts: 1715186286

View Profile Personal Message (Offline)

Ignore
1715186286
Reply with quote  #2

1715186286
Report to moderator
1715186286
Hero Member
*
Offline Offline

Posts: 1715186286

View Profile Personal Message (Offline)

Ignore
1715186286
Reply with quote  #2

1715186286
Report to moderator
1715186286
Hero Member
*
Offline Offline

Posts: 1715186286

View Profile Personal Message (Offline)

Ignore
1715186286
Reply with quote  #2

1715186286
Report to moderator
madjihad
Full Member
***
Offline Offline

Activity: 227
Merit: 260



View Profile
June 13, 2016, 02:34:16 AM
 #2


Technical Specifications

  • Stealth Addressing
  • Encrypted Messaging

    Proof of Work
    • Algorithm: Scrypt
    • Max Coin supply: 1~m
    • Block Times: 60s
    • Premine: <2~%


    POW Schedule
    Blocks 1- 500: 500FLX
    Blocks 500-1000: 250FLX
    Blocks 1000-1500: 50FLX
    Blocks 1500-2000: 25FLX
    POS Schedule
    Random is 1-100
    1-500: rand * 500;
    500-1000: rand * 250;
    1000-1500: rand * 75;
    Proof of Stake
    • Interest: 1.25%



    Wallets
    • Source:https://github.com/CryptoFlashDev/Flash


      Pool

      [/list][/list]
      Shows promise but BTC is pumping and your ann sucks.
      Woody20285
      Legendary
      *
      Offline Offline

      Activity: 1218
      Merit: 1002


      Supporting DMD, ERC & PIO


      View Profile
      June 13, 2016, 02:42:55 AM
       #3

      Sorry, I have trouble with POS that is random.
      Just guess it is my suspicious nature. I am always
      suspicious that the person running the coin will be
      the luckiest staker in the world vs. the rest of us.

      Not saying you are dishonest - just, it is not for me.
      bao_zou
      Member
      **
      Offline Offline

      Activity: 63
      Merit: 10


      View Profile
      June 13, 2016, 02:47:40 AM
       #4

      not much info on the op.

      tekyboy
      Hero Member
      *****
      Offline Offline

      Activity: 508
      Merit: 500


      TekyBoy Crypto Services


      View Profile WWW
      June 13, 2016, 02:59:57 AM
       #5

      Sorry, I have trouble with POS that is random.
      Just guess it is my suspicious nature. I am always
      suspicious that the person running the coin will be
      the luckiest staker in the world vs. the rest of us.

      Not saying you are dishonest - just, it is not for me.

      same opinion here

      Code:
      / miner's coin base reward
      int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
      {
          int64_t nSubsidy = 0;

          if (nHeight == 1)
          {
              nSubsidy = 10000 * COIN;
          }
          else if (nHeight <= 500)
          {
              nSubsidy = 500 * COIN;
          }
          else if (nHeight <= 1000)
          {
              nSubsidy = 250 * COIN;
          }
          else if (nHeight <= 1500)
          {
              nSubsidy = 50 * COIN;
          }
          else if (nHeight <= 2000)
          {
              nSubsidy = 25 * COIN;
          } else {
              nSubsidy = 0 * COIN;
          }
          if (fDebug && GetBoolArg("-printcreation")) {
              printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
          }
          return nSubsidy + nFees;
      }

      // miner's coin stake reward based on coin age spent (coin-days)
      int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees,  int nHeight)
      {
          int64_t nSubsidy = 0;
          int64_t rand = generateMTRandom(nHeight, 100);
          if (nHeight <= 500)
          {
                  nSubsidy = (rand * 500) * COIN;
          }
          else if (nHeight <= 1000)
          {
                  nSubsidy = (rand * 250) * COIN;
          }
          else if (nHeight <= 1500)
          {
                   nSubsidy = (rand * 75) * COIN;
          }
          else
          {
              nSubsidy = nCoinAge * (COIN_YEAR_REWARD) * 33 / (365 * 33 + 8);
          }

      ostrogoto2012
      Hero Member
      *****
      Offline Offline

      Activity: 1134
      Merit: 501



      View Profile
      June 13, 2016, 03:20:45 AM
       #6

      any bounty dev? thanks


                           ██████████
                         ████████████
                       ██████████████
                     ████████████████
                   ██████████████████
      ██████████           ██████████          ██████████
      ██████████           ██████████          ██████████
      ██████████           ██████████          ██████████
      ██████████           ██████████          ██████████
      ██████████           █████████           ██████████
      ██████████           ███████     ██████████████████
      ██████████████████████████     ████████████████████
      ████████████████████████     ██████████████████████
      ██████████████████████     ████████████████████████
      ████████████████████     ██████████████████████████
      ██████████████████     ███████           ██████████
      ██████████           █████████           ██████████
      ██████████          ██████████           ██████████
      ██████████          ██████████           ██████████
      ██████████          ██████████           ██████████
      ██████████          ██████████           ██████████
                          ██████████████████
                          ████████████████
                          ██████████████
                          ████████████
                          ██████████
      .PrimeDAO - An Adoption Engine for Open Finance.
      CjMapope
      Legendary
      *
      Offline Offline

      Activity: 1820
      Merit: 1092


      ~Full-Time Minter since 2016~


      View Profile WWW
      June 13, 2016, 03:31:36 AM
       #7

      2 workers on tekyboy pool ,where did you get win wallet i don't see any link.

      the source is there, just not compiled for windows
      which personally i don't find fair for those who can't do it themselves, but meh not my coin ;p

      ~Got this girl in my bed, a roof over my head, i mint a couple coins a week, and thats how i make bread~
      ~On the 12th day of Hatzvah, OGminer said to me: "compute root of the merkle hash tree!"~
      Prohashing  -- Simply the best Multipool!
      CryptoFlash (OP)
      Newbie
      *
      Offline Offline

      Activity: 12
      Merit: 0


      View Profile
      June 13, 2016, 03:39:17 AM
       #8

      2 workers on tekyboy pool ,where did you get win wallet i don't see any link.

      the source is there, just not compiled for windows
      which personally i don't find fair for those who can't do it themselves, but meh not my coin ;p

      So ninja and no wallet -great fair start ,thx dev  Angry
      Our team is working on compiling the windows wallet. I am linux. If you beat him to it I will give whoever can compile it a bounty.
      Mohareb
      Full Member
      ***
      Offline Offline

      Activity: 224
      Merit: 100



      View Profile
      June 13, 2016, 08:19:57 AM
       #9

      How to compile for windows wallet? i will do that for you.

      ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
      PRIMEDICE
      The Premier Bitcoin Gambling Experience - Most Trusted & Popular Bitcoin Game @PrimeDice
      ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
      AleScamHole
      Sr. Member
      ****
      Offline Offline

      Activity: 504
      Merit: 250

      Don't you looooooove how offensive my name sounds?


      View Profile
      June 13, 2016, 08:24:21 AM
       #10

      How to compile for windows wallet? i will do that for you.

      lol. if they knew would they not just do it themselves?  OP is a linux guy, as stated...

      jesus people, THINK before you speak....
      notsofast
      Legendary
      *
      Offline Offline

      Activity: 1517
      Merit: 1042


      @notsofast


      View Profile WWW
      June 13, 2016, 11:02:13 AM
       #11

      Frontloaded blocks... no Win wallet... this is clearly set up for a dev instamine.

      Pass.

      twitter.com/notsofast
      CryptoFlash (OP)
      Newbie
      *
      Offline Offline

      Activity: 12
      Merit: 0


      View Profile
      June 13, 2016, 01:03:26 PM
       #12

      Frontloaded blocks... no Win wallet... this is clearly set up for a dev instamine.

      Pass.
      Windows wallet will be up today. He says He is compiling it, 5K to first poster who has wallet compiled.
      satochi2
      Newbie
      *
      Offline Offline

      Activity: 38
      Merit: 0


      View Profile
      June 13, 2016, 02:13:24 PM
       #13

      The information you provided is so small that I can't judge whether the coin is good or bad.
      Mohareb
      Full Member
      ***
      Offline Offline

      Activity: 224
      Merit: 100



      View Profile
      June 13, 2016, 02:16:10 PM
       #14

      How to compile for windows wallet? i will do that for you.

      lol. if they knew would they not just do it themselves?  OP is a linux guy, as stated...

      jesus people, THINK before you speak....

      He's using linux and i am using windows, Thus i can compile for window. Right? Maybe i am newbie in program languages.

      ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
      PRIMEDICE
      The Premier Bitcoin Gambling Experience - Most Trusted & Popular Bitcoin Game @PrimeDice
      ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
      adorid
      Sr. Member
      ****
      Offline Offline

      Activity: 445
      Merit: 250


      View Profile
      June 13, 2016, 07:11:57 PM
       #15

      nice difficulty )) interesting why)

      thrax
      Sr. Member
      ****
      Offline Offline

      Activity: 253
      Merit: 252


      View Profile
      June 13, 2016, 07:29:52 PM
       #16

      2 workers on tekyboy pool ,where did you get win wallet i don't see any link.

      the source is there, just not compiled for windows
      which personally i don't find fair for those who can't do it themselves, but meh not my coin ;p

      So ninja and no wallet -great fair start ,thx dev  Angry
      Our team is working on compiling the windows wallet. I am linux. If you beat him to it I will give whoever can compile it a bounty.

      How much is the bounty worth? Nobody will take up your offer for a tiny bounty, but for a big one you will get dozens of offers to help. Developers need to know they are getting a good incentive to help out.
      adorid
      Sr. Member
      ****
      Offline Offline

      Activity: 445
      Merit: 250


      View Profile
      June 13, 2016, 07:35:20 PM
       #17

      5k, read careful

      CryptoFlash (OP)
      Newbie
      *
      Offline Offline

      Activity: 12
      Merit: 0


      View Profile
      June 14, 2016, 12:00:11 AM
       #18

      2 workers on tekyboy pool ,where did you get win wallet i don't see any link.

      the source is there, just not compiled for windows
      which personally i don't find fair for those who can't do it themselves, but meh not my coin ;p

      So ninja and no wallet -great fair start ,thx dev  Angry
      Our team is working on compiling the windows wallet. I am linux. If you beat him to it I will give whoever can compile it a bounty.

      How much is the bounty worth? Nobody will take up your offer for a tiny bounty, but for a big one you will get dozens of offers to help. Developers need to know they are getting a good incentive to help out.

      I offered 5k, thats half the premine.
      jpdorn
      Sr. Member
      ****
      Offline Offline

      Activity: 429
      Merit: 259


      View Profile
      June 16, 2016, 12:38:02 AM
       #19

      im not suprised that yolobit added a coin with no explorer or wallet
      BTC-BTC-BTC
      Legendary
      *
      Offline Offline

      Activity: 1582
      Merit: 1001


      www.neutroncoin.com


      View Profile
      June 16, 2016, 02:26:01 AM
       #20

      im not suprised that yolobit added a coin with no explorer or wallet

      lol.. It appears they will add any coins nowadays.

      Pages: [1] 2 3 »  All
        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!