Michael Müller

Results 129 issues of Michael Müller

The code is already available here: https://github.com/xermicus/call_solidity. Needs to be ported to ink! 4.0 and a README needs to be added.

We've released ink! 4.0 and `cargo-contract` 2.0 now, please update those dependencies in the playground.

We should add support for supplying an ink! version to be used for the playground in the URL. This is necessary to allow links to the playground remain working, independent...

enhancement
priority-high

Rustdoc supports a feature for defining a playground URL: ```rust #![doc(html_playground_url = "https://playground.example.com/")] ``` https://doc.rust-lang.org/rustdoc/write-documentation/the-doc-attribute.html#html_playground_url We can use this feature to have a "Run" button show up in our ink!...

enhancement
priority-medium

Use one of the npm packages to make sure the URL we forward to does no shenanigans.

- [ ] Should be a proxy account on-chain + multisig with us contributors.

Not intended for merge.

E-dont-merge

We should fail gracefully when users try to use `cargo-contract` with Solidity metadata. E.g. for this case: * Build contract with just `abi = "sol"`. * Try to instantiate/interact with...

Current state: * Linting with `clippy` happens by default on every `cargo contract build`. * It can be disabled with `--skip-linting`. Why it's not ideal: * Executing the lints with...

If one wants to submit a transaction in `cargo-contract`, we check if the account has already been mapped: ```bash $ cargo contract build --suri //Alice --manifest-path ink/integration-tests/public/flipper/Cargo.toml $ cargo contract...