DaoCasino/bankroller-core

View on GitHub
data/dapps/dicespec/public/bankroller.js

Summary

Maintainability
A
2 hrs
Test Coverage
/* global DCLib fetch */

function getGameContract (callback) {
  fetch('http://127.0.0.1:8181/?get=contract&name=Dice').then(function (res) {
    return res.json()
  }).then(function (localGameContract) {
    callback({
      address:localGameContract.address,
      abi: JSON.parse(localGameContract.abi)
    })
  })
}

(function () {
  getGameContract(function (gameContract) {
    return new DCLib.DApp({
      slug     : 'dicetest_v32',
      contract : gameContract
    })
  })
})()