Coder Social home page Coder Social logo

razorlove-legacy / foocoin Goto Github PK

View Code? Open in Web Editor NEW
14.0 5.0 63.0 12.29 MB

Scrypt PoW Cryptocurrency Template - Resurrected from Barcoin

License: MIT License

Python 0.89% Shell 0.03% Prolog 0.21% C++ 26.12% C 1.11% TypeScript 71.59% Objective-C 0.05%

foocoin's Introduction

FooCoin (FOO)

Build Status

Scrypt Hashcash PoW Template

foocoin's People

Contributors

catmanix avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

foocoin's Issues

No FOO !

Code still using BTC as abbr for coinunits

Can you release a new foocoin for scrypt

Hi. Can you release a new foocoin scrypt base example with your foocode, with integration of merged mining and how to use migrate from your Source to a source with allow to handle with the new coinparams.cpp. The Problem is that i used in my Coin, that in main.cpp

static int64 nTargetTimespan = 60 * 6; // FOO:
static int64 nTargetSpacing = 9; // FOO:
static int64 nInterval = nTargetTimespan / nTargetSpacing;
static int64 nReTargetHistoryFact = 2; // look at 2 times the retarget

and later

// From block 1200000 retarget the difficulty every xxx blocks
// Retarget factor to 2

if(pindexLast->nHeight >= 1200000)
{
nTargetTimespan = 30 * 60; //1800sec = 200 Blocks = all 30 Minutes or all 200 BK
nTargetSpacing = 19; // 19 sec
nInterval = nTargetTimespan / nTargetSpacing;
nReTargetHistoryFact = 2;
}
else if(pindexLast->nHeight >= 511111)
{
nTargetTimespan = 5 * 60 * 60; // 5 hours
nTargetSpacing = 29; // 9 sec
nInterval = nTargetTimespan / nTargetSpacing;
nReTargetHistoryFact = 6;
}
else
{
nTargetTimespan = 60 * 6; // FOO:
nTargetSpacing = 9; // FOO:
nInterval = nTargetTimespan / nTargetSpacing;
nReTargetHistoryFact = 2;
}

That all work good and Coin is running very good and stable..
But how now to update to a newer Damon or what a like is to integrate now merged into your Foocoin scrypt hashcat?
Can you release a FOO sam code base with merged integration? Is that possible? thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.