We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given a storage which has a custom type definition as below.
#[derive(....)] struct CustomType { name: String } #[ink(storage)] struct Store { members: ink_storage::collections::HashMap<AccountId, CustomType> }
When a contract developer executes npx redspot compile. it generates three files as below
So that a contract developer could import TS types to make ts-lint happy.
import { CustomType } from artificates.contract; const contractFactory = await getContractFactory('contract', creator); const contract = await contractFactory.deploy('new'); const member: CustomType = await contract.members(account_id).output;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a storage which has a custom type definition as below.
When a contract developer executes npx redspot compile. it generates three files as below
So that a contract developer could import TS types to make ts-lint happy.
Dependencies
The text was updated successfully, but these errors were encountered: