remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
yann300 c091a3439f
Merge pull request #6511 from remix-project-org/splash
2 days ago
.circleci reports 6 days ago
.github Update pr-reminder.yml 2 weeks ago
.husky remove precommit formatting hook 2 years ago
apps rm refs 2 days ago
libs remove goerli too 2 days ago
scripts get started sticky 2 weeks ago
.editorconfig initial commit 6 years ago
.eslintrc.json linter 1 month ago
.gitignore Update .gitignore 2 weeks ago
.nvmrc nvm 3 weeks ago
.prettierignore add prettierignore file 2 years ago
.prettierrc.json Modify .prettierrc and prettify `contract-verification-plugin` folder 1 year ago
CONTRIBUTING.md update website link 5 days ago
Dockerfile Copy docker files/config to root directory 5 years ago
Dockerfile.dev Fix typos 2 years ago
LICENSE Update LICENSE 8 months ago
OLLAMA_SETUP.md sanitized ollama output 3 months ago
README.md update website link 5 days ago
automation.md Create automation.md (PR automation) (#760) 5 years ago
babel.config.js hot module replacement 3 years ago
build-changelog.js updated changelog script 3 years ago
build-qa-doc.js update QA gen script 1 year ago
build.yaml Copy docker files/config to root directory 5 years ago
builddesktop.sh desktop login fixes 5 months ago
createPRToBeta.ts yarn command 2 years ago
crowdin.yml Update Crowdin configuration file 2 years ago
docker-compose.yaml Copy docker files/config to root directory 5 years ago
funding.json Create funding.json 9 months ago
gulpfile.js sync remixd version after publishing 2 years ago
lerna.json Add publish dev command 3 years ago
lint-fix-targets.js fix other targets 2 years ago
mock-serve-data.json add mock data 2 years ago
nodemon.json Added nodemon for auto-building e2e tests 5 years ago
nx.json Merge branch 'feat/nx-cloud/setup' of https://github.com/remix-project-org/remix-project into feat/nx-cloud/setup 3 weeks ago
package.json fix recorder e2e 1 week ago
projects.json rm travis ref 2 weeks ago
release-management.md Update release-management.md 11 months ago
release-process.md update release files 2 months ago
removedlintstagedrc.json update lintstaged glob and confirming disabling 2 years ago
team-best-practices.md update website link 5 days ago
tsconfig.base.json make base tsconfig ES2022. Fix basic errors 1 year ago
tsconfig.json Merge branch 'master' of https://github.com/ethereum/remix-project into newFEdesktop 2 years ago
tsconfig.paths.json feat: fix module boundaries and linting issues with TrackingContext 1 month ago
yarn.lock Merge branch 'master' into removeWeb3 1 week ago

README.md

Remix Logo

Remix Project

CircleCI Documentation Status contributions welcome GitHub contributors Awesome Remix GitHub Discord X Follow

Remix Project

Remix Project is a rich toolset including Remix IDE, a comprehensive smart contract development tool. The Remix Project also includes Remix Plugin Engine and Remix Libraries which are low-level tools for wider use.

Remix IDE

Remix IDE is used for the entire journey of contract development by users of any knowledge level. It fosters a fast development cycle and has a rich set of plugins with intuitive GUIs. The IDE comes in 2 flavors and a VSCode extension:

Remix Online IDE, see: https://remix.ethereum.org

👉 Supported browsers: Firefox v100.0.1 & Chrome v101.0.4951.64. No support for Remix's use on tablets or smartphones or telephones.

Remix Desktop IDE, see releases: https://github.com/remix-project-org/remix-desktop/releases

Remix screenshot

Remix libraries

Remix libraries are essential for Remix IDE's native plugins. Read more about libraries here

Offline Usage

The gh-pages branch of remix-live always has the latest stable build of Remix. It contains a ZIP file with the entire build. Download it to use offline.

Note: It contains the latest supported version of Solidity available at the time of the packaging. Other compiler versions can be used online only.

Setup

"engines": {
    "node": "^20.0.0",
    "npm": "^6.14.15"
  }
  • Install Nx CLI globally to enable running nx executable commands.
yarn global add nx
  • Clone the GitHub repository (wget need to be installed first):
git clone https://github.com/remix-project-org/remix-project.git
  • Build and Run remix-project:
  1. Move to project directory: cd remix-project
  2. Install dependencies: yarn install or simply run yarn
  3. Build Remix libraries: yarn run build:libs
  4. Build Remix project: yarn build
  5. Build and run project server: yarn serve. Optionally, run yarn serve:hot to enable hot module to reload for frontend updates.

Open http://127.0.0.1:8080 in your browser to load Remix IDE locally.

Go to your text editor and start developing. The browser will automatically refresh when files are saved.

Production Build

To generate react production builds for remix-project.

yarn run build:production

Build can be found in remix-project/dist/apps/remix-ide directory.

yarn run serve:production

Production build will be served by default to http://localhost:8080/ or http://127.0.0.1:8080/

Nx Cloud caching

This repo uses Nx Cloud to speed up builds and keep CI deterministic via remote caching.

  • Configuration: nx.json uses the Nx Cloud runner and reads the token from the NX_CLOUD_ACCESS_TOKEN environment variable.
  • CI: CircleCI jobs automatically use --cloud when the token is present; for forked PRs (no secrets), they fall back to local-only caching. Build logs are stored under logs/nx-build.log.
  • Verifying locally: run the same target twice; the second run should print “Nx read the output from the cache”. Example: nx run remix-ide:build and run it again.
  • Insights: View cache analytics and run details at https://nx.app (links appear in Nx output when the token is configured).

Docker:

Prerequisites:

Run with docker

If you want to run the latest changes that are merged into the master branch then run:

docker pull remixproject/remix-ide:latest
docker run -p 8080:80 remixproject/remix-ide:latest

If you want to run the latest remix-live release run.

docker pull remixproject/remix-ide:remix_live
docker run -p 8080:80 remixproject/remix-ide:remix_live

Run with docker-compose:

To run locally without building you only need docker-compose.yaml file and you can run:

docker-compose pull
docker-compose up -d

Then go to http://localhost:8080 and you can use your Remix instance.

To fetch the docker-compose file without cloning this repo run:

curl https://raw.githubusercontent.com/remix-project-org/remix-project/master/docker-compose.yaml > docker-compose.yaml

Troubleshooting

If you have trouble building the project, make sure that you have the correct version of node, npm and nvm. Also, ensure Nx CLI is installed globally.

Run:

node --version
npm --version
nvm --version

In Debian-based OS such as Ubuntu 14.04LTS, you may need to run apt-get install build-essential. After installing build-essential, run npm rebuild.

Unit Testing

Run the unit tests using library name like: nx test <project-name>

For example, to run unit tests of remix-analyzer, use nx test remix-analyzer

Browser Testing

To run the tests via Nightwatch:

  • Install webdrivers for the first time: yarn install_webdriver
  • Build & Serve Remix: yarn serve

NOTE:

  • The ballot tests suite requires running ganache locally.

  • The remixd tests suite requires running remixd locally.

  • The gist tests suite requires specifying a GitHub access token in .env file.

    gist_token = <token> // token should have permission to create a gist

There is a script to allow selecting the browser and a specific test to run:

yarn run select_test

You need to have

  • selenium running

  • the IDE running

  • optionally have remixd or ganache running

Splitting tests with groups

Groups can be used to group tests in a test file together. The advantage is you can avoid running long test files when you want to focus on a specific set of tests within a test file.

These groups only apply to the test file, not across all test files. So for example group1 in the ballot is not related to a group1 in another test file.

Running a group only runs the tests marked as belonging to the group + all the tests in the test file that do not have a group tag. This way you can have tests that run for all groups, for example, to perform common actions.

There is no need to number the groups in a certain order. The number of the group is arbitrary.

A test can have multiple group tags, this means that this test will run in different groups.

You should write your tests so they can be executed in groups and not depend on other groups.

To do this you need to:

  • Add a group to tag to a test, they are formatted as #group followed by a number: so it becomes #group1, #group220, #group4. Any number will do. You don't have to do it in a specific order.
  'Should generate test file #group1': function (browser: NightwatchBrowser) {
    browser.waitForElementPresent('*[data-id="verticalIconsKindfilePanel"]')
  • add '@disabled': true to the test file you want to split:
module.exports = {
  '@disabled': true,
  before: function (browser: NightwatchBrowser, done: VoidFunction) {
    init(browser, done) // , 'http://localhost:8080', false)
  },
  • change package JSON to locally run all group tests (point to appropriate config file depending on environment):
    "nightwatch_local_debugger": "yarn run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch-chrome.js dist/apps/remix-ide-e2e/src/tests/debugger_*.spec.js --env=chrome",
  • run the build script to build the test files if you want to run the locally
yarn run build:e2e

Locally testing group tests

You can tag any test with a group name, for example, #group10 and easily run the test locally.

  • make sure you have nx installed globally
  • group tests are run like any other test, just specify the correct group number

method 1

This script will give you an options menu, just select the test you want

yarn run select_test

Run the same (flaky) test across all instances in CircleCI

In CircleCI all tests are divided across instances to run in parallel. You can also run 1 or more tests simultaneously across all instances. This way the pipeline can easily be restarted to check if a test is flaky.

For example:

  'Static Analysis run with remixd #group3 #flaky': function (browser) {

Now, the group3 of this test will be executed in firefox and chrome 80 times. If you mark more groups in other tests they will also be executed.

CONFIGURATION

It's important to set a parameter in the .circleci/config.yml, set it to false then the normal tests will run. Set it to true to run only tests marked with flaky.

parameters:
  run_flaky_tests:
    type: boolean
    default: true