Search content
Sort by

Showing 4 of 4 results by imyourm8
Post
Topic
Board Announcements (Altcoins)
[ANN] WoofCoin / New Coin [WOFC] GPU Mining/PoW
by
imyourm8
on 08/02/2023, 05:43:50 UTC


WOOF COIN

Since the beginning of the pandemic, pet surrendering rates have increased dramatically around the world. Waitlists for surrendering household pets have increased to a remarkable eight months as animal shelters and welfare organisations have seen an increase of 34% for animals needing help.

Typically, animal shelters are under resourced and under financed; relying heavily on donations and the volunteer efforts to assist animals.

This is where Woof Coin steps in. As avid lovers of dogs, we wanted to make a difference. Using the power of Proof of Work mining, we’ve created a coin where miners are contributing to the donation of money to animal welfare shelters. These shelters initially include the ASPCA who already have a cryptocurrency donation mechanism but with intention to expand to the RSPCA and other organizations suggested by the community. 

Our aim is to put animals first and we intend on developing ongoing relationships with pet shelters to help adoption.

Coins Specifications
21 billion supply
Block 2,100,000 halving (4 years estimated)
Algorithm: KawPOW
Proof of Work

Download Links:
https://github.com/WoofCoinMain/WoofCoin/releases/download/WoofCoin/WoofCoin.zip

Social
Coming soon!


Please reach out if you have any questions  Smiley
Post
Topic
Re: [ANN][SMART AIRDROP] eGAS Token | Smart Airdrop as Service (SAaS) project
by
imyourm8
on 09/11/2017, 12:22:39 UTC
If someone is curious, SAaS means - Scam as a service.
Post
Topic
Re: [ANN][SMART AIRDROP] eGAS Token | Smart Airdrop as Service (SAaS) project
by
imyourm8
on 09/11/2017, 11:32:14 UTC

Dev didn't explain how can it be not wroted on the site before the airdrop has been finished. It was total supply 12792000, total airdropped 10792000, devs 10% = 1000000 , how it was changed to 13792000/11792000?

less emotions, more discussion

12792000 not total but Airdropped through Smart Airdrop requests.

As we said before there were some miscalculations and on our website front page was a bit incorrect information about distribution proportions.
We have had edited ANN topic many times before start and it was a bit messy. So you could see many editions after start -see second answer in this topic.. for example. As it was posted not from eGAS name we asked another user to edit this. So, little by little we fixed mistakes but forgot to check if all numbers are correct in each source.




Thats ok, but the last problem here is in cotract code, can you please make your balance less than 1000000 and we will check the ownerreward function as someone said it can do everyone. I will try to set your balance back to 1 million.


This code can be executed only by contract owner. We can't check it. Obviously they won't show you ability to generate 1mil tokens out of thin air. Scam, close the thread.
Post
Topic
Re: [ANN][SMART AIRDROP] eGAS Token | Smart Airdrop as Service (SAaS) project
by
imyourm8
on 09/11/2017, 11:01:16 UTC
We have already explained our calculations. Function Owner Reward do not add anything. Total supply you can see on contract page.
I do not see what can we add.

$eGAS SAaS whitepaper draft is available on our website: http://ethgas.stream/eGASwhitepaper.pdf.
Introduction part explains idea of SAaS and its goals.
We happy to answer to all questions.
We are preparing GitHub repo with our draft sources so you can follow and comment.

I checked your code and it will refresh balance of owner every time

Code:
function OwnerReward() public {
    balances[owner] = _initialSupply; <--- set owner's balance to 1mil
    transfer(owner, balances[owner]);
}

function transfer(address _to, uint256 _amount) returns (bool success) {
        if (balances[msg.sender] >= _amount <--- ower's balance is 1mil it is equals to 1mil yes
            && _amount > 0 <---- well 1 mil more then 0
            && balances[_to] + _amount > balances[_to] <---- 1 mil + 1 mil more than 1 mil
) {
            balances[msg.sender] -= _amount; <--- remove 1 mil from sender (its current owner, u can't call this function)
            balances[_to] += _amount; <---- add 1 mil (still 1 mil)
            Transfer(msg.sender, _to, _amount); <---- do the final transfer
            return true;
        } else {
            return false;
        }
    }