-
Updated
May 2, 2022 - JavaScript
smart-contracts
Here are 5,284 public repositories matching this topic...
-
Updated
Apr 11, 2022
-
Updated
May 4, 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
May 9, 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
May 5, 2022 - JavaScript
currently, for a given program, only the last executed test suite log survives since they are all streamed to the same file
-
Updated
May 10, 2022
-
Updated
Mar 9, 2022
-
Updated
May 8, 2022 - TypeScript
-
Updated
Aug 15, 2018 - Go
-
Updated
May 20, 2019
-
Updated
May 10, 2022 - Haskell
-
Updated
Apr 28, 2022 - TypeScript
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
May 5, 2022 - Go
-
Updated
Jun 11, 2021 - Python
We can safely disallow any use of solc below 0.4.25.
Improve code coverage for the fees module, especially:
keeper/grpc_query.gokeeper/fees.gotypes/params.gotypes/codec.go
Codecov: https://codecov.io/gh/tharsis/evmos/tree/main/x/fees
-
Updated
May 7, 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."
Feature
Similar to #4461, it would be nice if people could
truffle exectypescript without needing to run a compilation step.Steps to Reproduce
Write a script for
truffle execin TypeScriptDesired Behavior
Truffle would use
ts-nodeto execute said scriptCurrent Behavior
Users must first compile said script, and
truffle execthe compilation output.