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
9423a1c4
Unverified
Commit
9423a1c4
authored
Jul 25, 2018
by
yann300
Committed by
GitHub
Jul 25, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into remix-move-decoder
parents
73ff1efc
db994821
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
23 deletions
+12
-23
config.yml
.circleci/config.yml
+0
-11
README.md
README.md
+3
-1
index.rst
docs/index.rst
+1
-1
run_tab.md
docs/run_tab.md
+1
-1
lerna.json
lerna.json
+2
-1
package.json
remix-analyzer/package.json
+5
-7
package.json
remix-solidity/package.json
+0
-1
No files found.
.circleci/config.yml
View file @
9423a1c4
...
...
@@ -14,16 +14,6 @@ jobs:
-
run
:
npm install && npm run bootstrap
-
run
:
cd remix-lib && npm test
remix-solidity
:
docker
:
-
image
:
circleci/node:7.10
environment
:
working_directory
:
~/repo
steps
:
-
checkout
-
run
:
npm install && npm run bootstrap
-
run
:
cd remix-solidity && npm test
remix-debug
:
docker
:
-
image
:
circleci/node:7.10
...
...
@@ -49,7 +39,6 @@ workflows:
build_all
:
jobs
:
-
remix-lib
-
remix-solidity
-
remix-debug
-
remix-analyzer
README.md
View file @
9423a1c4
...
...
@@ -35,9 +35,11 @@ Those commands will run the RPC server on `localhost:8545`, which is the default
See
[
here
](
remix-debugger/README.md
)
how to install, run and use the debugger locally.
The debugger itself contains several controls that allow stepping over the trace and seeing the current state of a selected step.
## <a name="modules"></a>Remix Modules
Remix is built out of
4
different modules:
Remix is built out of
3
different modules:
+
[
`remix-solidity`
](
remix-solidity/README.md
)
provides Solidity analysis and decoding functions.
+
[
`remix-lib`
](
remix-lib/README.md
)
...
...
docs/index.rst
View file @
9423a1c4
...
...
@@ -9,7 +9,7 @@ Remix also supports testing, debugging and deploying of smart contracts and much
Our Remix project with all its features is available
at `remix.ethereum.org <http://remix.ethereum.org>`__ and more information can be found in these
docs. Our tool is available at `our GitHub repository
<https://github.com/ethereum/remix-id>`__.
<https://github.com/ethereum/remix-id
e
>`__.
This set of documents covers instructions on how to use Remix and some tutorials to help you get started.
...
...
docs/run_tab.md
View file @
9423a1c4
...
...
@@ -112,7 +112,7 @@ In that case we use the addres of the previously created library :
`created{1512830014773}`
. the number is the id (timestamp) of the
transaction that leads to the creation of the library.
The third parameter corresponds to the call to te function
`set`
of the
The third parameter corresponds to the call to t
h
e function
`set`
of the
contract
`test`
(the property to is set to:
`created{1512830015080}`
) .
Input parameters are
`1`
and
`0xca35b7d915458ef540ade6068dfe2f44e8fa733c`
...
...
lerna.json
View file @
9423a1c4
...
...
@@ -4,7 +4,8 @@
"remix-debug"
,
"remix-debugger"
,
"remix-lib"
,
"remix-solidity"
"remix-solidity"
,
"remix-analyzer"
],
"version"
:
"independent"
}
remix-analyzer/package.json
View file @
9423a1c4
...
...
@@ -21,7 +21,10 @@
"babel-eslint"
:
"^7.1.1"
,
"babel-plugin-transform-object-assign"
:
"^6.22.0"
,
"remix-lib"
:
"^0.2.9"
,
"babel-preset-es2015"
:
"^6.24.0"
"babel-preset-es2015"
:
"^6.24.0"
,
"solc"
:
"^0.4.24"
,
"standard"
:
"^7.0.1"
,
"tape"
:
"^4.6.0"
},
"scripts"
:
{
"test"
:
"standard && tape ./test/tests.js"
...
...
@@ -35,10 +38,5 @@
},
"author"
:
"Remix Team"
,
"license"
:
"MIT"
,
"homepage"
:
"https://github.com/ethereum/remix#readme"
,
"devDependencies"
:
{
"solc"
:
"^0.4.24"
,
"standard"
:
"^7.0.1"
,
"tape"
:
"^4.6.0"
}
"homepage"
:
"https://github.com/ethereum/remix#readme"
}
remix-solidity/package.json
View file @
9423a1c4
...
...
@@ -29,7 +29,6 @@
"webworkify"
:
"^1.2.1"
},
"scripts"
:
{
"test"
:
"standard && npm run downloadsolc && tape ./test/tests.js"
,
"downloadsolc"
:
"cd node_modules/solc && (test -e soljson.js || wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js) && cd .."
,
"prepublish"
:
"mkdirp build; npm-run-all -ls downloadsolc"
,
"postinstall"
:
"npm-run-all -ls downloadsolc"
...
...
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