Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
a8a0f832
Commit
a8a0f832
authored
Aug 30, 2017
by
ninabreznik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shortened strings and some text fixes for title of each key in details
parent
7e2dd427
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
compile-tab.js
src/app/tabs/compile-tab.js
+8
-8
No files found.
src/app/tabs/compile-tab.js
View file @
a8a0f832
...
@@ -358,9 +358,9 @@ function compileTab (container, appAPI, appEvents, opts) {
...
@@ -358,9 +358,9 @@ function compileTab (container, appAPI, appEvents, opts) {
function
insertValue
(
details
,
x
)
{
function
insertValue
(
details
,
x
)
{
var
value
=
yo
`<pre class="
${
css
.
value
}
"></pre>`
var
value
=
yo
`<pre class="
${
css
.
value
}
"></pre>`
var
node
var
node
if
(
x
===
'bytecode'
||
x
===
'metadataHash'
||
x
===
'swarmLocation'
||
x
===
'Runtime Bytecode'
||
x
===
'Opcodes'
||
x
===
'name'
)
{
if
(
x
===
'bytecode'
||
x
===
'metadataHash'
||
x
===
'swarmLocation'
||
x
===
'Runtime Bytecode'
||
x
===
'Opcodes'
)
{
node
=
yo
`<div>
${
details
[
x
]}
</div>`
node
=
yo
`<div>
${
details
[
x
]
.
slice
(
0
,
60
)
+
'...'
}
</div>`
}
else
if
(
x
===
'web3Deploy'
)
{
}
else
if
(
x
===
'web3Deploy'
||
x
===
'name'
)
{
node
=
yo
`<pre>
${
details
[
x
]}
</pre>`
node
=
yo
`<pre>
${
details
[
x
]}
</pre>`
}
else
if
(
x
===
'interface'
||
x
===
'metadata'
)
{
}
else
if
(
x
===
'interface'
||
x
===
'metadata'
)
{
var
treeView
=
new
TreeView
({
var
treeView
=
new
TreeView
({
...
@@ -412,13 +412,13 @@ function detailsHelpSection () {
...
@@ -412,13 +412,13 @@ function detailsHelpSection () {
return
{
return
{
'Assembly'
:
'Assembly opcodes describing the contract including corresponding solidity source code'
,
'Assembly'
:
'Assembly opcodes describing the contract including corresponding solidity source code'
,
'Opcodes'
:
'Assembly opcodes describing the contract'
,
'Opcodes'
:
'Assembly opcodes describing the contract'
,
'Runtime Bytecode'
:
'Bytecode
actually store in the state and
executed during normal contract call'
,
'Runtime Bytecode'
:
'Bytecode
storing the state and being
executed during normal contract call'
,
'bytecode'
:
'Bytecode executed during contract creation'
,
'bytecode'
:
'Bytecode
being
executed during contract creation'
,
'functionHashes'
:
'List of declared function and their corresonding hash'
,
'functionHashes'
:
'List of declared function and their corres
p
onding hash'
,
'gasEstimates'
:
'Gas estimation for each function call'
,
'gasEstimates'
:
'Gas estimation for each function call'
,
'metadata'
:
'Contain all informations related to the compilation'
,
'metadata'
:
'Contain
s
all informations related to the compilation'
,
'metadataHash'
:
'Hash representing all metadata information'
,
'metadataHash'
:
'Hash representing all metadata information'
,
'interface'
:
'ABI:
Describe
all the functions (input/output params, scope, ...)'
,
'interface'
:
'ABI:
describing
all the functions (input/output params, scope, ...)'
,
'name'
:
'Name of the compiled contract'
,
'name'
:
'Name of the compiled contract'
,
'swarmLocation'
:
'Swarm url where all metadata information can be found (contract needs to be published first)'
,
'swarmLocation'
:
'Swarm url where all metadata information can be found (contract needs to be published first)'
,
'web3Deploy'
:
'Copy/paste this code to any JavaScript/Web3 console to deploy this contract'
'web3Deploy'
:
'Copy/paste this code to any JavaScript/Web3 console to deploy this contract'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment