Giter VIP home page Giter VIP logo

keeplottery's Introduction

KeepLottery

Configuration

The following environment variables should be set before deploying to Ropsten:

  • CONTRACT_OWNER_ETH_ACCOUNT_PRIVATE_KEY -> Private key of the contract owner
  • INFURA_ENDPOINT -> Ropsten Infura Endpoint

Deploy to Ropsten

truffle migrate --network ropsten

Setup

1. Deposit ETH in Lottery contract

ETH must be deposited in the Lottery contract so it can pay for the Keep Random Beacon. The owner can withdraw this at anytime using withdraw()

let lotteryInstance = await Lottery.deployed()
web3.eth.sendTransaction({value: web3.utils.toWei('10'), to: lotteryInstance.address, from: accounts[0]})

2. Deposit and set reward token allowance in Owner wallet

The owner must have some of the reward token in their wallet before issuing rewards. The owner must also give an allowance to the Lottery contract to grant permission to transfer tokens.

let lotteryInstance = await Lottery.deployed()
let erc20Mock = await ERC20Mock.deployed() // Replace with ERC20 reward token

await erc20Mock.mockMint(accounts[0], 10000);
await erc20Mock.approve(lotteryInstance.address, 10000)

Usage

View Outstanding Ticket Balance

let lotteryInstance = await Lottery.deployed()
let ticketInstance = await MintableTicket.deployed()

let ticketType = await lotteryInstance.getNextDrawTicketType()

let numTickets = await ticketInstance.maxIndex(ticketType)
numTickets.toString()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.