Pages:
Author

Topic: [OLD THREAD] Silk Network: Silk, DarkSilk and Weaver - page 24. (Read 77057 times)

sr. member
Activity: 597
Merit: 253
... and the swarm is headed towards us
So what can we expect for sunday?

- SLK release
- Official website
- Weaver?
- Start of ICO Darksilk?
- Blockchain for SLK?
- More info (whitepaper)?
- Other?

I am aiming for Sunday/Monday/Tuesday/Wednesday in terms of actual release. But yes, all of the above.

It's going to be a very exciting week!
sr. member
Activity: 441
Merit: 251
Is it set so SLK will be able to traded the same day as it goes live or do we need to wait a few days for Poloniex to fix it? Dont really want to change to SLK before it got a market up to trade with.

Because the swapping period is indefinite you could always postpone your swap, until the market shows on Poloniex.
member
Activity: 170
Merit: 10
Is it set so SLK will be able to traded the same day as it goes live or do we need to wait a few days for Poloniex to fix it? Dont really want to change to SLK before it got a market up to trade with.

All of this will be arranged, Poloniex have been notified some time ago about the planned release and are simply waiting in the stalls.

Thank you, i was just wondering the same.
hero member
Activity: 490
Merit: 500
CTO - Silk Network
Is it set so SLK will be able to traded the same day as it goes live or do we need to wait a few days for Poloniex to fix it? Dont really want to change to SLK before it got a market up to trade with.

All of this will be arranged, Poloniex have been notified some time ago about the planned release and are simply waiting in the stalls.
hero member
Activity: 616
Merit: 500
Is it set so SLK will be able to traded the same day as it goes live or do we need to wait a few days for Poloniex to fix it? Dont really want to change to SLK before it got a market up to trade with.
hero member
Activity: 490
Merit: 500
CTO - Silk Network
Difficulty Adjustment Proposal

This is to deter manipulation by miners.

This will cause DGW3 to look at the last 675 blocks and then adjust difficulty.

675blocks * 64seconds = 12 hours

Fun number:

Prime factorization of 675:
33 × 52
(3 × 3 × 3 × 5 × 5)

Code:
unsigned int static DarkGravityWave3(const CBlockIndex* pindexLast) {
    const CBlockIndex *BlockLastSolved = pindexLast;
    const CBlockIndex *BlockReading = pindexLast;
    int64_t nActualTimespan = 0;
    int64_t LastBlockTime = 0;
    int64_t PastBlocksMin = 675; // ~12 Hours
    int64_t PastBlocksMax = 675; // ~12 Hours
    int64_t CountBlocks = 0;
    uint256 PastDifficultyAverage;
    uint256 PastDifficultyAveragePrev;

    if (BlockLastSolved == NULL || BlockLastSolved->nHeight == 0 || BlockLastSolved->nHeight < PastBlocksMin) {
        return Params().ProofOfWorkLimit().GetCompact();
    }

    for (unsigned int i = 1; BlockReading && BlockReading->nHeight > 0; i++) {
        if (PastBlocksMax > 0 && i > PastBlocksMax) { break; }
        CountBlocks++;

        if(CountBlocks <= PastBlocksMin) {
            if (CountBlocks == 1) { PastDifficultyAverage.SetCompact(BlockReading->nBits); }
            else { PastDifficultyAverage = ((PastDifficultyAveragePrev * CountBlocks) + (uint256().SetCompact(BlockReading->nBits))) / (CountBlocks + 1); }
            PastDifficultyAveragePrev = PastDifficultyAverage;
        }

        if(LastBlockTime > 0){
            int64_t Diff = (LastBlockTime - BlockReading->GetBlockTime());
            nActualTimespan += Diff;
        }
        LastBlockTime = BlockReading->GetBlockTime();

        if (BlockReading->pprev == NULL) { assert(BlockReading); break; }
        BlockReading = BlockReading->pprev;
    }

    uint256 bnNew(PastDifficultyAverage);

    int64_t _nTargetTimespan = CountBlocks * Params().TargetSpacing();

    if (nActualTimespan < _nTargetTimespan/3)
        nActualTimespan = _nTargetTimespan/3;
    if (nActualTimespan > _nTargetTimespan*3)
        nActualTimespan = _nTargetTimespan*3;

    // Retarget
    bnNew *= nActualTimespan;
    bnNew /= _nTargetTimespan;

    if (bnNew > Params().ProofOfWorkLimit()){
        bnNew = Params().ProofOfWorkLimit();
    }

    return bnNew.GetCompact();
}

