[V0.0.7 + V0.0.8] - SteemCasino - Roulette, bug fixes, UI changes by andreistalker

View this thread on steempeak.com
· @andreistalker · (edited)
$60.36
[V0.0.7 + V0.0.8] - SteemCasino - Roulette, bug fixes, UI changes
Welcome back to our latest update, this one might be the last before the official launch of SteemCasino, not 100% sure.

Join our <a href="https://discord.gg/H56cD59">Official Discord Server</a>.

You can see our github <a href="https://github.com/andreistalker/steemcasino">here</a>.<br>
Pull request <a href="https://github.com/andreistalker/steemcasino/pull/10">V0.0.7</a> and <a href="https://github.com/andreistalker/steemcasino/pull/12">V0.0.8</a>.

### Bug Fixes
- Fixed a bug in Rock, Paper, Scissors. If you were the Player 2 and choose Scissors it would change to Paper. What caused it?
```
<input id="bitcoin" type="radio" name="player" value="2">Scissors
```
Fix:
```
<input id="bitcoin" type="radio" name="player" value="3">Scissors
```

- Fixed bugs caused by the renaming of the coinfliputils.php to gamesutils.php

### New Features
- New Coinflip Animations thanks to @riverstyx <br>
https://steemitimages.com/0x0/https://media.giphy.com/media/8mt64TmtJEUnk93z8q/giphy.gif
- New Rock, Paper, Scissors thanks to @karmachela <br>
https://cdn.utopian.io/posts/bf05b3eb319c1cc50a22abf99beeda0d2bbasteem_casino_rock-scissor-paper.png
- New Mines Layout
![image.png](https://cdn.utopian.io/posts/e385cb7c8687e4deb8cff60005d7ac2b07d6image.png)
- New Layout for the Games List and a How To Play page!
![image.png](https://cdn.utopian.io/posts/93ad5bb504a005950c61a720417a0fe4c78dimage.png)
- New Layout for Coinflip
![image.png](https://cdn.utopian.io/posts/66db9fa536ec59844c6f86c9a15b291a3a0dimage.png)
Games are now displayed in a carousel and no more popups, suggested by @kizzbonez.
- New Layout for RPS
![image.png](https://cdn.utopian.io/posts/91b73edfe0e4ae59e43223be615d7558905aimage.png)
Games are now displayed in a carousel and no more popups, suggested by @kizzbonez.

How did we make this change? (It's the same for Coinflip and RPS)
On the page there are 2 iFrames, one for all the games and one for the old popups!
```
<iframe id="coinflip-iframe" width="100%" scrolling="no" style="overflow:hidden;" height="30%" frameborder="0" src="coinflipgames.php">
					Sorry, but your browser is not supported. Please upgrade your browser!
</iframe>
<iframe id="iframe" width="100%" scrolling="no" style="overflow:hidden;" height="100%" frameborder="0">
					Sorry, but your browser is not supported. Please upgrade your browser!
</iframe>
```

When you press the Start a new game button, this function is played, the location of the frame is changed to coinflipaction.php or rpsa.php
```
function startGame() {
				$("#iframe").attr("src", "coinflipaction.php?action=newgame");
				$(".coinflip-game").show();
}
```

And once you press the submit button, this script is played, it refreshes the games iframe to show your new game!
```
<script>
							parent.$("#coinflip-iframe").attr("src", "coinflipgames.php");
							parent.$("#iframe").attr("src", "");
							parent.$(".coinflip-game").hide();
</script>
```

And last but not least, <b>Roulette</b>

![image.png](https://cdn.utopian.io/posts/0696ec7df5c1410054207f616e859dd807f5image.png)
 
How did we created the roulette? Well we have a new node.js bot that actions the roulette, it uses socket.io to communicate to all players.

The main function that controls everything is changeState 
```
function changeState() {
	if(state) {
		state = 0;
	
		createGame();
		
		console.log("\nBetting round has started.");
		
		setTimeout(changeState, betTime);
	} else {
		state = 1;
		var currRoll = roll();
		var color = calculateColor(currRoll);
		
		lastRolls.unshift(currRoll);
		if(lastRolls.length == 6)
			lastRolls.splice(-1, 1);
		
		console.log(lastRolls);
		
		win(color, currRoll);
		
		setTimeout(changeState, rollTime);
	}
}
```

When it gets called it will change the state from 0 to 1 or from 1 to 0 (state = 1 means it's roll time, you cant bet, state = 0 means it's bet time, you can bet).

The function createGame truncates the roullete table from the database and changes the roulettestate from the info table to 0, then it emits a message to all the users on the roulette.php page with a timestamp, this is the time of the next roll.
```
function createGame() {
	
	timestamp = Math.floor(Date.now() / 1000) + Math.floor(betTime / 1000);
	
	con.query("TRUNCATE roulette", function (err, result) {
	});
	con.query("UPDATE info SET value = 0 WHERE name = 'roulettestate'", function (err, result) {
	});
	con.query("UPDATE info SET value = " + Math.floor(Date.now() / 1000) + " WHERE name = 'roulettetimestamp'", function (err, result) {
	});
	
	io.sockets.emit('message', {
		messageType: 3,
		timestamp: timestamp
	});
}
```

The function win creates a timestamp with the time on which you can bet sets the roulettestate from the info table to 1 and searches for every player in the roulette table from the database that bet on the same color as the roll, then it updates their balance, and last it sends a message to every player from roulette.php with the current roll, the last 5 rolls and the timestamp when they can bet again!

```
function win(color, currRoll) {
	
	timestamp = Math.floor(Date.now() / 1000) + Math.floor(rollTime/1000);
	
	con.query("UPDATE info SET value = 1 WHERE name = 'roulettestate'", function (err, result) {
	});
	con.query("UPDATE info SET value = " + Math.floor(Date.now() / 1000) + " WHERE name = 'roulettetimestamp'", function (err, result) {
	});
	con.query("SELECT * FROM roulette WHERE beton = " + color, function (err, result) {
		for( var i = 0, len = result.length; i < len; i++ ) {
			var reward = result[i].bet;
			var bet = result[i].bet;
			var player = result[i].player;
			if(color == 1 || color == 2)
				reward = reward * 2;
			else
				reward = reward * 14;
			
			con.query("SELECT * FROM users WHERE username = '" + result[i].player + "'", function (err, resultd) {
				if(resultd) {
					var balance = resultd[0].balance;
					var won = resultd[0].won;
					var losted = resultd[0].losted;
					
					balance = balance + reward;
					won = won + reward;
					losted = losted - bet;
					
					con.query("UPDATE users SET losted = '" + losted + "', balance = '" + balance + "', won = '" + won + "' WHERE username = '" + player + "'", function (err, result) {
					});
				}
			});
		}
	});
	
	io.sockets.emit('message', {
		messageType: 2,
		roll: currRoll,
		lastRolls: lastRolls,
		timestamp: timestamp
	});
}
```

    

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@andreistalker/v0-0-7-v0-0-8-steemcasino-roulette-bug-fixes-ui-changes">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
post_id42,360,987
authorandreistalker
permlinkv0-0-7-v0-0-8-steemcasino-roulette-bug-fixes-ui-changes
categoryutopian-io
json_metadata"{"platform": "github", "pullRequests": [{"requested_teams": [], "url": "https://api.github.com/repos/andreistalker/steemcasino/pulls/12", "title": "V0.0.8", "closed_at": "2018-04-06T13:42:38Z", "number": 12, "assignees": [], "assignee": null, "review_comment_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls/comments{/number}", "merge_commit_sha": "e3449d8acdfe8eb7ec813360101b71673441dc9d", "issue_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/12", "locked": false, "id": 179952173, "comments_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/12/comments", "author_association": "OWNER", "body": "## What's new\r\n- **ROULETTE!**\r\n- New layouts for the Game List, Coinflip and Rock, Paper, Scissors. Suggested by steemit.com/@kizzbonez\r\n- How to play page\r\n\r\n## Bug fixes\r\n- Fixed a bug in RPS, if you would enter a game as player 2 and choose scissors it would change to paper.\r\n- Fixed bugs caused by the rename of coinfliputils.php to gamesutils.php", "created_at": "2018-04-06T13:42:18Z", "_links": {"comments": {"href": "https://api.github.com/repos/andreistalker/steemcasino/issues/12/comments"}, "html": {"href": "https://github.com/andreistalker/steemcasino/pull/12"}, "review_comment": {"href": "https://api.github.com/repos/andreistalker/steemcasino/pulls/comments{/number}"}, "statuses": {"href": "https://api.github.com/repos/andreistalker/steemcasino/statuses/a72a54b3be07992b0cb075cce5be6eb119dec006"}, "review_comments": {"href": "https://api.github.com/repos/andreistalker/steemcasino/pulls/12/comments"}, "issue": {"href": "https://api.github.com/repos/andreistalker/steemcasino/issues/12"}, "commits": {"href": "https://api.github.com/repos/andreistalker/steemcasino/pulls/12/commits"}, "self": {"href": "https://api.github.com/repos/andreistalker/steemcasino/pulls/12"}}, "patch_url": "https://github.com/andreistalker/steemcasino/pull/12.patch", "requested_reviewers": [], "merged_at": "2018-04-06T13:42:38Z", "base": {"user": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "ref": "master", "repo": {"assignees_url": "https://api.github.com/repos/andreistalker/steemcasino/assignees{/user}", "language": "PHP", "url": "https://api.github.com/repos/andreistalker/steemcasino", "merges_url": "https://api.github.com/repos/andreistalker/steemcasino/merges", "has_wiki": true, "default_branch": "master", "commits_url": "https://api.github.com/repos/andreistalker/steemcasino/commits{/sha}", "watchers_count": 3, "license": {"spdx_id": "GPL-3.0", "key": "gpl-3.0", "name": "GNU General Public License v3.0", "url": "https://api.github.com/licenses/gpl-3.0"}, "downloads_url": "https://api.github.com/repos/andreistalker/steemcasino/downloads", "homepage": "", "id": 125468499, "created_at": "2018-03-16T05:35:51Z", "labels_url": "https://api.github.com/repos/andreistalker/steemcasino/labels{/name}", "name": "steemcasino", "archive_url": "https://api.github.com/repos/andreistalker/steemcasino/{archive_format}{/ref}", "stargazers_count": 3, "has_projects": true, "private": false, "pushed_at": "2018-04-06T13:47:15Z", "deployments_url": "https://api.github.com/repos/andreistalker/steemcasino/deployments", "forks_url": "https://api.github.com/repos/andreistalker/steemcasino/forks", "ssh_url": "git@github.com:andreistalker/steemcasino.git", "languages_url": "https://api.github.com/repos/andreistalker/steemcasino/languages", "issues_url": "https://api.github.com/repos/andreistalker/steemcasino/issues{/number}", "keys_url": "https://api.github.com/repos/andreistalker/steemcasino/keys{/key_id}", "git_commits_url": "https://api.github.com/repos/andreistalker/steemcasino/git/commits{/sha}", "statuses_url": "https://api.github.com/repos/andreistalker/steemcasino/statuses/{sha}", "subscribers_url": "https://api.github.com/repos/andreistalker/steemcasino/subscribers", "issue_comment_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/comments{/number}", "updated_at": "2018-04-06T13:42:40Z", "has_issues": true, "releases_url": "https://api.github.com/repos/andreistalker/steemcasino/releases{/id}", "git_refs_url": "https://api.github.com/repos/andreistalker/steemcasino/git/refs{/sha}", "pulls_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls{/number}", "hooks_url": "https://api.github.com/repos/andreistalker/steemcasino/hooks", "subscription_url": "https://api.github.com/repos/andreistalker/steemcasino/subscription", "blobs_url": "https://api.github.com/repos/andreistalker/steemcasino/git/blobs{/sha}", "contents_url": "https://api.github.com/repos/andreistalker/steemcasino/contents/{+path}", "collaborators_url": "https://api.github.com/repos/andreistalker/steemcasino/collaborators{/collaborator}", "events_url": "https://api.github.com/repos/andreistalker/steemcasino/events", "forks_count": 2, "owner": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "html_url": "https://github.com/andreistalker/steemcasino", "tags_url": "https://api.github.com/repos/andreistalker/steemcasino/tags", "description": "SteemCasino - Based on the steemit blockchain", "teams_url": "https://api.github.com/repos/andreistalker/steemcasino/teams", "forks": 2, "archived": false, "git_tags_url": "https://api.github.com/repos/andreistalker/steemcasino/git/tags{/sha}", "mirror_url": null, "comments_url": "https://api.github.com/repos/andreistalker/steemcasino/comments{/number}", "fork": false, "branches_url": "https://api.github.com/repos/andreistalker/steemcasino/branches{/branch}", "milestones_url": "https://api.github.com/repos/andreistalker/steemcasino/milestones{/number}", "clone_url": "https://github.com/andreistalker/steemcasino.git", "full_name": "andreistalker/steemcasino", "open_issues_count": 1, "trees_url": "https://api.github.com/repos/andreistalker/steemcasino/git/trees{/sha}", "has_pages": false, "git_url": "git://github.com/andreistalker/steemcasino.git", "issue_events_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/events{/number}", "has_downloads": true, "stargazers_url": "https://api.github.com/repos/andreistalker/steemcasino/stargazers", "svn_url": "https://github.com/andreistalker/steemcasino", "open_issues": 1, "watchers": 3, "contributors_url": "https://api.github.com/repos/andreistalker/steemcasino/contributors", "size": 9568, "notifications_url": "https://api.github.com/repos/andreistalker/steemcasino/notifications{?since,all,participating}", "compare_url": "https://api.github.com/repos/andreistalker/steemcasino/compare/{base}...{head}"}, "sha": "d7a6b24b69f82b4be5df4a470201e7bf25872ae1", "label": "andreistalker:master"}, "user": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "labels": [], "html_url": "https://github.com/andreistalker/steemcasino/pull/12", "diff_url": "https://github.com/andreistalker/steemcasino/pull/12.diff", "statuses_url": "https://api.github.com/repos/andreistalker/steemcasino/statuses/a72a54b3be07992b0cb075cce5be6eb119dec006", "review_comments_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls/12/comments", "head": {"user": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "ref": "v0.0.8", "repo": {"assignees_url": "https://api.github.com/repos/andreistalker/steemcasino/assignees{/user}", "language": "PHP", "url": "https://api.github.com/repos/andreistalker/steemcasino", "merges_url": "https://api.github.com/repos/andreistalker/steemcasino/merges", "has_wiki": true, "default_branch": "master", "commits_url": "https://api.github.com/repos/andreistalker/steemcasino/commits{/sha}", "watchers_count": 3, "license": {"spdx_id": "GPL-3.0", "key": "gpl-3.0", "name": "GNU General Public License v3.0", "url": "https://api.github.com/licenses/gpl-3.0"}, "downloads_url": "https://api.github.com/repos/andreistalker/steemcasino/downloads", "homepage": "", "id": 125468499, "created_at": "2018-03-16T05:35:51Z", "labels_url": "https://api.github.com/repos/andreistalker/steemcasino/labels{/name}", "name": "steemcasino", "archive_url": "https://api.github.com/repos/andreistalker/steemcasino/{archive_format}{/ref}", "stargazers_count": 3, "has_projects": true, "private": false, "pushed_at": "2018-04-06T13:47:15Z", "deployments_url": "https://api.github.com/repos/andreistalker/steemcasino/deployments", "forks_url": "https://api.github.com/repos/andreistalker/steemcasino/forks", "ssh_url": "git@github.com:andreistalker/steemcasino.git", "languages_url": "https://api.github.com/repos/andreistalker/steemcasino/languages", "issues_url": "https://api.github.com/repos/andreistalker/steemcasino/issues{/number}", "keys_url": "https://api.github.com/repos/andreistalker/steemcasino/keys{/key_id}", "git_commits_url": "https://api.github.com/repos/andreistalker/steemcasino/git/commits{/sha}", "statuses_url": "https://api.github.com/repos/andreistalker/steemcasino/statuses/{sha}", "subscribers_url": "https://api.github.com/repos/andreistalker/steemcasino/subscribers", "issue_comment_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/comments{/number}", "updated_at": "2018-04-06T13:42:40Z", "has_issues": true, "releases_url": "https://api.github.com/repos/andreistalker/steemcasino/releases{/id}", "git_refs_url": "https://api.github.com/repos/andreistalker/steemcasino/git/refs{/sha}", "pulls_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls{/number}", "hooks_url": "https://api.github.com/repos/andreistalker/steemcasino/hooks", "subscription_url": "https://api.github.com/repos/andreistalker/steemcasino/subscription", "blobs_url": "https://api.github.com/repos/andreistalker/steemcasino/git/blobs{/sha}", "contents_url": "https://api.github.com/repos/andreistalker/steemcasino/contents/{+path}", "collaborators_url": "https://api.github.com/repos/andreistalker/steemcasino/collaborators{/collaborator}", "events_url": "https://api.github.com/repos/andreistalker/steemcasino/events", "forks_count": 2, "owner": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "html_url": "https://github.com/andreistalker/steemcasino", "tags_url": "https://api.github.com/repos/andreistalker/steemcasino/tags", "description": "SteemCasino - Based on the steemit blockchain", "teams_url": "https://api.github.com/repos/andreistalker/steemcasino/teams", "forks": 2, "archived": false, "git_tags_url": "https://api.github.com/repos/andreistalker/steemcasino/git/tags{/sha}", "mirror_url": null, "comments_url": "https://api.github.com/repos/andreistalker/steemcasino/comments{/number}", "fork": false, "branches_url": "https://api.github.com/repos/andreistalker/steemcasino/branches{/branch}", "milestones_url": "https://api.github.com/repos/andreistalker/steemcasino/milestones{/number}", "clone_url": "https://github.com/andreistalker/steemcasino.git", "full_name": "andreistalker/steemcasino", "open_issues_count": 1, "trees_url": "https://api.github.com/repos/andreistalker/steemcasino/git/trees{/sha}", "has_pages": false, "git_url": "git://github.com/andreistalker/steemcasino.git", "issue_events_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/events{/number}", "has_downloads": true, "stargazers_url": "https://api.github.com/repos/andreistalker/steemcasino/stargazers", "svn_url": "https://github.com/andreistalker/steemcasino", "open_issues": 1, "watchers": 3, "contributors_url": "https://api.github.com/repos/andreistalker/steemcasino/contributors", "size": 9568, "notifications_url": "https://api.github.com/repos/andreistalker/steemcasino/notifications{?since,all,participating}", "compare_url": "https://api.github.com/repos/andreistalker/steemcasino/compare/{base}...{head}"}, "sha": "a72a54b3be07992b0cb075cce5be6eb119dec006", "label": "andreistalker:v0.0.8"}, "updated_at": "2018-04-06T13:42:42Z", "state": "closed", "commits_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls/12/commits", "milestone": null}, {"requested_teams": [], "url": "https://api.github.com/repos/andreistalker/steemcasino/pulls/10", "title": "V0.0.7", "closed_at": "2018-04-03T16:48:07Z", "number": 10, "assignees": [], "assignee": null, "review_comment_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls/comments{/number}", "merge_commit_sha": "d7a6b24b69f82b4be5df4a470201e7bf25872ae1", "issue_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/10", "locked": false, "id": 179157569, "comments_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/10/comments", "author_association": "OWNER", "body": "## New\r\n- Added the new coinflip animations and Rock, Paper, Scissors Images.\r\n- Changed the layout of mines.", "created_at": "2018-04-03T16:47:53Z", "_links": {"comments": {"href": "https://api.github.com/repos/andreistalker/steemcasino/issues/10/comments"}, "html": {"href": "https://github.com/andreistalker/steemcasino/pull/10"}, "review_comment": {"href": "https://api.github.com/repos/andreistalker/steemcasino/pulls/comments{/number}"}, "statuses": {"href": "https://api.github.com/repos/andreistalker/steemcasino/statuses/d545b7a5d0e3d8a87a432b3ef6805f278d2216e2"}, "review_comments": {"href": "https://api.github.com/repos/andreistalker/steemcasino/pulls/10/comments"}, "issue": {"href": "https://api.github.com/repos/andreistalker/steemcasino/issues/10"}, "commits": {"href": "https://api.github.com/repos/andreistalker/steemcasino/pulls/10/commits"}, "self": {"href": "https://api.github.com/repos/andreistalker/steemcasino/pulls/10"}}, "patch_url": "https://github.com/andreistalker/steemcasino/pull/10.patch", "requested_reviewers": [], "merged_at": "2018-04-03T16:48:07Z", "base": {"user": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "ref": "master", "repo": {"assignees_url": "https://api.github.com/repos/andreistalker/steemcasino/assignees{/user}", "language": "PHP", "url": "https://api.github.com/repos/andreistalker/steemcasino", "merges_url": "https://api.github.com/repos/andreistalker/steemcasino/merges", "has_wiki": true, "default_branch": "master", "commits_url": "https://api.github.com/repos/andreistalker/steemcasino/commits{/sha}", "watchers_count": 3, "license": {"spdx_id": "GPL-3.0", "key": "gpl-3.0", "name": "GNU General Public License v3.0", "url": "https://api.github.com/licenses/gpl-3.0"}, "downloads_url": "https://api.github.com/repos/andreistalker/steemcasino/downloads", "homepage": "", "id": 125468499, "created_at": "2018-03-16T05:35:51Z", "labels_url": "https://api.github.com/repos/andreistalker/steemcasino/labels{/name}", "name": "steemcasino", "archive_url": "https://api.github.com/repos/andreistalker/steemcasino/{archive_format}{/ref}", "stargazers_count": 3, "has_projects": true, "private": false, "pushed_at": "2018-04-06T13:47:15Z", "deployments_url": "https://api.github.com/repos/andreistalker/steemcasino/deployments", "forks_url": "https://api.github.com/repos/andreistalker/steemcasino/forks", "ssh_url": "git@github.com:andreistalker/steemcasino.git", "languages_url": "https://api.github.com/repos/andreistalker/steemcasino/languages", "issues_url": "https://api.github.com/repos/andreistalker/steemcasino/issues{/number}", "keys_url": "https://api.github.com/repos/andreistalker/steemcasino/keys{/key_id}", "git_commits_url": "https://api.github.com/repos/andreistalker/steemcasino/git/commits{/sha}", "statuses_url": "https://api.github.com/repos/andreistalker/steemcasino/statuses/{sha}", "subscribers_url": "https://api.github.com/repos/andreistalker/steemcasino/subscribers", "issue_comment_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/comments{/number}", "updated_at": "2018-04-06T13:42:40Z", "has_issues": true, "releases_url": "https://api.github.com/repos/andreistalker/steemcasino/releases{/id}", "git_refs_url": "https://api.github.com/repos/andreistalker/steemcasino/git/refs{/sha}", "pulls_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls{/number}", "hooks_url": "https://api.github.com/repos/andreistalker/steemcasino/hooks", "subscription_url": "https://api.github.com/repos/andreistalker/steemcasino/subscription", "blobs_url": "https://api.github.com/repos/andreistalker/steemcasino/git/blobs{/sha}", "contents_url": "https://api.github.com/repos/andreistalker/steemcasino/contents/{+path}", "collaborators_url": "https://api.github.com/repos/andreistalker/steemcasino/collaborators{/collaborator}", "events_url": "https://api.github.com/repos/andreistalker/steemcasino/events", "forks_count": 2, "owner": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "html_url": "https://github.com/andreistalker/steemcasino", "tags_url": "https://api.github.com/repos/andreistalker/steemcasino/tags", "description": "SteemCasino - Based on the steemit blockchain", "teams_url": "https://api.github.com/repos/andreistalker/steemcasino/teams", "forks": 2, "archived": false, "git_tags_url": "https://api.github.com/repos/andreistalker/steemcasino/git/tags{/sha}", "mirror_url": null, "comments_url": "https://api.github.com/repos/andreistalker/steemcasino/comments{/number}", "fork": false, "branches_url": "https://api.github.com/repos/andreistalker/steemcasino/branches{/branch}", "milestones_url": "https://api.github.com/repos/andreistalker/steemcasino/milestones{/number}", "clone_url": "https://github.com/andreistalker/steemcasino.git", "full_name": "andreistalker/steemcasino", "open_issues_count": 1, "trees_url": "https://api.github.com/repos/andreistalker/steemcasino/git/trees{/sha}", "has_pages": false, "git_url": "git://github.com/andreistalker/steemcasino.git", "issue_events_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/events{/number}", "has_downloads": true, "stargazers_url": "https://api.github.com/repos/andreistalker/steemcasino/stargazers", "svn_url": "https://github.com/andreistalker/steemcasino", "open_issues": 1, "watchers": 3, "contributors_url": "https://api.github.com/repos/andreistalker/steemcasino/contributors", "size": 9568, "notifications_url": "https://api.github.com/repos/andreistalker/steemcasino/notifications{?since,all,participating}", "compare_url": "https://api.github.com/repos/andreistalker/steemcasino/compare/{base}...{head}"}, "sha": "52169c6dd8c830e313a0e807f4e4ee84bc154a87", "label": "andreistalker:master"}, "user": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "labels": [], "html_url": "https://github.com/andreistalker/steemcasino/pull/10", "diff_url": "https://github.com/andreistalker/steemcasino/pull/10.diff", "statuses_url": "https://api.github.com/repos/andreistalker/steemcasino/statuses/d545b7a5d0e3d8a87a432b3ef6805f278d2216e2", "review_comments_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls/10/comments", "head": {"user": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "ref": "V0.0.7", "repo": {"assignees_url": "https://api.github.com/repos/andreistalker/steemcasino/assignees{/user}", "language": "PHP", "url": "https://api.github.com/repos/andreistalker/steemcasino", "merges_url": "https://api.github.com/repos/andreistalker/steemcasino/merges", "has_wiki": true, "default_branch": "master", "commits_url": "https://api.github.com/repos/andreistalker/steemcasino/commits{/sha}", "watchers_count": 3, "license": {"spdx_id": "GPL-3.0", "key": "gpl-3.0", "name": "GNU General Public License v3.0", "url": "https://api.github.com/licenses/gpl-3.0"}, "downloads_url": "https://api.github.com/repos/andreistalker/steemcasino/downloads", "homepage": "", "id": 125468499, "created_at": "2018-03-16T05:35:51Z", "labels_url": "https://api.github.com/repos/andreistalker/steemcasino/labels{/name}", "name": "steemcasino", "archive_url": "https://api.github.com/repos/andreistalker/steemcasino/{archive_format}{/ref}", "stargazers_count": 3, "has_projects": true, "private": false, "pushed_at": "2018-04-06T13:47:15Z", "deployments_url": "https://api.github.com/repos/andreistalker/steemcasino/deployments", "forks_url": "https://api.github.com/repos/andreistalker/steemcasino/forks", "ssh_url": "git@github.com:andreistalker/steemcasino.git", "languages_url": "https://api.github.com/repos/andreistalker/steemcasino/languages", "issues_url": "https://api.github.com/repos/andreistalker/steemcasino/issues{/number}", "keys_url": "https://api.github.com/repos/andreistalker/steemcasino/keys{/key_id}", "git_commits_url": "https://api.github.com/repos/andreistalker/steemcasino/git/commits{/sha}", "statuses_url": "https://api.github.com/repos/andreistalker/steemcasino/statuses/{sha}", "subscribers_url": "https://api.github.com/repos/andreistalker/steemcasino/subscribers", "issue_comment_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/comments{/number}", "updated_at": "2018-04-06T13:42:40Z", "has_issues": true, "releases_url": "https://api.github.com/repos/andreistalker/steemcasino/releases{/id}", "git_refs_url": "https://api.github.com/repos/andreistalker/steemcasino/git/refs{/sha}", "pulls_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls{/number}", "hooks_url": "https://api.github.com/repos/andreistalker/steemcasino/hooks", "subscription_url": "https://api.github.com/repos/andreistalker/steemcasino/subscription", "blobs_url": "https://api.github.com/repos/andreistalker/steemcasino/git/blobs{/sha}", "contents_url": "https://api.github.com/repos/andreistalker/steemcasino/contents/{+path}", "collaborators_url": "https://api.github.com/repos/andreistalker/steemcasino/collaborators{/collaborator}", "events_url": "https://api.github.com/repos/andreistalker/steemcasino/events", "forks_count": 2, "owner": {"following_url": "https://api.github.com/users/andreistalker/following{/other_user}", "url": "https://api.github.com/users/andreistalker", "site_admin": false, "type": "User", "html_url": "https://github.com/andreistalker", "starred_url": "https://api.github.com/users/andreistalker/starred{/owner}{/repo}", "followers_url": "https://api.github.com/users/andreistalker/followers", "organizations_url": "https://api.github.com/users/andreistalker/orgs", "avatar_url": "https://avatars0.githubusercontent.com/u/12441705?v=4", "repos_url": "https://api.github.com/users/andreistalker/repos", "id": 12441705, "events_url": "https://api.github.com/users/andreistalker/events{/privacy}", "gravatar_id": "", "login": "andreistalker", "subscriptions_url": "https://api.github.com/users/andreistalker/subscriptions", "received_events_url": "https://api.github.com/users/andreistalker/received_events", "gists_url": "https://api.github.com/users/andreistalker/gists{/gist_id}"}, "html_url": "https://github.com/andreistalker/steemcasino", "tags_url": "https://api.github.com/repos/andreistalker/steemcasino/tags", "description": "SteemCasino - Based on the steemit blockchain", "teams_url": "https://api.github.com/repos/andreistalker/steemcasino/teams", "forks": 2, "archived": false, "git_tags_url": "https://api.github.com/repos/andreistalker/steemcasino/git/tags{/sha}", "mirror_url": null, "comments_url": "https://api.github.com/repos/andreistalker/steemcasino/comments{/number}", "fork": false, "branches_url": "https://api.github.com/repos/andreistalker/steemcasino/branches{/branch}", "milestones_url": "https://api.github.com/repos/andreistalker/steemcasino/milestones{/number}", "clone_url": "https://github.com/andreistalker/steemcasino.git", "full_name": "andreistalker/steemcasino", "open_issues_count": 1, "trees_url": "https://api.github.com/repos/andreistalker/steemcasino/git/trees{/sha}", "has_pages": false, "git_url": "git://github.com/andreistalker/steemcasino.git", "issue_events_url": "https://api.github.com/repos/andreistalker/steemcasino/issues/events{/number}", "has_downloads": true, "stargazers_url": "https://api.github.com/repos/andreistalker/steemcasino/stargazers", "svn_url": "https://github.com/andreistalker/steemcasino", "open_issues": 1, "watchers": 3, "contributors_url": "https://api.github.com/repos/andreistalker/steemcasino/contributors", "size": 9568, "notifications_url": "https://api.github.com/repos/andreistalker/steemcasino/notifications{?since,all,participating}", "compare_url": "https://api.github.com/repos/andreistalker/steemcasino/compare/{base}...{head}"}, "sha": "d545b7a5d0e3d8a87a432b3ef6805f278d2216e2", "label": "andreistalker:V0.0.7"}, "updated_at": "2018-04-03T16:48:10Z", "state": "closed", "commits_url": "https://api.github.com/repos/andreistalker/steemcasino/pulls/10/commits", "milestone": null}], "users": ["riverstyx", "karmachela", "kizzbonez."], "questions": [{"question": "Is the project description formal?", "selected": 0, "answers": [{"selected": true, "score": 10, "value": "Yes it\u2019s straight to the point"}, {"selected": false, "score": 5, "value": "Need more description "}, {"selected": false, "score": 0, "value": "Not too descriptive"}]}, {"question": "Is the language / grammar correct?", "selected": 0, "answers": [{"selected": true, "score": 20, "value": "Yes"}, {"selected": false, "score": 10, "value": "A few mistakes"}, {"selected": false, "score": 0, "value": "It's pretty bad"}]}, {"question": "Was the template followed?", "selected": 1, "answers": [{"selected": false, "score": 10, "value": "Yes"}, {"selected": true, "score": 5, "value": "Partially"}, {"selected": false, "score": 0, "value": "No"}]}, {"question": "How do you rate the amount of work?", "selected": 2, "answers": [{"selected": false, "score": 20, "value": "Very High"}, {"selected": false, "score": 16, "value": "High"}, {"selected": true, "score": 12, "value": "Medium"}, {"selected": false, "score": 7, "value": "Low"}, {"selected": false, "score": 3, "value": "Very Low"}]}, {"question": "How do you rate the impact on the Project?", "selected": 2, "answers": [{"selected": false, "score": 20, "value": "Very High"}, {"selected": false, "score": 16, "value": "High"}, {"selected": true, "score": 12, "value": "Medium"}, {"selected": false, "score": 7, "value": "Low"}, {"selected": false, "score": 3, "value": "Very Low"}]}], "app": "utopian/1.0.0", "score": 44, "type": "development", "links": ["https://cdn.utopian.io/posts/e385cb7c8687e4deb8cff60005d7ac2b07d6image.png", "https://cdn.utopian.io/posts/93ad5bb504a005950c61a720417a0fe4c78dimage.png", "https://cdn.utopian.io/posts/66db9fa536ec59844c6f86c9a15b291a3a0dimage.png", "https://cdn.utopian.io/posts/91b73edfe0e4ae59e43223be615d7558905aimage.png", "https://cdn.utopian.io/posts/0696ec7df5c1410054207f616e859dd807f5image.png"], "moderator": {"time": "2018-04-09T04:33:55.282Z", "reviewed": true, "flagged": false, "pending": false, "account": "codingdefined"}, "community": "utopian", "tags": ["utopian-io", "utopian-io", "steemcasino"], "repository": {"full_name": "andreistalker/steemcasino", "owner": {"login": "andreistalker"}, "id": 125468499, "fork": false, "html_url": "https://github.com/andreistalker/steemcasino", "name": "steemcasino"}, "image": ["https://cdn.utopian.io/posts/e385cb7c8687e4deb8cff60005d7ac2b07d6image.png"], "format": "markdown"}"
created2018-04-06 14:24:42
last_update2018-04-09 04:34:03
depth0
children3
net_rshares23,307,067,924,615
last_payout2018-04-13 14:24:42
cashout_time1969-12-31 23:59:59
total_payout_value41.921 SBD
curator_payout_value18.435 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6,558
author_reputation7,394,160,765,861
root_title"[V0.0.7 + V0.0.8] - SteemCasino - Roulette, bug fixes, UI changes"
beneficiaries
0.
weight2,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (48)
@codingdefined ·
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  
properties (23)
post_id42,714,981
authorcodingdefined
permlinkre-andreistalker-v0-0-7-v0-0-8-steemcasino-roulette-bug-fixes-ui-changes-20180409t043413926z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-09 04:34:18
last_update2018-04-09 04:34:18
depth1
children0
net_rshares4,105,330,339
last_payout2018-04-16 04:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length172
author_reputation71,157,752,447,147
root_title"[V0.0.7 + V0.0.8] - SteemCasino - Roulette, bug fixes, UI changes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@utopian-io ·
### Hey @andreistalker I am @utopian-io. I have just upvoted you!
#### Achievements
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
post_id42,762,569
authorutopian-io
permlinkre-andreistalker-v0-0-7-v0-0-8-steemcasino-roulette-bug-fixes-ui-changes-20180409t122657545z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-09 12:27:00
last_update2018-04-09 12:27:00
depth1
children0
net_rshares0
last_payout2018-04-16 12:27:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,011
author_reputation152,913,012,544,965
root_title"[V0.0.7 + V0.0.8] - SteemCasino - Roulette, bug fixes, UI changes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steembottrackerr ·
<center>https://steemitimages.com/200x200/https://s-media-cache-ak0.pinimg.com/originals/81/28/3c/81283c6aed7bdb5b9f8ad73b8ce62c2f.jpg</center>
---
<center>Hello @andreistalker , Congratulations ✅ . Your content began to appear in the hot section.
I am the information account of "SteemBotTracker" site.
</center>
---
<center>
Your Informations
Total SBD: 22.188
Total STEEM: 0.811
</center>
---
<center>
I recommend to increase this;
You can make "Resteem" and advertise to the followers of the whale accounts.
"Resteem Bot" for you;
✅ The most profitable Resteem Whale @byresteem  has 25.500 Followers + 7000 Sp + Upvote with min +55 accounts. 
</center>
---
<center>
You can purchase "upvote" by bid bots.
"Upvote Bot"
✅ The most profitable whale in the last round. @rocky1
</center>
---
<center>
I'm taking this message once. You need to use the #steembottrackerr tag for more information.
Those who "upvote" this interpretation will be awarded a "UpVote" prize of 100 Sbd per week per person.
I am a bot, I can not answer the comment. I hope I could help. Good luck. Sorry if I disturbed you.
</center>
properties (22)
post_id44,453,518
authorsteembottrackerr
permlink20180420t033519439z
categoryutopian-io
json_metadata"{"app": "steemjs/test", "tags": ["advice"]}"
created2018-04-20 03:35:24
last_update2018-04-20 03:35:24
depth1
children0
net_rshares0
last_payout2018-04-27 03:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,136
author_reputation-1,494,322,874,274
root_title"[V0.0.7 + V0.0.8] - SteemCasino - Roulette, bug fixes, UI changes"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000