-
Updated
May 2, 2022 - JavaScript
smart-contracts
Here are 5,477 public repositories matching this topic...
-
Updated
May 28, 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
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
May 30, 2022 - Python
-
Updated
May 19, 2022 - TypeScript
-
Updated
May 25, 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 30, 2022
-
Updated
Mar 9, 2022
-
Updated
May 22, 2022 - TypeScript
-
Updated
Aug 15, 2018 - Go
-
Updated
May 30, 2022
-
Updated
May 29, 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 30, 2022 - Haskell
-
Updated
May 23, 2022 - Go
-
Updated
Jun 11, 2021 - Python
-
Updated
May 27, 2022 - Scala
-
Updated
Mar 2, 2021 - JavaScript
-
Updated
May 16, 2022 - JavaScript
-
Updated
May 30, 2022 - Erlang
Lua SC support
Each contract has its own Lua stack.
To advance over several events, use coroutines.
Our .gitlab-ci.yml contains a lot of super-repetitive lines like this by now:
- for example in examples/*/; do
if [ "$example" = "examples/upgradeable-contracts/" ]; then continue; fi;
cargo fmt --verbose --manifest-path ${example}/Cargo.toml -- --check --config=license_template_path="";
done
- for contract inImprove 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.