Alex Bean
Alex Bean
When using a chain with the latest version of `pallet_revive`, such as `ink-node v0.43.3` https://github.com/use-ink/ink-node/releases/tag/v0.43.3 e2e tests are failing. The e2e crate needs to be updated to reflect the latest...
An issue was reported in our Telegram group regarding the `ecdsa_recover` method in ink! v6: > Hello, I am encountering an issue with the `ecdsa_recover` method with ink! v6 >...
During the recent [hackathon](https://www.encode.club/polkadot-scalability-hackathon), some users reported an issue when deploying smart contracts to Westend AssetHub using` ink! v6`. The following error: ``` ▲ Pre-submission dry-run failed: ModuleError: Revive::CodeRejected: ["The...
### Problem When compiling an ink! 5 smart contract using Rust 1.87, the resulting .contract file fails to deploy via https://ui.use.ink/instantiate. The error shown is: ``` CodeRejected The contract's code...
- For ink!v6 display the list of Address as a dropdown. Closes https://github.com/use-ink/contracts-ui/issues/579 - Remove placeholder for number. Closes https://github.com/use-ink/contracts-ui/issues/582
In the new version of ink! v6 before an account can interact with a contract, it must be mapped using the transaction `typedApi.tx.Revive.map_account()`. Currently the UI displays an error message...
ink! contracts can be compiled with Solidity-compatible metadata: https://use.ink/docs/v6/basics/metadata/solidity This feature allows developers to use Ethereum tools (such as Hardhat) to deploy and interact with their smart contracts. For example:...
Reported by a user on Telegram. When using a smart contract like the following: ``` #[ink(storage)] pub struct TestContract { name: String, dao_address: Address, } impl TestContract { #[ink(constructor)] pub...
A hacker of the Blockspace Synergy Hackathon reported this issue when trying to deploy a ink!v6 smart contract using https://ui.use.ink/ ``` index-Bcx2wWl-.js:56 Error: The WASM interface has not been initialized....
**Describe the bug** For a contract event, cargo contract is not properly decoding the value **To Reproduce** Steps to reproduce the behavior: Use a contract with events, or I just...