Thoughts? Reasons for, reasons against.....
sr. member
Activity: 441
Merit: 251
What positions or tasks lay ahead short and long term?

This might be hard for some, but it is up to us ourselves to think of ways in which we can contribute. I can not possible comprehend your skillset or the tasks that could be done by you, only you can do that. The question from me to you, what do you feel like doing?
newbie
Activity: 56
Merit: 0
What positions or tasks lay ahead short and long term?
sr. member
Activity: 441
Merit: 251
So what can we expect for sunday?

- SLK release
- Official website
- Weaver?
- Start of ICO Darksilk?
- Blockchain for SLK?
- More info (whitepaper)?
- Other?

I am aiming for Sunday/Monday/Tuesday/Wednesday in terms of actual release. But yes, all of the above.

Is there anything we can do to help?

Yes, and this is to everyone silently lurking. If we want this project to grow and mature into a decentralised entity then we are dependent on helping hands. I remember back in 2014 after the initial developer left, a lot of enthusiasm surged once it was decided that community members would take over under the lead of Arteleis. (notice the mention Roll Eyes )

Now, in 2016, after a large part of the development had to take place behind closed doors by a small group to ensure focus and pace, we should broaden our scope a bit to things outside of development. If the community is willing to be more involved again, any skillset could be a welcome addition, privmsg me if you think you can contribute.

newbie
Activity: 66
Merit: 0
So what can we expect for sunday?

- SLK release
- Official website
- Weaver?
- Start of ICO Darksilk?
- Blockchain for SLK?
- More info (whitepaper)?
- Other?

I am aiming for Sunday/Monday/Tuesday/Wednesday in terms of actual release. But yes, all of the above.

what about POW? When will it start? with wallet realse?


It will start with the darksilk release, stick arround to be one of the first to find out Wink
legendary
Activity: 2310
Merit: 1422
Ok, thanks for the info regarding the wallet. I mean I kind of like the old wallet but it needs some small fixes.
Waiting for the news about the project at large

sr. member
Activity: 416
Merit: 250
So what can we expect for sunday?

- SLK release
- Official website
- Weaver?
- Start of ICO Darksilk?
- Blockchain for SLK?
- More info (whitepaper)?
- Other?

I am aiming for Sunday/Monday/Tuesday/Wednesday in terms of actual release. But yes, all of the above.

what about POW? When will it start? with wallet realse?
full member
Activity: 232
Merit: 100
So what can we expect for sunday?

- SLK release
- Official website
- Weaver?
- Start of ICO Darksilk?
- Blockchain for SLK?
- More info (whitepaper)?
- Other?

I am aiming for Sunday/Monday/Tuesday/Wednesday in terms of actual release. But yes, all of the above.

Is there anything we can do to help?
member
Activity: 170
Merit: 10
So what can we expect for sunday?

- SLK release
- Official website
- Weaver?
- Start of ICO Darksilk?
- Blockchain for SLK?
- More info (whitepaper)?
- Other?

I am aiming for Sunday/Monday/Tuesday/Wednesday in terms of actual release. But yes, all of the above.

Much interesting :-)
legendary
Activity: 1148
Merit: 1000
Are you guys going to have the website up upon release of the SLK client and ICO for DRKSLK?



Oh yes.

Sweet!
newbie
Activity: 56
Merit: 0
OMG that's awesome! Cheesy
hero member
Activity: 490
Merit: 500
CTO - Silk Network
So what can we expect for sunday?

- SLK release
- Official website
- Weaver?
- Start of ICO Darksilk?
- Blockchain for SLK?
- More info (whitepaper)?
- Other?

I am aiming for Sunday/Monday/Tuesday/Wednesday in terms of actual release. But yes, all of the above.
newbie
Activity: 56
Merit: 0
So what can we expect for sunday?

- SLK release
- Official website
- Weaver?
- Start of ICO Darksilk?
- Blockchain for SLK?
- More info (whitepaper)?
- Other?
hero member
Activity: 490
Merit: 500
CTO - Silk Network
Are you guys going to have the website up upon release of the SLK client and ICO for DRKSLK?



Oh yes.
legendary
Activity: 1148
Merit: 1000
Are you guys going to have the website up upon release of the SLK client and ICO for DRKSLK?

Pages:
Jump to: