Skip to main content

Questions tagged [documentation]

The tag has no usage guidance.

1 vote
1 answer
41 views

Is it true that the entire substrate docs points to an archived repo?

The substrate docs are supposed to guide users through the substrate SDK via tutorials. These tutorials use exclusively (to my knowledge) the substrate node template repository. However, all the ...
Marlo's user avatar
  • 111
1 vote
1 answer
191 views

Is parachain a data structure?

In Polkadot docs, Parachain is defined as: A parachain is an application-specific data structure that is globally coherent and can be validated by the validators of the Relay Chain. Why have they ...
Karanvir Singh's user avatar
4 votes
1 answer
89 views

Why are all the ink! Playground links broken in the official Substrate docs at substrate.dev?

If I go to https://substrate.io/developers/smart-contracts/ and click on any of the 6x hyperlinks called Open ink! Playground it takes me to https://ink-playground.substrate.io/ and returns 404 page ...
Luke Schoen's user avatar
  • 2,346
3 votes
1 answer
77 views

Chatbot Trained on Substrate-based Chains and Repositories for General Reference and Help [closed]

I'd like to propose an idea for creating a general reference and help tool utilizing a chatbot trained on data from Substrate-based chains (e.g., Polkadot, Kusama, Parachains) and their associated ...
ALeSD's user avatar
  • 499
1 vote
1 answer
55 views

How to play with the Substrate labels?

https://github.com/paritytech/substrate/labels?page=1&sort=name-asc Is there a doc for this? E.G. E5-breaksapi What's the meaning of E? What's the meaning of 5? What labels should I pay attention ...
AurevoirXavier's user avatar
  • 10.8k
1 vote
1 answer
112 views

Use macros in a custom pallet tutorial doesn't compile

I tried to follow this tutorial but I have the following problem: This is my pallets/template/src/lib.rs file on github And this is the pallets/template/Cargo.toml file on github The terminal error ...
viac92's user avatar
  • 107
0 votes
1 answer
37 views

failed to find tag `latest` - pallet version in tutorial [closed]

Many tutorial on the substrate doc have similar code for the Cargo.toml. For example this is from configure the contracts pallet tutoria [dependencies.pallet-contracts] default-features = false git = '...
viac92's user avatar
  • 107
0 votes
1 answer
55 views

Polkadot relay chain node source code walkthrough/explanation

Is there any documentation/tutorials covering the technical details behind the Polkadot relay chain source code, specifically the runtime where all the special logic of the relay chain occurs? I am ...
Kevin Yao's user avatar
2 votes
1 answer
24 views

Example of MockValidationDataInherentDataProvider usage​

Is there any example of how to use MockValidationDataInherentDataProvider to run a parachain with mock validation? I've been looking all over and can't seem to find any documentation or example of it'...
Gabe's user avatar
  • 115
1 vote
1 answer
299 views

How do I call the RPC method `contractInfoOf` using curl?

The docs state that the RPC comes with a few defaultRPCs and then links to polkadotJS documentation on the available API calls. This doesn't help me if I want to call a method using curl. Does anyone ...
forgetso's user avatar
  • 1,514
0 votes
1 answer
171 views

How to create and sign a transaction by myself

I am developing the tool to create and sign a transaction, but I find nothing about the format of a transaction before signing. Could you please help me to find out the document about this issue. ...
TigerT's user avatar
  • 33
5 votes
1 answer
47 views

What is the current state of Swappable Consensus and Re-Genesis

I've found these two open issues: Re-Genesis #7458 Swappable Consensus #1304 and would be interested if there is more practical guidance on an example basis?
BenJamWhite's user avatar
1 vote
2 answers
249 views

Where can I find frontier evm precompile documentation?

I'm trying to learn how to implement EVM pre-compiles in substrate (frontier), but I cannot find any documentation anywhere. If I try and reference something like moonbeam I fall into dependency hell. ...
jjreedv's user avatar
  • 35
4 votes
1 answer
38 views

How to suppress missing_docs warnings for substrate macros?

I tried using the #![warn(missing_docs)] macro to check for missing documentation in my pallet, but when running clippy it complains about some pallet macros warning: missing documentation for a ...
Angelo's user avatar
  • 501