From 0c28262f5695d377626240733fe8fccf610e32ff Mon Sep 17 00:00:00 2001 From: Gino Date: Wed, 28 Aug 2024 17:51:22 +0100 Subject: [PATCH 1/2] fix(wiki): fix broken link on custom erc20 page --- .../docs/how-tos/core-contracts/token/erc20-native-token.md | 2 +- .../docs/how-tos/core-contracts/token/erc20-native-token.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/isc/v1.1/docs/how-tos/core-contracts/token/erc20-native-token.md b/docs/build/isc/v1.1/docs/how-tos/core-contracts/token/erc20-native-token.md index dfbe3d280e5..bfb2af0dc4b 100644 --- a/docs/build/isc/v1.1/docs/how-tos/core-contracts/token/erc20-native-token.md +++ b/docs/build/isc/v1.1/docs/how-tos/core-contracts/token/erc20-native-token.md @@ -10,7 +10,7 @@ tags: # Custom ERC20 Functions -Once you [registered your native token as ERC20](./erc20-native-token.md) you can use it like any other ERC20 token, with functions like +Once you [registered your native token as ERC20](./create-native-token.md) you can use it like any other ERC20 token, with functions like `transfer`, `balanceOf`, etc. But, as the ERC20 token maps the native token on L2, there are some additional ISC features you can take advantage of. diff --git a/docs/build/isc/v1.3/docs/how-tos/core-contracts/token/erc20-native-token.md b/docs/build/isc/v1.3/docs/how-tos/core-contracts/token/erc20-native-token.md index eef11254681..4e4829f2c49 100644 --- a/docs/build/isc/v1.3/docs/how-tos/core-contracts/token/erc20-native-token.md +++ b/docs/build/isc/v1.3/docs/how-tos/core-contracts/token/erc20-native-token.md @@ -10,7 +10,7 @@ tags: # Custom ERC20 Functions -Once you [registered your native token as ERC20](./erc20-native-token.md) you can use it like any other ERC20 token, with functions like +Once you [registered your native token as ERC20](./create-native-token.md) you can use it like any other ERC20 token, with functions like `transfer`, `balanceOf`, etc. But, as the ERC20 token maps the native token on L2, there are some additional ISC features you can take advantage of. From bb0b8383dc563df37543b5f0add28bfa08960135 Mon Sep 17 00:00:00 2001 From: Gino Date: Wed, 28 Aug 2024 21:50:44 +0100 Subject: [PATCH 2/2] fix(docs): implement review suggestion --- .../docs/how-tos/core-contracts/token/erc20-native-token.md | 2 +- .../docs/how-tos/core-contracts/token/erc20-native-token.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/isc/v1.1/docs/how-tos/core-contracts/token/erc20-native-token.md b/docs/build/isc/v1.1/docs/how-tos/core-contracts/token/erc20-native-token.md index bfb2af0dc4b..2f03e18d4f2 100644 --- a/docs/build/isc/v1.1/docs/how-tos/core-contracts/token/erc20-native-token.md +++ b/docs/build/isc/v1.1/docs/how-tos/core-contracts/token/erc20-native-token.md @@ -10,7 +10,7 @@ tags: # Custom ERC20 Functions -Once you [registered your native token as ERC20](./create-native-token.md) you can use it like any other ERC20 token, with functions like +Once you [created your token](./create-native-token.md) it is automatically registered as ERC20 token and you can use it like any other ERC20 token, with functions like `transfer`, `balanceOf`, etc. But, as the ERC20 token maps the native token on L2, there are some additional ISC features you can take advantage of. diff --git a/docs/build/isc/v1.3/docs/how-tos/core-contracts/token/erc20-native-token.md b/docs/build/isc/v1.3/docs/how-tos/core-contracts/token/erc20-native-token.md index 4e4829f2c49..af60eca098f 100644 --- a/docs/build/isc/v1.3/docs/how-tos/core-contracts/token/erc20-native-token.md +++ b/docs/build/isc/v1.3/docs/how-tos/core-contracts/token/erc20-native-token.md @@ -10,7 +10,7 @@ tags: # Custom ERC20 Functions -Once you [registered your native token as ERC20](./create-native-token.md) you can use it like any other ERC20 token, with functions like +Once you [created your token](./create-native-token.md) it is automatically registered as ERC20 token and you can use it like any other ERC20 token, with functions like `transfer`, `balanceOf`, etc. But, as the ERC20 token maps the native token on L2, there are some additional ISC features you can take advantage of.