https://github.com/blockstarter/blockstarter
This is a white label solution to create a contribution crypto-wallet that can be used in your ICO campaign.
https://github.com/blockstarter/blockstarter
bitcoin blockchain blockstarter coin contribution cryptocurrency ethereum ico initial-coin-offering kickstarter litecoin smart-contracts token
Last synced: 4 months ago
JSON representation
This is a white label solution to create a contribution crypto-wallet that can be used in your ICO campaign.
- Host: GitHub
- URL: https://github.com/blockstarter/blockstarter
- Owner: blockstarter
- Created: 2017-05-23T21:32:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-25T14:34:31.000Z (over 8 years ago)
- Last Synced: 2025-05-24T00:48:59.306Z (5 months ago)
- Topics: bitcoin, blockchain, blockstarter, coin, contribution, cryptocurrency, ethereum, ico, initial-coin-offering, kickstarter, litecoin, smart-contracts, token
- Language: LiveScript
- Homepage: http://blockstarter.co/
- Size: 243 KB
- Stars: 21
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Crypto-wallet for ICO campaign
How to launch ICO? This is tool for it.
Examples of successful ICO: [http://blockstarter.co](http://blockstarter.co)
Install
=======
This is a white label solution to create a contribution crypto-wallet that can be used in your ICO campaign.## Install
NodeJS is required.
```
npm i blockstarter
```## Usage
In your Nodejs project:
```Javascript
let blockstarter = require('blockstarter');
```### Get balance of cryptocurrency address
```js
// Get balance of BTC address
blockstarter.balance.btc('BTC_PUBLIC_ADDRESS', (amount) => {
console.log(amount.toString());
})// Get balance of LTC address
blockstarter.balance.ltc('LTC_PUBLIC_ADDRESS', (amount) => {
console.log(amount.toString());
})// Get balance of ETH address
blockstarter.balance.eth('ETH_PUBLIC_ADDRESS', (amount) => {
console.log(amount.toString());
})
```### Get cryptocurrency rates
```js
// Get BTC/USD rate
blockstarter.rate.btc( (usd) => {
console.log(usd);
})// Get LTC/USD rate
blockstarter.rate.ltc( (usd) => {
console.log(usd);
})// Get ETH/USD rate
blockstarter.rate.eth( (usd) => {
console.log(usd);
})
```## More code examples
More info
```
Please check out `test` folder
```Please check out [./test](./test) folder for more usage examples.
## Need help or integration?
If you need a help or integration with your sytem, please contact us at [blockstarter.co](http://blockstarter.co)
Support
```
a.stegno@gmail.com
leksandr.siman@gmail.com
```