Skip to content

Commit b48744a

Browse files
committed
feat(docs): add reservationFeeRecipient function to IMintingTagManager documentation
1 parent 9a8da76 commit b48744a

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

docs/fassets/reference/IMintingTagManager.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,18 @@ Return the fee (in native currency) required to reserve a new minting tag.
7878
function reservationFee() external view returns (uint256);
7979
```
8080

81+
### `reservationFeeRecipient`
82+
83+
Return the address that receives reservation fees.
84+
85+
```solidity
86+
function reservationFeeRecipient() external view returns (address payable);
87+
```
88+
89+
#### Returns
90+
91+
- The address that receives fees paid when reserving minting tags.
92+
8193
### `reservedTagsForOwner`
8294

8395
Return all minting tag IDs owned by the given address.

src/features/FAssets/OperationalParameters/operational-parameters.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1553,9 +1553,9 @@ export const operationalParameters = [
15531553
},
15541554
{
15551555
name: "Reservation Fee Recipient",
1556-
functionName: "getDirectMintingFeeReceiver",
1556+
functionName: "reservationFeeRecipient",
15571557
interfaceLink:
1558-
"/fassets/reference/IAssetManager#getdirectmintingfeereceiver",
1558+
"/fassets/reference/IMintingTagManager#reservationfeerecipient",
15591559
description: "Address that receives reservation fees.",
15601560
valueType: "address",
15611561
values: {

0 commit comments

Comments
 (0)