100 Shoreditch High Street, London E1 6JQ
- Coffee Espresso is great. Filter shots... not so much.
- Wifi Free and quick.
- Other Notes It's in the Ace Hotel, so great for meetings and easy to spread out.
| // Global Token ID counter | |
| Counter = 0 | |
| // Mapping from Token ID to user wallet address | |
| Database = Map<int, address>{} | |
| // Mint/create a NFT and assign it to a new wallet address | |
| function CreateToken (ownerAddress) { | |
| // Limit so that only specific addresses can query this function | |
| // i.e. only the Artist can mint new tokens of this type |
100 Shoreditch High Street, London E1 6JQ
| window.requestAnimFrame = (function(){ | |
| return window.requestAnimationFrame || | |
| window.webkitRequestAnimationFrame || | |
| window.mozRequestAnimationFrame || | |
| window.oRequestAnimationFrame || | |
| window.msRequestAnimationFrame || | |
| function(callback){ | |
| window.setTimeout(callback, 1000 / 60); | |
| }; | |
| })(); |