• Stars
    star
    201
  • Rank 194,491 (Top 4 %)
  • Language
    Emacs Lisp
  • License
    GNU General Publi...
  • Created almost 10 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The official solidity-mode for EMACS

Emacs Solidity Mode

https://img.shields.io/badge/License-GPL%20v3-blue.svg http://melpa.org/packages/solidity-mode-badge.svg

A simple language mode for the Solidity language. It is a constant work in progress as the language itself also progresses. For information about Solidity check the Tutorial and the Features wiki pages.

Installation

You can simply load the file in your emacs but the recommended way to install it is either via el-get or MELPA.

El-get

If you donโ€™t know how to use el-get you can find more information on its webpage. First install el-get and then (in emacs), press Alt+x (this is in emacs notation written as M-x ) and then type el-get-install. This will prompt you for a package, type solidity-mode and hit enter, this should install all you need.

Melpa

You can also obtain solidity-mode from Melpa as can be seen here.

  1. Install melpa and make sure emacs is started with it.
  2. Press Alt+x (this is in emacs notation written as M-x ) and then type package-refresh-contents.
  3. Press Alt+x and then type package-install. This will prompt you for a package.
  4. type solidity-mode and hit enter, this should install all you need.

Configuration

By default solidity-mode associates itself with any files ending in .sol.

If using el-get then you should have a specific package initializing lisp file. If not then you can put these anywhere in your init.el.

Generic configuration

Regardless of where you installed solidity mode from, you need to require the package:

