From 5ed33c4569ea2379cff5af7c5535a8e4b8d3b53c Mon Sep 17 00:00:00 2001 From: rabi-siddique Date: Tue, 2 Jul 2024 08:55:02 +0500 Subject: [PATCH] docs: add links to reference endo pages --- main/reference/ertp-api/ertp-data-types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/reference/ertp-api/ertp-data-types.md b/main/reference/ertp-api/ertp-data-types.md index ff83fb137..cd3946b02 100644 --- a/main/reference/ertp-api/ertp-data-types.md +++ b/main/reference/ertp-api/ertp-data-types.md @@ -50,8 +50,8 @@ There are several kinds of Assets. - **AssetKind.NAT** : Used with fungible assets. **AmountValues** are natural numbers using the JavaScript [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) type to avoid overflow risks from using the usual JavaScript **Number** type. - **AssetKind.SET** : Deprecated. -- **AssetKind.COPY_SET** : Used with non-fungible assets where there can't be duplicates (e.g., assigned seats in a stadium). -- **AssetKind.COPY_BAG** : Used with semi-fungible assets where there can be duplicates. The duplicates of the same asset are fungible with each other (e.g., weapons in a computer game). +- **AssetKind.COPY_SET** : Used with non-fungible assets where there can't be duplicates (e.g., assigned seats in a stadium). See more [here](https://endojs.github.io/endo/types/_endo_patterns.CopySet.html). +- **AssetKind.COPY_BAG** : Used with semi-fungible assets where there can be duplicates. The duplicates of the same asset are fungible with each other (e.g., weapons in a computer game). See more [here](https://endojs.github.io/endo/types/_endo_patterns.CopyBag.html). Even though very different mathematical processes are performed, **[AmountMath](./amount-math)** methods work for all kinds of assets.