File tree Expand file tree Collapse file tree
src/features/FAssets/OperationalParameters Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,6 +78,18 @@ Return the fee (in native currency) required to reserve a new minting tag.
7878function 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
8395Return all minting tag IDs owned by the given address.
Original file line number Diff line number Diff 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 : {
You can’t perform that action at this time.
0 commit comments