Skip to content
#

smart-contracts

Here are 5,477 public repositories matching this topic...

benjamincburns
benjamincburns commented May 5, 2022

Feature

Similar to #4461, it would be nice if people could truffle exec typescript without needing to run a compilation step.

Steps to Reproduce

Write a script for truffle exec in TypeScript

Desired Behavior

Truffle would use ts-node to execute said script

Current Behavior

Users must first compile said script, and truffle exec the compilation output.

thomasballinger
thomasballinger commented Aug 1, 2021

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
feature help wanted good first issue
dbeal-eth
dbeal-eth commented Jan 26, 2022

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

good first issue type:feature
ink
cmichi
cmichi commented Mar 18, 2022

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 in
good first issue A-CI

Improve this page

Add a description, image, and links to the smart-contracts topic page so that developers can more easily learn about it.

Curate this topic

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."

Learn more