
The Alive Casino platform is now Live.
The Alive Casino is the world’s first cryptocurrency casino to offer a virtual reality gambling experience. Place your bets and WIN!
Airdrop & Bounty
After the successful KYC process, bounties have been transferred to all participants.
ALIVE TOKEN ECOSYSTEM

Quarterly Profits:
Investors: 30% of Alive Casino quarterly profits will be distributed to token holders who have their tokens located in the Alive’s Hold Wallet. Receive crypto quarterly profits!
Players: 10% of Alive Casino quarterly profits will be used to give back to our most loyal players, Alive Token players. If you choose to play with Alive Tokens, you will participate in our quarterly giveaways where you can earn cash back, merchandise, VR Headsets, electronic devices and more.
Token Burn:
As a rule, every three months, Alive’s in-house token engineers will burn 5% of all AL tokens the house earns each quarter reducing the token supply and creating a higher demand for the token.
As a rule, every three months, Alive’s in-house token engineers will burn 5% of all AL tokens the house earns each quarter reducing the token supply and creating a higher demand for the token.
Exclusive Gaming:
Alive Tokens will be useful to access exclusive token holder only features, such as early-release of virtual reality games and special events.
Payment:
Among the Alive token’s key functions is, of course, payment. During the early stages of the platform’s operations, players will be able to deposit bitcoin along with other cryptocurrencies. Once the volume of players is consolidated, the Alive Token and Fiat Payments will be integrated.
MARKET POTENTIAL FOR THE ALIVE CASINO
The online gambling market shows a huge potential for an online casino to take “the first mover advantage” by integrating two of the fastest adopting technologies. The combination of blockchain technology providing fast, secure and transparent transactions, with the new experiences that virtual reality is bringing to the world, one must believe that the future of gambling is Alive.
“First mover advantage matters a lot. Just like bitcoin was the first cryptocurrency, the Alive Casino is going to be the first online casino to integrate two of the fastest growing technologies”.
- Pablo Gerboles, CEO of Alive Entertainment LLC.
VIRTUAL REALITY GAMBLING EXPERIENCE
ALIVE DEALERS
LIVE STUDIO DEVELOPMENT
GAMES & FEATURES
The Blockchain avoids the use of intermediaries for pay outs, allowing players to receive their earnings quicker.

All cryptocurrencies are safe from malicius attacks by using HSM technology and cryptography.

Transactions will be carried out under the supervision of smart contracts, providing transparency to the user.

ALIVE SYSTEM FEATURES
INITIAL TOKEN DISTRIBUTION

70% Token Sale
FIRST STAGE, ANGEL INVESTMENT
Exclusively 5 Mn ALs to Angel Investors. No more tokens will be released until MVP presentation.
SECOND STAGE, TOKEN PACKAGES RELEASE
10 Mn Alive Tokens will be released in the form of packages after the platform is released.
IEO FINAL STAGE TOKEN RELEASE + LISTING
55 Mn Alive Tokens will be released to the public through an IEO. Everyone is then welcome to join the project and participate in the quarterly distributions.
10% Founding Team
10 Mn Alive Tokens are reserved for the founding team, locked for a 36 month period.
5% Future Research and Development
5 Mn Alive Tokens are reserved for future Blockchain R&D.
5% Initial Operating Costs
5 Mn Alive Tokens are reserved for legal advisors, marketing services and partnership negotiations.
8% Initial Casino Bankroll
8 Mn Alive Tokens are reserved to grow the casino user-base. Bonus campaigns, casino airdrops, special jackpots and more.
2% Bounty Programme (Sale and Casino community support)
2 Mn Alive Tokens are reserved for Bounty, Airdrops and other future affiliate marketing initiatives.
SALE PROCEED ALLOCATION

