-
Updated
Apr 25, 2022 - JavaScript
smart-contracts
Here are 5,177 public repositories matching this topic...
-
Updated
Apr 11, 2022
-
Updated
Apr 25, 2022
-
Updated
Apr 2, 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
Apr 29, 2022 - Java
-
Updated
Mar 11, 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
Mar 17, 2022 - TypeScript
-
Updated
Apr 29, 2022 - Python
-
Updated
Mar 1, 2022 - JavaScript
Newer versions of the anchor NPM package include a .rollup.cache directory with temporary build artifacts (such as .rollup.cache/home/armaniferrante/Documents/code/src/github.com/project-serum/anchor/ts/types/src/coder/spl-token/index.js). Would it be possible to remove this directory to clean the package contents? You could use the [package.json "files" option](https://docs.npmjs.com/cli/v7
-
Updated
Apr 29, 2022
-
Updated
Mar 9, 2022
-
Updated
Apr 14, 2022 - TypeScript
-
Updated
Aug 15, 2018 - Go
-
Updated
May 20, 2019
-
Updated
Apr 29, 2022 - Haskell
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
Apr 28, 2022 - TypeScript
-
Updated
Jun 11, 2021 - Python
-
Updated
Mar 24, 2022 - Go
We can safely disallow any use of solc below 0.4.25.
Description
-
Updated
Apr 29, 2022 - Scala
-
Updated
Mar 2, 2021 - JavaScript
-
Updated
Apr 11, 2022 - JavaScript
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