Skip to content

Commit

Permalink
mainnet deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisbontje committed Apr 26, 2016
1 parent 6ed63fd commit 844f441
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ gulp deploy
## Gas Costs

```
new SimpleMarketMorden: 909958 gas
SimpleMarketMorden.offer: 140395-186235 gas
SimpleMarketMorden.cancel: 33882 gas
SimpleMarketMorden.buy: 49306-51707 gas
new SimpleMarket: 927556 gas
SimpleMarket.offer: 140395-186235 gas
SimpleMarket.cancel: 33882 gas
SimpleMarket.buy: 49306-51707 gas
```

## TODOs
Expand Down
5 changes: 5 additions & 0 deletions dappfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ environments:
otc:
class: SimpleMarketMorden
address: '0xaaa17aff5a660f73baf140ee02ff805fb79fd845'
live:
objects:
otc:
class: SimpleMarketMainnet
address: '0xf51bc4633f5924465c8c6317169faf3e4312e82f'
4 changes: 2 additions & 2 deletions frontend/client/templates/noethereum.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ <h2>Ethereum not found</h2>
<p>Maker-OTC requires an Ethereum client to be running and current. Maker-OTC could not detect a client running which probably means it's not installed,
running or is misconfigured.</p>
<p>Start geth with:</p>
<pre>geth --testnet --rpc --rpccorsdomain {{rpccorsdomain}}</pre>
<p>Optionally add <code>--unlock 0xYourAddress</code> to unlock an account.</p>
<pre>geth --rpc --rpccorsdomain {{rpccorsdomain}}</pre>
<p>Optionally add <code>--unlock 0xYourAddress</code> to unlock an account and/or <code>--testnet</code> to connect to the Morden testnet.</p>
</template>
2 changes: 2 additions & 0 deletions scripts/deploy_mainnet.ds
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
var otc = new SimpleMarketMainnet()
export otc

0 comments on commit 844f441

Please sign in to comment.