From 7014d94108bf132c860392f98eb368a71f7b8818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Mon, 13 Jan 2020 13:46:53 -0300 Subject: [PATCH] Fix doc links --- docs/modules/ROOT/pages/gsn.adoc | 2 +- docs/modules/ROOT/pages/index.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/gsn.adoc b/docs/modules/ROOT/pages/gsn.adoc index 09ca320ca..a0882fe82 100644 --- a/docs/modules/ROOT/pages/gsn.adoc +++ b/docs/modules/ROOT/pages/gsn.adoc @@ -2,7 +2,7 @@ The https://gsn.openzeppelin.com[Gas Station Network] allows you to build apps where you pay for your users transactions, so they do not need to hold Ether to pay for gas, easing their onboarding process. In this guide, we will learn how to write smart contracts that can receive transactions from the GSN, by using OpenZeppelin Contracts. -If you're new to the GSN, you probably want to first take a look at the xref:learn::on-gsn.adoc[overview of the system] to get a clearer picture of how gasless transactions are achieved. Otherwise, strap in! +If you're new to the GSN, you probably want to first take a look at the xref:learn::sending-gasless-transactions.adoc[overview of the system] to get a clearer picture of how gasless transactions are achieved. Otherwise, strap in! == Receiving a Relayed Call diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/ROOT/pages/index.adoc index 3159f0d7b..aba885749 100644 --- a/docs/modules/ROOT/pages/index.adoc +++ b/docs/modules/ROOT/pages/index.adoc @@ -35,7 +35,7 @@ contract MyContract is Ownable { } ---- -TIP: If you're new to smart contract development, head to xref:learn::writing-smart-contracts.adoc[Writing Smart Contracts] to learn about creating a new project and compiling your contracts. +TIP: If you're new to smart contract development, head to xref:learn::developing-smart-contracts.adoc[Developing Smart Contracts] to learn about creating a new project and compiling your contracts. To keep your system secure, you should **always** use the installed code as-is, and neither copy-paste it from online sources, nor modify it yourself.