update content on copiler page

This commit is contained in:
August Skare
2018-10-26 08:08:40 +02:00
parent fb24a18f3f
commit 3901380ffb

View File

@@ -66,8 +66,7 @@ function Compiler() {
<ContentBlock title="Production">
<p>
Sol compiler uses solidity standard JSON output format for the artifacts. This way, you can
define which parts of the artifact you need.
Sol compiler uses solidity standard JSON output format for the artifacts. This way, you can define which parts of the artifact you need.
</p>
<Breakout>
<Code light language="json">
@@ -88,6 +87,20 @@ function Compiler() {
<Code light language="json">
{`{
...
"compilerOutput": {
"abi": [...],
},
...
}`}
</Code>
</Breakout>
</ContentBlock>
<ContentBlock title="Development">
<p>Sometimes you need to use some debuggers or other dev tools and youll need more info in the artifact.</p>
<Breakout>
<Code light language="json">
{`{
...
"compilerSettings": {
"outputSelection": {
"*": {
@@ -105,6 +118,7 @@ function Compiler() {
}`}
</Code>
</Breakout>
<Breakout>
<Code light language="json">
{`{