(require 'solidity-mode)

(append that line to your ~/.emacs file)

You can also set the way the comments are inserted by emacs with commands like comment-region. The default is /* .. */ and you can turn it to using // instead by putting the following into your emacs config:

(setq solidity-comment-style 'slash)
;; or
(setq solidity-comment-style 'star) ;; this is the default

Keymap

You can modify the default keybindings of the solidity mode keymap by adding a new key combination for each command you want to change. For example

(define-key solidity-mode-map (kbd "C-c C-g") 'solidity-estimate-gas-at-point)

Interface with linters

Provide path to solc binary

The solc binary is assumed to be part of the PATH. Wherever that is not the case you would have to manually set the location of the binary like below:

(setq solidity-solc-path "/home/lefteris/ew/cpp-ethereum/build/solc/solc")

Note: This better be set before requiring solidity mode.

Provide path to solium binary

The solium binary is assumed to be part of the userโ€™s PATH. If this is not the case then set its location like below:

(setq solidity-solium-path "/home/lefteris/.npm-global/bin/solium")

[Optional] Flycheck interface

Solidity mode can also interface with flycheck if you have it. Make sure to download and install the flycheck package. Then configure it to either work on all modes or enable it only for solidity mode.

Flycheck can interface with solc and/or with solium. We only support integration with solium >= v0.2.0

You have to specifically set the path to both executables and activate the checker integration by setting the following:

To activate flycheck you need the solidity-flycheck package and to add this in your emacs file:

(require 'solidity-flycheck)

To activate solc checker

(setq solidity-flycheck-solc-checker-active t)

To activate solium checker

(setq solidity-flycheck-solium-checker-active t)

Keep in mind that you need to provide the path to either solc or solium unless emacs can already find it in your environmentโ€™s PATH. Even if you can call it from the command line it does not mean that EMACS can see it as emacs may be started by systemd at which point PATH is not fully populated.

Configuring solc checker

You can configure flycheckโ€™s solc invocation with the following arguments

std contracts

By default this is false. If you want to include the standard contracts just add the following to your emacs init file

(setq flycheck-solidity-solc-addstd-contracts t)

Configuring solium checker

You can configure flycheckโ€™s solium incocation with the following arguments

solium RC file

By default solium looks at the current directory of the file you are editing in order to find .soliumrc.json. Having this file is required. But you can point to an external configuration file by putting the following anywhere in your emacs init file.

(setq flycheck-solidity-solium-soliumrcfile "/home/path/to/common/.soliumrc.json")

Chaining both checkers

If you enable both checkers then their results are chained. The variable solidity-flycheck-chaining-error-level controls how they are chained. Its value can be either t, error, warning or info and that controls the maximum error level of the solc checker after which solium will not run. If t is given solium will always run. The default is warning, so if anything over than a warning is found in solc solium will not run.

[Optional] Autocompletion

To achieve solidity autcompletion you will need the company-solidity package, a simple company-mode back-end for Solidity. To use it make sure that company-mode is installed and then:

(require 'company-solidity)

What it does

Give completion suggestions for Solidity keywords, global variables, and address methods.

What it isnโ€™t

Smart. The completion suggestions are not context dependent.

Something to watch out for

company-mode treats . as the end of a word, and will cut off compeletion suggestions when you type a .. So, when youโ€™ve typed msg you will get msg.sender, msg.value etc. as completion suggestions. However, as soon as you type msg., the suggestions will disappear.

Local Variables

If you want autocomplete suggestions to include local variables, in addition to Solidity keywords, add the following to your init.el:

(add-hook 'solidity-mode-hook
	(lambda ()
	(set (make-local-variable 'company-backends)
		(append '((company-solidity company-capf company-dabbrev-code))
			company-backends))))

Commands

Gas estimate of function under point

You can get an estimate of the function under the cursor, by placing the curson on top of the function name and typing C-c C-g.

This will call solidity-estimate-gas-at-point and provide a max gas estimate, if possible, for the function.

Features

  • Syntax highlighting
  • Autocompletion
  • Indentation
  • On the fly syntax checking with flycheck
  • Gas estimation for function under point

More Repositories

1

go-ethereum

Go implementation of the Ethereum protocol
Go
47,050
star
2

solidity

Solidity, the Smart Contract Programming Language
C++
23,106
star
3

wiki

The Ethereum Wiki
14,759
star
4

EIPs

The Ethereum Improvement Proposal repository
Python
12,522
star
5

mist

[DEPRECATED] Mist. Browse and use รapps on the Ethereum network.
JavaScript
7,442
star
6

web3.py

A python interface for interacting with the Ethereum blockchain and ecosystem.
Python
4,941
star
7

ethereum-org-website

Ethereum.org is a primary online resource for the Ethereum community.
Markdown
4,230
star
8

aleth

Aleth โ€“ Ethereum C++ client, tools and libraries
C++
3,963
star
9

consensus-specs

Ethereum Proof-of-Stake Consensus Specifications
Python
3,514
star
10

pyethereum

Next generation cryptocurrency network
2,667
star
11

remix-project

Remix is a browser-based compiler and IDE that enables users to build Ethereum contracts with Solidity language and to debug transactions.
TypeScript
2,442
star
12

py-evm

A Python implementation of the Ethereum Virtual Machine
Python
2,262
star
13

remix-ide

Documentation for Remix IDE
2,260
star
14

ethereumj

DEPRECATED! Java implementation of the Ethereum yellowpaper. For JSON-RPC and other client features check Ethereum Harmony
Java
2,181
star
15

research

Python
1,798
star
16

yellowpaper

The "Yellow Paper": Ethereum's formal specification
TeX
1,644
star
17

fe

Emerging smart contract language for the Ethereum blockchain.
Rust
1,611
star
18

pm

Project Management: Meeting notes and agenda items
Python
1,587
star
19

solc-js

Javascript bindings for the Solidity compiler
TypeScript
1,449
star
20

remix

This has been moved to https://github.com/ethereum/remix-project
JavaScript
1,177
star
21

remix-desktop

Remix IDE desktop
JavaScript
1,025
star
22

dapp-bin

A place for all the รApps to live
JavaScript
1,023
star
23

execution-apis

Collection of APIs provided by Ethereum execution layer clients
Io
949
star
24

devp2p

Ethereum peer-to-peer networking specifications
JavaScript
910
star
25

evmone

Fast Ethereum Virtual Machine implementation
C++
841
star
26

execution-specs

Specification for the Execution Layer. Tracking network upgrades.
Python
839
star
27

kzg-ceremony

Resources and documentation related to the ongoing Ethereum KZG Ceremony.
820
star
28

sourcify

Decentralized Solidity contract source code verification service
TypeScript
779
star
29

js-ethereum-cryptography

Every cryptographic primitive needed to work on Ethereum, for the browser and Node.js
TypeScript
702
star
30

casper

Casper contract, and related software and tests
Python
685
star
31

btcrelay

Ethereum contract for Bitcoin SPV: Live on https://etherscan.io/address/0x41f274c0023f83391de4e0733c609df5a124c3d4
Python
612
star
32

meteor-dapp-wallet

This is an archived repository of one of the early Ethereum wallets.
JavaScript
598
star
33

tests

Common tests for all Ethereum implementations
Python
550
star
34

solidity-examples

Loose collection of Solidity example code
Solidity
532
star
35

staking-deposit-cli

Secure key generation for deposits
Python
528
star
36

webthree-umbrella

Former home of cpp-ethereum (Oct 2015 to Aug 2016)
492
star
37

sharding

Sharding manager contract, and related software and tests
Python
480
star
38

homebrew-ethereum

Homebrew Tap for Ethereum
Ruby
478
star
39

trinity

The Trinity client for the Ethereum network
Python
476
star
40

ethereum-org

[ARCHIVED] ethereum.org website from 2016-2019. See https://github.com/ethereum/ethereum-org-website for current version.
HTML
407
star
41

hive

Ethereum end-to-end test harness
Go
399
star
42

solc-bin

This repository contains current and historical builds of the Solidity Compiler.
JavaScript
397
star
43

lahja

Lahja is a generic multi process event bus implementation written in Python 3.6+ to enable lightweight inter-process communication, based on non-blocking asyncio
Python
392
star
44

trin

An Ethereum portal client: a json-rpc server with nearly instant sync, and low CPU & storage usage
Rust
371
star
45

evmlab

Utilities for interacting with the Ethereum virtual machine
Python
361
star
46

serpent

C++
360
star
47

eth-tester

Tool suite for testing ethereum applications.
Python
350
star
48

evmc

EVMC โ€“ Ethereum Client-VM Connector API
C
346
star
49

ERCs

The Ethereum Request for Comment repository
Solidity
339
star
50

beacon-APIs

Collection of RESTful APIs provided by Ethereum Beacon nodes
HTML
328
star
51

annotated-spec

Vitalik's annotated eth2 spec. Not intended to be "the" annotated spec; other documents like Ben Edgington's https://benjaminion.xyz/eth2-annotated-spec/ also exist. This one is intended to focus more on design rationale.
318
star
52

populus

The Ethereum development framework with the most cute animal pictures
316
star
53

eth-utils

Utility functions for working with ethereum related codebases.
Python
306
star
54

homestead-guide

Python
292
star
55

portal-network-specs

Official repository for specifications for the Portal Network
JavaScript
290
star
56

staking-launchpad

The deposit launchpad for staking on Ethereum ๐Ÿฆ
TypeScript
271
star
57

eth-account

Account abstraction library for web3.py
Python
268
star
58

eth2.0-pm

ETH2.0 project management
Python
261
star
59

ropsten

Ropsten public testnet PoW chain
Jupyter Notebook
260
star
60

remix-live

Live deployment of the remix IDE
JavaScript
230
star
61

hevm

symbolic EVM evaluator
Haskell
228
star
62

cbc-casper

Python
228
star
63

eth-abi

Ethereum ABI utilities for python
Python
223
star
64

act

Smart contract specification language
Haskell
216
star
65

beacon_chain

Python
208
star
66

go-verkle

A go implementation of Verkle trees
Go
207
star
67

moon-lang

Minimal code-interchange format
MoonScript
193
star
68

ethash

C
189
star
69

py_ecc

Python implementation of ECC pairing and bn_128 and bls12_381 curve operations
Python
186
star
70

remixd

remix server
TypeScript
182
star
71

py-solc

Python wrapper around the solc Solidity compiler.
Python
181
star
72

browser-solidity

Fomer location of remix-ide => https://github.com/ethereum/remix-ide
JavaScript
179
star
73

builder-specs

Specification for the external block builders.
HTML
177
star
74

grid

[DEPRECATED] Download, configure, and run Ethereum nodes and tools
JavaScript
175
star
75

pos-evolution

Evolution of the Ethereum Proof-of-Stake Consensus Protocol
168
star
76

evmjit

The Ethereum EVM JIT
C++
166
star
77

mix

The Mix Ethereum Dapp Development Tool
JavaScript
164
star
78

eth-keys

A common API for Ethereum key operations.
Python
162
star
79

solidity-underhanded-contest

Website for the Underhanded Solidity Contest
Solidity
162
star
80

remix-plugin

TypeScript
161
star
81

meteor-dapp-whisper-chat-client

JavaScript
151
star
82

rig

Robust Incentives Group
HTML
121
star
83

public-disclosures

117
star
84

economic-modeling

Python
117
star
85

snake-charmers-tactical-manual

Development *stuff* for the Snake Charmers EF team
114
star
86

node-crawler

Attempts to crawl the Ethereum network of valid Ethereum execution nodes and visualizes them in a nice web dashboard.
Go
112
star
87

c-kzg-4844

A minimal implementation of the Polynomial Commitments API for EIP-4844 and EIP-7594, written in C.
C
111
star
88

kzg-ceremony-specs

Specs for Ethereum's KZG Powers of Tau Ceremony
108
star
89

py-trie

Python library which implements the Ethereum Trie structure.
Python
104
star
90

py-wasm

A python implementation of the web assembly interpreter
Python
103
star
91

eth-hash

The Ethereum hashing function, keccak256, sometimes (erroneously) called sha256 or sha3
Python
103
star
92

execution-spec-tests

A Python framework and collection of test cases to generate test vectors for Ethereum execution clients
Python
102
star
93

remix-workshops

Solidity
100
star
94

py-geth

Python wrapping for running Go-Ethereum as a subprocess
Python
99
star
95

swarm-dapps

Swarm ฤapp Examples
JavaScript
98
star
96

remix-vscode

Remix VS Code extension
TypeScript
96
star
97

pyrlp

The python RLP serialization library
Python
96
star
98

ens-registrar-dapp

Registrar DApp for the Ethereum Name Service
JavaScript
94
star
99

dapp-styles

HTML
93
star
100

retesteth

testeth via RPC. Test run, generation by t8ntool protocol
C++
93
star