1.ANGEL INVESTMENT SALE ALLOCATION
100% MVP Development.
Capital raised from the Exclusive sale contributors is 50% of the budget needed to complete our MVP. Other 50% is funded by the team members and donations.
2. SECOND STAGE AND IEO SALE ALLOCATION
During these stages, the platform will be fully functional and ready to satisfy new customers with bonuses and merchandise. The allocation of the funds of these three fundraisers will be as follows:
33% Product Development
Product and Technology Development. Development of new VR Games, Blockchain Games, Payment Systems, Multi-Wallet, Merchandise Store Rewards System etc.
30% Marketing
Budget for the Marketing of the platform & user acquisition.
20% Blockchain R&D
Budget for blockchain research and development. Investigation and implementation of new blockchain features and improvements.
7% Business Partnerships
Budget for new licenses, strategic partnerships, collaborations & tie-ups.
10% Team Building & Retention
Budget to grow our team and retaining current team members in order to make the company scalable. Developers, Support Agents, Marketing Managers, Lawyers, Designers etc.
4% ICO Expenses
The cost of the whole ICO process, including audits, contracts, advertisement and more.
ROADMAP
2018
Q1, 2018
Market analysis
Alive Casino Project Design
Project Website Design
2018
Software Provider Partnership Agreement
Project Website Release
Whitepaper Release
Q2, 2018
2018
Exclusive Sale
Kickoff development of the platform
Casino Video Prototype
Q3, 2018
2018
SportsBook Live and Pre-Match Software Integration
Live Casino Games Integration
Testing of Games with Bitcoin Balance (MBT)
Q4,2018
2019
Casino Slots Integration
Virtual Games Integration
Testing of Games with Bitcoin Balance (MBT)
Q1, 2019
2019
Poker Integration
Bonuses and Promotional Offers
Testing of Poker and Bonuses
Sports Betting Android App Release
Q2,2019
2019
Kick Off Development Of The Hold Wallet
Deposits Payment System Integration (Coingate Partner)
Withdrawals Payment System Integration (B2binpay Partner)
Q3, 2019
2019
Alive Casino Merchandise Store Design
Alive Casino Platform Final Style Design
Final Testing and Release of the platform (MVP)
Evolution Gaming Live Games Integration (Partner)
Q4,2019
2020
Merchandise Store Release
Hold Wallet Demo
Poker App Release (Windows & iOS)
Fiat Payments Integration (Astropay Partner)
Q1, 2020
2020
Token Packages Released For Second Sale, 5 Mn Tokens
Alive Token Payment System Integration
Announcement of Alive Casino New Brand Ambassadors
Multi-Wallet Initial Development
Q2, 2020
2020
Hold Wallet Release
New Slot Games Integration
iOs Sports Betting App Release
Launch Of Blockchain Webinars
Q3, 2020
2020
First Private Profit Distribution
New Gaming Apps Development Announcement
Second Sale, 10 Mn Tokens
Q4, 2020
2021
Second Private Profit Distribution
IEO & Listing
Expansion to New Regions (New languages available)
Q1, 2021
2021
Third Private Profit Distribution
VR Casino Integration
Virtual Reality Live Games Release (Real Dealers)
Q2, 2021
2021
Fourth Private Profit Distribution
Multiwallet Release
Updated Roadmap For Future Plans
Q3, 2021
SMART CONTRACT
pragma solidity ^0.4.24;
import './Burnable.sol';
import "./Pausable.sol";
import "./SafeMath.sol";
contract StandardToken is Burnable, Pausable {
using SafeMath for uint;
uint private total_supply;
uint public decimals;
// This creates an array with all balances
mapping (address => uint) private balances;
mapping (address => mapping (address => uint)) private allowed;
// This generates a public event on the blockchain that will notify clients
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
constructor(uint supply, uint token_decimals, address token_retriever) public {
decimals = token_decimals;
total_supply = supply * uint(10) ** decimals ; // 10 ** 9, 1000 millions
balances[token_retriever] = total_supply; // Give to the creator all initial tokens
}
function totalSupply() public view returns (uint) {
return total_supply;
}
//Public interface for balances
function balanceOf(address account) public view returns (uint balance) {
return balances[account];
}
//Public interface for allowances
function allowance(address account, address spender) public view returns (uint remaining) {
return allowed[account][spender];
}
//Internal transfer, only can be called by this contract
function _transfer(address _from, address _to, uint _value) internal {
require(_to != 0x0); //Burn is an specific op
require(balances[_from] >= _value); //Enough ?
require(balances[_to] + _value >= balances[_to]);
// Save this for an assertion in the future
uint previousBalances = balances[_from] + balances[_to];
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(_from, _to, _value);
// Asserts are used to use static analysis to find bugs in your code. They should never fail
assert(balances[_from] + balances[_to] == previousBalances);
}
function transfer(address _to, uint _value) public whenNotPaused returns (bool success){
_transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint _value) public whenNotPaused returns (bool success) {
require(_value <= allowed[_from][msg.sender]); // Check allowance
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub( _value);
_transfer(_from, _to, _value);
return true;
}
function _approve(address _holder, address _spender, uint _value) internal {
require(_value <= total_supply);
require(_value >= 0);
allowed[_holder][_spender] = _value;
emit Approval(_holder, _spender,_value);
}
function approve(address _spender, uint _value) public returns (bool success) {
_approve(msg.sender, _spender, _value);
return true;
}
function safeApprove(address _spender, uint _currentValue, uint _value) public returns (bool success) {
require(allowed[msg.sender][_spender] == _currentValue);
_approve(msg.sender, _spender, _value);
return true;
}
//Destroy tokens
function _burnTokens(address from, uint _value) internal {
require(balances[from] >= _value); // Check if the sender has enough
balances[from] = balances[from].sub(_value); // Subtract from the sender
total_supply = total_supply.sub(_value); // Updates totalSupply
emit Burned(from, _value);
}
function burn(uint _value) public whenNotPaused returns (bool success) {
_burnTokens(msg.sender,_value);
return true;
}
}
import "./Releasable.sol";
//Define interface for releasing the token transfer after a successful crowdsale.
contract ReleasableToken is Releasable, StandardToken {
//We restrict transfer by overriding it
function transfer(address to, uint value) public canOperate(msg.sender) returns (bool success) {
return super.transfer(to, value);
}
//We restrict transferFrom by overriding it
//"from" must be an agent before released
function transferFrom(address from, address to, uint value) public canOperate(from) returns (bool success) {
return super.transferFrom(from, to, value);
}
//We restrict burn by overriding it
function burn(uint value) public canOperate(msg.sender) returns (bool success) {
return super.burn(value);
}
}
contract Token is ReleasableToken {
string public name = "ALIVE";
string public symbol = "AL";
//Constructor
constructor(uint supply, uint token_decimals, address token_retriever) StandardToken(supply, token_decimals, token_retriever) public { }
}
TEAM
MAIN PARTNERS

BetConstruct is an award-winning developer and provider of online and land-based gaming solutions with development, sales and service centers in 16 countries. All partners benefit from the BetConstruct Spring platform with its powerful back office tools and all-inclusive services that empower operators growth and help contain their costs.

Coindatadesktop is a website designed and created by the Alive Casino's development team. A fresh new platform full of data for tracking cryptocurrencies, upcoming ICOs and daily news about the market. It has very unique features with the purpose to provide investors and traders all the information they need in one place. It is also completely free to register.

CoinMercenary helps stakeholders confirm the logic, quality and security of their Ethereum smart contracts using a comprehensive and standardized audit process. The audits combine compliance, security, a comprehensive checklist of known pitfalls and attack vectors, Solidity design patterns and best practices.