Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
link fixes for upstream #10215
  • Loading branch information
nuke-web3 committed Nov 12, 2021
commit c50bbfea8bfb4d211c65433716c7c07da8775a1f
2 changes: 1 addition & 1 deletion v3/docs/02-concepts/h-off-chain-features/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ exactly the same for every node with indexing enabled.
To look at concrete examples of off-chain workers and how to use them in runtime development,
refer to the following sections in Substrate Recipes:

- [Substrate's inclded `example-offchain-worker`](https://github.com/paritytech/substrate/tree/master/frame/example-offchain-worker)
- [Substrate's inclded `example-offchain-worker`](https://github.com/paritytech/substrate/tree/master/frame/examples/offchain-worker)
- [Recipe to Submit signed and unsigned transactions from off-chain workers back on-chain](https://github.com/substrate-developer-hub/recipes/blob/master/text/off-chain-workers/transactions.html)
- [Recipe to fetch external data using HTTP requests and parse JSON responses](https://github.com/substrate-developer-hub/recipes/blob/master/text/off-chain-workers/http-json.html)
- [Recipe to store result in off-chain worker local storage](https://github.com/substrate-developer-hub/recipes/blob/master/text/off-chain-workers/storage.html)
Expand Down
4 changes: 2 additions & 2 deletions v3/docs/03-runtime/a-FRAME/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -285,15 +285,15 @@ The Offchain Worker Example: A simple pallet demonstrating concepts, APIs and st
most offchain workers.

- [Docs](/rustdocs/latest/pallet_example_offchain_worker/index.html)
- [Source](https://github.com/paritytech/substrate/tree/master/frame/example-offchain-worker/src/lib.rs)
- [Source](https://github.com/paritytech/substrate/tree/master/frame/examples/offchain-worker/src/lib.rs)

### Example

The Example pallet is a simple example of a pallet demonstrating concepts, APIs, and structures
common to most pallets.

- [Docs](/rustdocs/latest/pallet_example/index.html)
- [Source](https://github.com/paritytech/substrate/tree/master/frame/example/src/lib.rs)
- [Source](https://github.com/paritytech/substrate/tree/master/frame/examples/basic)

### GRANDPA

Expand Down
2 changes: 1 addition & 1 deletion v3/tutorials/07-add-a-pallet/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ in **crates.io** repository.
- For more information about runtime development tips and patterns, refer to our
[How-to Guides](/how-to-guides).
- For a bare FRAME pallet with detailed comments about what you can access within FRAME, see
[this example in `substrate`](https://github.com/paritytech/substrate/tree/master/frame/example).
[this example in `substrate`](https://github.com/paritytech/substrate/tree/master/frame/examples/basic).

#### References

Expand Down