Guest User

Untitled

a guest
Oct 21st, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. var Migrations = artifacts.require("./Migrations.sol");
  2. var OrdersFacilitator = artifacts.require("./OrdersFacilitator.sol")
  3.  
  4. module.exports = function(deployer) {
  5. deployer.deploy(Migrations);
  6. deployer.deploy(OrdersFacilitator);
  7. };
  8.  
  9. networks: {
  10. development: {
  11. host: "localhost",
  12. port: 9545,
  13. network_id: "*"
  14. }
  15. }
  16.  
  17. //...
  18. class_defaults:
  19. { from: '0x627306090abab3a6e1400e9345bc60c78a8bef57',
  20. gas: 6721975,
  21. gasPrice: 100000000000 },
  22. currentProvider:
  23. HttpProvider {
  24. host: 'http://127.0.0.1:9545/',
  25. timeout: 0,
  26. user: undefined,
  27. password: undefined,
  28. headers: undefined,
  29. send: [Function],
  30. sendAsync: [Function],
  31. _alreadyWrapped: true },
  32. network_id: '4447' }
  33.  
  34. var facilitator;
  35. OrdersFacilitator.deployed().then(x => facilitator = x);
Add Comment
Please, Sign In to add comment