-
Updated
Feb 25, 2022 - JavaScript
smart-contracts
Here are 4,659 public repositories matching this topic...
-
Updated
Feb 19, 2022
-
Updated
Mar 3, 2022
-
Updated
Feb 18, 2022
Related to metering wasm3/wasm3#127 and being able to run a set number of instructions, I'd like to be able to serialize a paused interpreter's state and deserialize it to a new interpreter instance; very roughly,
const interp = new wasm3.Interpreter(module);
interp.interpretNInstructions(100);
const interpState = interp.serializeState();
const interp2 = wasm3.In
-
Updated
Mar 2, 2022 - Java
-
Updated
Feb 12, 2022 - JavaScript
It is currently not possible to specify the chain ID for a hardhat network invoked with npx hardhat node through any means other than the config file. This means it is impossible to specify the --chain-id argument in the command line, or execute a chain host pragmatically with hre.run('node', { chainId: 100 }).
Please add the chainId parameter to the node command so it is possible to
-
Updated
Nov 1, 2021
-
Updated
Feb 28, 2022 - Python
-
Updated
Feb 14, 2022 - TypeScript
-
Updated
Feb 25, 2022
-
Updated
Feb 20, 2022
-
Updated
Feb 13, 2022 - TypeScript
-
Updated
Mar 1, 2022 - JavaScript
The error message here is not that helpful. We should log the account symbol comp_f.symbol that is not found https://github.com/project-serum/anchor/blob/master/lang/syn/src/idl/file.rs#L516-L518.
-
Updated
Aug 15, 2018 - Go
-
Updated
May 20, 2019
-
Updated
Mar 3, 2022 - Haskell
-
Updated
Jun 11, 2021 - Python
-
Updated
Feb 22, 2022 - Go
Add an example to load file from a directory along with https://remix-ide.readthedocs.io/en/latest/locations.html#load-one-of-the-default-remix-files
-
Updated
Mar 1, 2022 - Scala
-
Updated
Feb 26, 2022 - TypeScript
-
Updated
Mar 2, 2021 - JavaScript
-
Updated
Mar 3, 2022 - Go
We can safely disallow any use of solc below 0.4.25.
-
Updated
Mar 3, 2022 - Erlang
Improve this page
Add a description, image, and links to the smart-contracts topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the smart-contracts topic, visit your repo's landing page and select "manage topics."


Issue
Vyper handles unmapped instructions differently from Solidity. In Solidity, unmapped instructions are given a file index of -1. When attempting to show the source for such an instruction, we instead just show
1: // No source code found..However, in Vyper, such instructions are not given a file index of -1, but are given a start and length of 0. So when we show the source for t