From b473069b3865720e3b90a32ca7aa261a89f4d760 Mon Sep 17 00:00:00 2001 From: steven2308 Date: Tue, 19 Sep 2023 14:08:03 -0500 Subject: [PATCH] Updates docs. --- .../{IRMRKEmotesRepository.md => IERC7409.md} | 2 +- docs/RMRK/equippable/RMRKEquippable.md | 16 +++++++-------- .../RMRK/equippable/RMRKMinifiedEquippable.md | 16 +++++++-------- .../IRMRKNestableAutoIndex.md | 16 +++++++-------- .../RMRKNestableAutoIndex.md | 16 +++++++-------- .../reclaimableChild/RMRKReclaimableChild.md | 16 +++++++-------- .../nestable/{IERC6059.md => IERC7401.md} | 20 +++++++++---------- docs/RMRK/nestable/RMRKNestable.md | 16 +++++++-------- docs/RMRK/nestable/RMRKNestableMultiAsset.md | 16 +++++++-------- docs/RMRK/utils/RMRKCollectionUtils.md | 2 +- .../abstract/RMRKAbstractEquippable.md | 16 +++++++-------- .../abstract/RMRKAbstractNestable.md | 16 +++++++-------- .../RMRKAbstractNestableMultiAsset.md | 16 +++++++-------- .../RMRKEquippableLazyMintErc20.md | 16 +++++++-------- .../RMRKEquippableLazyMintErc20Soulbound.md | 16 +++++++-------- .../RMRKNestableLazyMintErc20.md | 16 +++++++-------- .../RMRKNestableLazyMintErc20Soulbound.md | 16 +++++++-------- .../RMRKNestableMultiAssetLazyMintErc20.md | 16 +++++++-------- ...estableMultiAssetLazyMintErc20Soulbound.md | 16 +++++++-------- .../RMRKEquippableLazyMintNative.md | 16 +++++++-------- .../RMRKEquippableLazyMintNativeSoulbound.md | 16 +++++++-------- .../RMRKNestableLazyMintNative.md | 16 +++++++-------- .../RMRKNestableLazyMintNativeSoulbound.md | 16 +++++++-------- .../RMRKNestableMultiAssetLazyMintNative.md | 16 +++++++-------- ...stableMultiAssetLazyMintNativeSoulbound.md | 16 +++++++-------- .../premint/RMRKEquippablePreMint.md | 16 +++++++-------- .../premint/RMRKEquippablePreMintSoulbound.md | 16 +++++++-------- .../premint/RMRKNestableMultiAssetPreMint.md | 16 +++++++-------- .../RMRKNestableMultiAssetPreMintSoulbound.md | 16 +++++++-------- .../premint/RMRKNestablePreMint.md | 16 +++++++-------- .../premint/RMRKNestablePreMintSoulbound.md | 16 +++++++-------- docs/mocks/RMRKEquippableMock.md | 16 +++++++-------- docs/mocks/RMRKMinifiedEquippableMock.md | 16 +++++++-------- docs/mocks/RMRKNestableAutoIndexMock.md | 16 +++++++-------- docs/mocks/RMRKNestableMock.md | 16 +++++++-------- docs/mocks/RMRKNestableMultiAssetMock.md | 16 +++++++-------- .../RMRKNestableClaimableChildMock.md | 16 +++++++-------- .../soulbound/RMRKSoulboundEquippableMock.md | 16 +++++++-------- .../soulbound/RMRKSoulboundNestableMock.md | 16 +++++++-------- .../RMRKSoulboundNestableMultiAssetMock.md | 16 +++++++-------- .../RMRKNestableTypedMultiAssetMock.md | 16 +++++++-------- .../RMRKTypedEquippableMock.md | 16 +++++++-------- 42 files changed, 324 insertions(+), 324 deletions(-) rename docs/RMRK/emotable/{IRMRKEmotesRepository.md => IERC7409.md} (99%) rename docs/RMRK/nestable/{IERC6059.md => IERC7401.md} (97%) diff --git a/docs/RMRK/emotable/IRMRKEmotesRepository.md b/docs/RMRK/emotable/IERC7409.md similarity index 99% rename from docs/RMRK/emotable/IRMRKEmotesRepository.md rename to docs/RMRK/emotable/IERC7409.md index 098006ba..311766cf 100644 --- a/docs/RMRK/emotable/IRMRKEmotesRepository.md +++ b/docs/RMRK/emotable/IERC7409.md @@ -1,4 +1,4 @@ -# IRMRKEmotesRepository +# IERC7409 diff --git a/docs/RMRK/equippable/RMRKEquippable.md b/docs/RMRK/equippable/RMRKEquippable.md index 69b5e264..4a400f18 100644 --- a/docs/RMRK/equippable/RMRKEquippable.md +++ b/docs/RMRK/equippable/RMRKEquippable.md @@ -222,7 +222,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -240,12 +240,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -262,7 +262,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -625,7 +625,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -643,12 +643,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -665,7 +665,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/RMRK/equippable/RMRKMinifiedEquippable.md b/docs/RMRK/equippable/RMRKMinifiedEquippable.md index bc7a4676..c9f3ae4c 100644 --- a/docs/RMRK/equippable/RMRKMinifiedEquippable.md +++ b/docs/RMRK/equippable/RMRKMinifiedEquippable.md @@ -222,7 +222,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -240,12 +240,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -262,7 +262,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -625,7 +625,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -643,12 +643,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -665,7 +665,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/RMRK/extension/nestableAutoIndex/IRMRKNestableAutoIndex.md b/docs/RMRK/extension/nestableAutoIndex/IRMRKNestableAutoIndex.md index 0d1da8ba..70d26295 100644 --- a/docs/RMRK/extension/nestableAutoIndex/IRMRKNestableAutoIndex.md +++ b/docs/RMRK/extension/nestableAutoIndex/IRMRKNestableAutoIndex.md @@ -91,7 +91,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -109,12 +109,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -131,7 +131,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -202,7 +202,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -220,12 +220,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -242,7 +242,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/RMRK/extension/nestableAutoIndex/RMRKNestableAutoIndex.md b/docs/RMRK/extension/nestableAutoIndex/RMRKNestableAutoIndex.md index e340282b..12df3a4c 100644 --- a/docs/RMRK/extension/nestableAutoIndex/RMRKNestableAutoIndex.md +++ b/docs/RMRK/extension/nestableAutoIndex/RMRKNestableAutoIndex.md @@ -180,7 +180,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -198,12 +198,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -220,7 +220,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -336,7 +336,7 @@ function ownerOf(uint256 tokenId) external view returns (address) ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -354,12 +354,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -376,7 +376,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/RMRK/extension/reclaimableChild/RMRKReclaimableChild.md b/docs/RMRK/extension/reclaimableChild/RMRKReclaimableChild.md index a0b52545..c19b72be 100644 --- a/docs/RMRK/extension/reclaimableChild/RMRKReclaimableChild.md +++ b/docs/RMRK/extension/reclaimableChild/RMRKReclaimableChild.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -318,7 +318,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -336,12 +336,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -358,7 +358,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### reclaimChild diff --git a/docs/RMRK/nestable/IERC6059.md b/docs/RMRK/nestable/IERC7401.md similarity index 97% rename from docs/RMRK/nestable/IERC6059.md rename to docs/RMRK/nestable/IERC7401.md index 667cfc56..02266dae 100644 --- a/docs/RMRK/nestable/IERC6059.md +++ b/docs/RMRK/nestable/IERC7401.md @@ -1,8 +1,8 @@ -# IERC6059 +# IERC7401 *RMRK team* -> IERC6059 +> IERC7401 Interface smart contract of the RMRK nestable module. @@ -73,7 +73,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -91,12 +91,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -113,7 +113,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -184,7 +184,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -202,12 +202,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -224,7 +224,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/RMRK/nestable/RMRKNestable.md b/docs/RMRK/nestable/RMRKNestable.md index 414187ab..1579f6be 100644 --- a/docs/RMRK/nestable/RMRKNestable.md +++ b/docs/RMRK/nestable/RMRKNestable.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -318,7 +318,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -336,12 +336,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -358,7 +358,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/RMRK/nestable/RMRKNestableMultiAsset.md b/docs/RMRK/nestable/RMRKNestableMultiAsset.md index f0242c2d..07d545a1 100644 --- a/docs/RMRK/nestable/RMRKNestableMultiAsset.md +++ b/docs/RMRK/nestable/RMRKNestableMultiAsset.md @@ -197,7 +197,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -215,12 +215,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -237,7 +237,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -510,7 +510,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -528,12 +528,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -550,7 +550,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/RMRK/utils/RMRKCollectionUtils.md b/docs/RMRK/utils/RMRKCollectionUtils.md index 664a870c..04db54e8 100644 --- a/docs/RMRK/utils/RMRKCollectionUtils.md +++ b/docs/RMRK/utils/RMRKCollectionUtils.md @@ -54,7 +54,7 @@ Used to get the interface support of a specified collection. |---|---|---| | supports721 | bool | Boolean value signifying whether the collection supports ERC721 interface | | supportsMultiAsset | bool | Boolean value signifying whether the collection supports MultiAsset interface (ERC5773) | -| supportsNesting | bool | Boolean value signifying whether the collection supports Nestable interface (ERC6059) | +| supportsNesting | bool | Boolean value signifying whether the collection supports Nestable interface (ERC7401) | | supportsEquippable | bool | Boolean value signifying whether the collection supports Equippable interface (ERC6220) | | supportsSoulbound | bool | Boolean value signifying whether the collection supports Soulbound interface (ERC6454) | | supportsRoyalties | bool | Boolean value signifying whether the collection supports Royaltiesy interface (ERC2981) | diff --git a/docs/implementations/abstract/RMRKAbstractEquippable.md b/docs/implementations/abstract/RMRKAbstractEquippable.md index cfc51ad5..6be52151 100644 --- a/docs/implementations/abstract/RMRKAbstractEquippable.md +++ b/docs/implementations/abstract/RMRKAbstractEquippable.md @@ -287,7 +287,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -305,12 +305,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -327,7 +327,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -831,7 +831,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -849,12 +849,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -871,7 +871,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/implementations/abstract/RMRKAbstractNestable.md b/docs/implementations/abstract/RMRKAbstractNestable.md index 759fd641..22bbd7a0 100644 --- a/docs/implementations/abstract/RMRKAbstractNestable.md +++ b/docs/implementations/abstract/RMRKAbstractNestable.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -459,7 +459,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -477,12 +477,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -499,7 +499,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/implementations/abstract/RMRKAbstractNestableMultiAsset.md b/docs/implementations/abstract/RMRKAbstractNestableMultiAsset.md index 0c2b7c86..128306da 100644 --- a/docs/implementations/abstract/RMRKAbstractNestableMultiAsset.md +++ b/docs/implementations/abstract/RMRKAbstractNestableMultiAsset.md @@ -237,7 +237,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -255,12 +255,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -277,7 +277,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -691,7 +691,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -709,12 +709,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -731,7 +731,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/implementations/lazyMintErc20/RMRKEquippableLazyMintErc20.md b/docs/implementations/lazyMintErc20/RMRKEquippableLazyMintErc20.md index 203d3da9..dd963af3 100644 --- a/docs/implementations/lazyMintErc20/RMRKEquippableLazyMintErc20.md +++ b/docs/implementations/lazyMintErc20/RMRKEquippableLazyMintErc20.md @@ -287,7 +287,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -305,12 +305,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -327,7 +327,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -895,7 +895,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -913,12 +913,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -935,7 +935,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintErc20/RMRKEquippableLazyMintErc20Soulbound.md b/docs/implementations/lazyMintErc20/RMRKEquippableLazyMintErc20Soulbound.md index 2f756b8c..b997d039 100644 --- a/docs/implementations/lazyMintErc20/RMRKEquippableLazyMintErc20Soulbound.md +++ b/docs/implementations/lazyMintErc20/RMRKEquippableLazyMintErc20Soulbound.md @@ -287,7 +287,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -305,12 +305,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -327,7 +327,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -919,7 +919,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -937,12 +937,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -959,7 +959,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintErc20/RMRKNestableLazyMintErc20.md b/docs/implementations/lazyMintErc20/RMRKNestableLazyMintErc20.md index 972b5c3e..a7c72a21 100644 --- a/docs/implementations/lazyMintErc20/RMRKNestableLazyMintErc20.md +++ b/docs/implementations/lazyMintErc20/RMRKNestableLazyMintErc20.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -523,7 +523,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -541,12 +541,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -563,7 +563,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintErc20/RMRKNestableLazyMintErc20Soulbound.md b/docs/implementations/lazyMintErc20/RMRKNestableLazyMintErc20Soulbound.md index 79160b5c..75d524fc 100644 --- a/docs/implementations/lazyMintErc20/RMRKNestableLazyMintErc20Soulbound.md +++ b/docs/implementations/lazyMintErc20/RMRKNestableLazyMintErc20Soulbound.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -547,7 +547,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -565,12 +565,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -587,7 +587,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintErc20/RMRKNestableMultiAssetLazyMintErc20.md b/docs/implementations/lazyMintErc20/RMRKNestableMultiAssetLazyMintErc20.md index c11715fc..36ef6806 100644 --- a/docs/implementations/lazyMintErc20/RMRKNestableMultiAssetLazyMintErc20.md +++ b/docs/implementations/lazyMintErc20/RMRKNestableMultiAssetLazyMintErc20.md @@ -237,7 +237,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -255,12 +255,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -277,7 +277,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -755,7 +755,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -773,12 +773,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -795,7 +795,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintErc20/RMRKNestableMultiAssetLazyMintErc20Soulbound.md b/docs/implementations/lazyMintErc20/RMRKNestableMultiAssetLazyMintErc20Soulbound.md index b4a5319c..ce46a336 100644 --- a/docs/implementations/lazyMintErc20/RMRKNestableMultiAssetLazyMintErc20Soulbound.md +++ b/docs/implementations/lazyMintErc20/RMRKNestableMultiAssetLazyMintErc20Soulbound.md @@ -237,7 +237,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -255,12 +255,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -277,7 +277,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -779,7 +779,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -797,12 +797,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -819,7 +819,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintNative/RMRKEquippableLazyMintNative.md b/docs/implementations/lazyMintNative/RMRKEquippableLazyMintNative.md index aa5c06d6..f3172f7a 100644 --- a/docs/implementations/lazyMintNative/RMRKEquippableLazyMintNative.md +++ b/docs/implementations/lazyMintNative/RMRKEquippableLazyMintNative.md @@ -287,7 +287,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -305,12 +305,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -327,7 +327,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -878,7 +878,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -896,12 +896,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -918,7 +918,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintNative/RMRKEquippableLazyMintNativeSoulbound.md b/docs/implementations/lazyMintNative/RMRKEquippableLazyMintNativeSoulbound.md index 4692823c..93648313 100644 --- a/docs/implementations/lazyMintNative/RMRKEquippableLazyMintNativeSoulbound.md +++ b/docs/implementations/lazyMintNative/RMRKEquippableLazyMintNativeSoulbound.md @@ -287,7 +287,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -305,12 +305,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -327,7 +327,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -902,7 +902,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -920,12 +920,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -942,7 +942,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintNative/RMRKNestableLazyMintNative.md b/docs/implementations/lazyMintNative/RMRKNestableLazyMintNative.md index aaff97af..8a47073d 100644 --- a/docs/implementations/lazyMintNative/RMRKNestableLazyMintNative.md +++ b/docs/implementations/lazyMintNative/RMRKNestableLazyMintNative.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -506,7 +506,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -524,12 +524,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -546,7 +546,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintNative/RMRKNestableLazyMintNativeSoulbound.md b/docs/implementations/lazyMintNative/RMRKNestableLazyMintNativeSoulbound.md index ec9dfa4a..a1bfdd61 100644 --- a/docs/implementations/lazyMintNative/RMRKNestableLazyMintNativeSoulbound.md +++ b/docs/implementations/lazyMintNative/RMRKNestableLazyMintNativeSoulbound.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -530,7 +530,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -548,12 +548,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -570,7 +570,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintNative/RMRKNestableMultiAssetLazyMintNative.md b/docs/implementations/lazyMintNative/RMRKNestableMultiAssetLazyMintNative.md index 856d673f..e0a35428 100644 --- a/docs/implementations/lazyMintNative/RMRKNestableMultiAssetLazyMintNative.md +++ b/docs/implementations/lazyMintNative/RMRKNestableMultiAssetLazyMintNative.md @@ -237,7 +237,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -255,12 +255,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -277,7 +277,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -738,7 +738,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -756,12 +756,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -778,7 +778,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/lazyMintNative/RMRKNestableMultiAssetLazyMintNativeSoulbound.md b/docs/implementations/lazyMintNative/RMRKNestableMultiAssetLazyMintNativeSoulbound.md index f6c695d1..476aa401 100644 --- a/docs/implementations/lazyMintNative/RMRKNestableMultiAssetLazyMintNativeSoulbound.md +++ b/docs/implementations/lazyMintNative/RMRKNestableMultiAssetLazyMintNativeSoulbound.md @@ -237,7 +237,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -255,12 +255,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -277,7 +277,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -762,7 +762,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -780,12 +780,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -802,7 +802,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### pricePerMint diff --git a/docs/implementations/premint/RMRKEquippablePreMint.md b/docs/implementations/premint/RMRKEquippablePreMint.md index b20cac2c..30662636 100644 --- a/docs/implementations/premint/RMRKEquippablePreMint.md +++ b/docs/implementations/premint/RMRKEquippablePreMint.md @@ -287,7 +287,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -305,12 +305,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -327,7 +327,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -880,7 +880,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -898,12 +898,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -920,7 +920,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/implementations/premint/RMRKEquippablePreMintSoulbound.md b/docs/implementations/premint/RMRKEquippablePreMintSoulbound.md index e3f99c4f..c8f971f4 100644 --- a/docs/implementations/premint/RMRKEquippablePreMintSoulbound.md +++ b/docs/implementations/premint/RMRKEquippablePreMintSoulbound.md @@ -287,7 +287,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -305,12 +305,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -327,7 +327,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -904,7 +904,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -922,12 +922,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -944,7 +944,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/implementations/premint/RMRKNestableMultiAssetPreMint.md b/docs/implementations/premint/RMRKNestableMultiAssetPreMint.md index 74cc42b6..c6d43b4e 100644 --- a/docs/implementations/premint/RMRKNestableMultiAssetPreMint.md +++ b/docs/implementations/premint/RMRKNestableMultiAssetPreMint.md @@ -237,7 +237,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -255,12 +255,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -277,7 +277,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -740,7 +740,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -758,12 +758,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -780,7 +780,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/implementations/premint/RMRKNestableMultiAssetPreMintSoulbound.md b/docs/implementations/premint/RMRKNestableMultiAssetPreMintSoulbound.md index d6e21994..ae4004e3 100644 --- a/docs/implementations/premint/RMRKNestableMultiAssetPreMintSoulbound.md +++ b/docs/implementations/premint/RMRKNestableMultiAssetPreMintSoulbound.md @@ -237,7 +237,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -255,12 +255,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -277,7 +277,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -764,7 +764,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -782,12 +782,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -804,7 +804,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/implementations/premint/RMRKNestablePreMint.md b/docs/implementations/premint/RMRKNestablePreMint.md index b9860242..31cc26e4 100644 --- a/docs/implementations/premint/RMRKNestablePreMint.md +++ b/docs/implementations/premint/RMRKNestablePreMint.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -508,7 +508,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -526,12 +526,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -548,7 +548,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/implementations/premint/RMRKNestablePreMintSoulbound.md b/docs/implementations/premint/RMRKNestablePreMintSoulbound.md index 09aa3eeb..828e82a8 100644 --- a/docs/implementations/premint/RMRKNestablePreMintSoulbound.md +++ b/docs/implementations/premint/RMRKNestablePreMintSoulbound.md @@ -162,7 +162,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -180,12 +180,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -202,7 +202,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### collectionMetadata @@ -532,7 +532,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -550,12 +550,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -572,7 +572,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/mocks/RMRKEquippableMock.md b/docs/mocks/RMRKEquippableMock.md index 376a6b7e..d8d923d9 100644 --- a/docs/mocks/RMRKEquippableMock.md +++ b/docs/mocks/RMRKEquippableMock.md @@ -260,7 +260,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -278,12 +278,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -300,7 +300,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -716,7 +716,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -734,12 +734,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -756,7 +756,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/mocks/RMRKMinifiedEquippableMock.md b/docs/mocks/RMRKMinifiedEquippableMock.md index 72e1461b..f608977a 100644 --- a/docs/mocks/RMRKMinifiedEquippableMock.md +++ b/docs/mocks/RMRKMinifiedEquippableMock.md @@ -260,7 +260,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -278,12 +278,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -300,7 +300,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -698,7 +698,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -716,12 +716,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -738,7 +738,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/mocks/RMRKNestableAutoIndexMock.md b/docs/mocks/RMRKNestableAutoIndexMock.md index b84e2ca5..20ffa04f 100644 --- a/docs/mocks/RMRKNestableAutoIndexMock.md +++ b/docs/mocks/RMRKNestableAutoIndexMock.md @@ -180,7 +180,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -198,12 +198,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -220,7 +220,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -371,7 +371,7 @@ function ownerOf(uint256 tokenId) external view returns (address) ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -389,12 +389,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -411,7 +411,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/mocks/RMRKNestableMock.md b/docs/mocks/RMRKNestableMock.md index ae3a0315..085ce143 100644 --- a/docs/mocks/RMRKNestableMock.md +++ b/docs/mocks/RMRKNestableMock.md @@ -185,7 +185,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -203,12 +203,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -225,7 +225,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -394,7 +394,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -412,12 +412,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -434,7 +434,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/mocks/RMRKNestableMultiAssetMock.md b/docs/mocks/RMRKNestableMultiAssetMock.md index c736e135..2825e9ef 100644 --- a/docs/mocks/RMRKNestableMultiAssetMock.md +++ b/docs/mocks/RMRKNestableMultiAssetMock.md @@ -232,7 +232,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -250,12 +250,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -272,7 +272,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -598,7 +598,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -616,12 +616,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -638,7 +638,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/mocks/extensions/claimableChild/RMRKNestableClaimableChildMock.md b/docs/mocks/extensions/claimableChild/RMRKNestableClaimableChildMock.md index 702f010b..5b921c76 100644 --- a/docs/mocks/extensions/claimableChild/RMRKNestableClaimableChildMock.md +++ b/docs/mocks/extensions/claimableChild/RMRKNestableClaimableChildMock.md @@ -185,7 +185,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -203,12 +203,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -225,7 +225,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -394,7 +394,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -412,12 +412,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -434,7 +434,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### reclaimChild diff --git a/docs/mocks/extensions/soulbound/RMRKSoulboundEquippableMock.md b/docs/mocks/extensions/soulbound/RMRKSoulboundEquippableMock.md index a5683b20..0fc76b7f 100644 --- a/docs/mocks/extensions/soulbound/RMRKSoulboundEquippableMock.md +++ b/docs/mocks/extensions/soulbound/RMRKSoulboundEquippableMock.md @@ -260,7 +260,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -278,12 +278,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -300,7 +300,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -740,7 +740,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -758,12 +758,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -780,7 +780,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/mocks/extensions/soulbound/RMRKSoulboundNestableMock.md b/docs/mocks/extensions/soulbound/RMRKSoulboundNestableMock.md index eeafbbcb..87332395 100644 --- a/docs/mocks/extensions/soulbound/RMRKSoulboundNestableMock.md +++ b/docs/mocks/extensions/soulbound/RMRKSoulboundNestableMock.md @@ -185,7 +185,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -203,12 +203,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -225,7 +225,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -418,7 +418,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -436,12 +436,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -458,7 +458,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllChildren diff --git a/docs/mocks/extensions/soulbound/RMRKSoulboundNestableMultiAssetMock.md b/docs/mocks/extensions/soulbound/RMRKSoulboundNestableMultiAssetMock.md index 0fa09878..54237884 100644 --- a/docs/mocks/extensions/soulbound/RMRKSoulboundNestableMultiAssetMock.md +++ b/docs/mocks/extensions/soulbound/RMRKSoulboundNestableMultiAssetMock.md @@ -232,7 +232,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -250,12 +250,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -272,7 +272,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -622,7 +622,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -640,12 +640,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -662,7 +662,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/mocks/extensions/typedMultiAsset/RMRKNestableTypedMultiAssetMock.md b/docs/mocks/extensions/typedMultiAsset/RMRKNestableTypedMultiAssetMock.md index 402ff2c6..c2ffedfb 100644 --- a/docs/mocks/extensions/typedMultiAsset/RMRKNestableTypedMultiAssetMock.md +++ b/docs/mocks/extensions/typedMultiAsset/RMRKNestableTypedMultiAssetMock.md @@ -250,7 +250,7 @@ Used to burn a given token. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -268,12 +268,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -290,7 +290,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -638,7 +638,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -656,12 +656,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -678,7 +678,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets diff --git a/docs/mocks/extensions/typedMultiAsset/RMRKTypedEquippableMock.md b/docs/mocks/extensions/typedMultiAsset/RMRKTypedEquippableMock.md index 8708ac66..9551efbe 100644 --- a/docs/mocks/extensions/typedMultiAsset/RMRKTypedEquippableMock.md +++ b/docs/mocks/extensions/typedMultiAsset/RMRKTypedEquippableMock.md @@ -281,7 +281,7 @@ Used to verify whether a token can be equipped into a given parent's slot. ### childOf ```solidity -function childOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function childOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific active child token for a given parent token. @@ -299,12 +299,12 @@ Used to retrieve a specific active child token for a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containing data about the specified child | +| _0 | IERC7401.Child | A Child struct containing data about the specified child | ### childrenOf ```solidity -function childrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function childrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the active child tokens of a given parent token. @@ -321,7 +321,7 @@ Used to retrieve the active child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's active child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's active child tokens | ### directOwnerOf @@ -759,7 +759,7 @@ Used to retrieve the *root* owner of a given token. ### pendingChildOf ```solidity -function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC6059.Child) +function pendingChildOf(uint256 parentId, uint256 index) external view returns (struct IERC7401.Child) ``` Used to retrieve a specific pending child token from a given parent token. @@ -777,12 +777,12 @@ Used to retrieve a specific pending child token from a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child | A Child struct containting data about the specified child | +| _0 | IERC7401.Child | A Child struct containting data about the specified child | ### pendingChildrenOf ```solidity -function pendingChildrenOf(uint256 parentId) external view returns (struct IERC6059.Child[]) +function pendingChildrenOf(uint256 parentId) external view returns (struct IERC7401.Child[]) ``` Used to retrieve the pending child tokens of a given parent token. @@ -799,7 +799,7 @@ Used to retrieve the pending child tokens of a given parent token. | Name | Type | Description | |---|---|---| -| _0 | IERC6059.Child[] | An array of Child structs containing the parent token's pending child tokens | +| _0 | IERC7401.Child[] | An array of Child structs containing the parent token's pending child tokens | ### rejectAllAssets