@gnosis.pm/pm-contracts
Version:
Collection of smart contracts for the Gnosis prediction market platform
9 lines (7 loc) • 371 B
JavaScript
const CategoricalEvent = artifacts.require('CategoricalEvent')
const ScalarEvent = artifacts.require('ScalarEvent')
const OutcomeToken = artifacts.require('OutcomeToken')
const EventFactory = artifacts.require('EventFactory')
module.exports = function (deployer) {
deployer.deploy(EventFactory, CategoricalEvent.address, ScalarEvent.address, OutcomeToken.address)
}