All Projects → blockstarter → blockstarter

blockstarter / blockstarter

Licence: other
This is a white label solution to create a contribution crypto-wallet that can be used in your ICO campaign.

Programming Languages

livescript
113 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to blockstarter

ethereum-crowdsale
0xcert protocol crowdsale contracts for Ethereum blockchain.
Stars: ✭ 15 (-28.57%)
Mutual labels:  smart-contracts, ico, token
Awesome Blockchain Kor
<블록체인의 정석>, <하이퍼레저 블록체인 개발> 소스코드 및 참고자료 저장소
Stars: ✭ 243 (+1057.14%)
Mutual labels:  smart-contracts, ico, token
Rico
The Responsible Initial Coin Offering Framework
Stars: ✭ 83 (+295.24%)
Mutual labels:  smart-contracts, ico
Cryptocurrencyawesome
Cryptocurrency study materials resources
Stars: ✭ 118 (+461.9%)
Mutual labels:  smart-contracts, ico
colonySale
Colony Token and Crowdsale Contracts
Stars: ✭ 27 (+28.57%)
Mutual labels:  smart-contracts, token
Ethereum Ico Contract
Tested Ethereum ICO Contract for Token Crowdsales
Stars: ✭ 59 (+180.95%)
Mutual labels:  smart-contracts, ico
Ico Contracts
🎉 ICO Contracts of the ALIS.
Stars: ✭ 69 (+228.57%)
Mutual labels:  smart-contracts, ico
Ico Contracts
Ethereum smart contracts that have been used during successful ICOs
Stars: ✭ 160 (+661.9%)
Mutual labels:  smart-contracts, ico
ethereum-contracts
Knowledge Ethereum Smart Contracts
Stars: ✭ 41 (+95.24%)
Mutual labels:  smart-contracts, token
ethereum-erc20
Fungible token implementation for the Ethereum blockchain.
Stars: ✭ 27 (+28.57%)
Mutual labels:  smart-contracts, token
Simple-Game-ERC-721-Token-Template
🔮 Very Simple ERC-721 Smart Contract Template to create your own ERC-721 Tokens on the Ethereum Blockchain, with many customizable Options 🔮
Stars: ✭ 83 (+295.24%)
Mutual labels:  smart-contracts, token
Ethereumbook
Mastering Ethereum, by Andreas M. Antonopoulos, Gavin Wood
Stars: ✭ 11,663 (+55438.1%)
Mutual labels:  smart-contracts, token
Ethereum Erc721
Non-fungible token implementation for Ethereum-based blockchains.
Stars: ✭ 253 (+1104.76%)
Mutual labels:  smart-contracts, token
Smart Contracts
Ethereum smart contracts for security and utility tokens
Stars: ✭ 1,187 (+5552.38%)
Mutual labels:  smart-contracts, ico
crowdsale-smart-contract
No description or website provided.
Stars: ✭ 39 (+85.71%)
Mutual labels:  smart-contracts, token
crypto-watchdog
Crypto Watchdog is an open-source developer friendly project, periodically queries crypto market and notifies potential pumps & recently added tokens/coins via web-hooks.
Stars: ✭ 22 (+4.76%)
Mutual labels:  coin, token
erc1363-payable-token
Code implementation for the ERC-1363 Payable Token
Stars: ✭ 83 (+295.24%)
Mutual labels:  smart-contracts, token
ethereum-dex
Decentralized exchange implementation for the 0xcert protocol on the Ethereum blockchain.
Stars: ✭ 18 (-14.29%)
Mutual labels:  smart-contracts, token
rICO-smart-contracts
Smart contracts for the Reversible ICO (rICO)
Stars: ✭ 38 (+80.95%)
Mutual labels:  smart-contracts, ico
erc721
The reference implementation of the ERC-721 non-fungible token standard.
Stars: ✭ 989 (+4609.52%)
Mutual labels:  smart-contracts, token

Crypto-wallet for ICO campaign

How to launch ICO? This is tool for it.

Examples of successful ICO: 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:

let blockstarter = require('blockstarter');

Get balance of cryptocurrency address

// 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

// 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 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

Support

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].