You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/fassets/reference/IAssetManagerEvents.mdx
+25-1Lines changed: 25 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ sidebar_position: 3
7
7
8
8
`IAssetManagerEvents` is an interface that defines the events emitted by the [`IAssetManager`](/fassets/reference/IAssetManager) contract.
9
9
10
-
Sourced from `IAssetManagerEvents.sol` on [GitHub](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/IAssetManagerEvents.sol).ā
10
+
Sourced from `IAssetManagerEvents.sol` on [GitHub](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/IAssetManagerEvents.sol).
11
11
12
12
## Event Categories
13
13
@@ -118,6 +118,30 @@ event MintingExecuted(
118
118
);
119
119
```
120
120
121
+
### `DirectMintingExecuted`
122
+
123
+
Emitted when a direct minting payment is confirmed and FAssets are minted to the target address.
124
+
125
+
Parameters:
126
+
127
+
-`transactionId`: Identifier of the direct minting transaction
128
+
-`targetAddress`: Address that receives the minted FAssets
129
+
-`executor`: Address of the executor that submitted the minting proof
130
+
-`mintedAmountUBA`: Amount of FAssets minted in the underlying base amount
131
+
-`mintingFeeUBA`: Minting fee in the underlying base amount
132
+
-`executorFeeUBA`: Fee paid to the executor in the underlying base amount
133
+
134
+
```solidity
135
+
event DirectMintingExecuted(
136
+
bytes32 transactionId,
137
+
address targetAddress,
138
+
address executor,
139
+
uint256 mintedAmountUBA,
140
+
uint256 mintingFeeUBA,
141
+
uint256 executorFeeUBA
142
+
);
143
+
```
144
+
121
145
### `MintingPaymentDefault`
122
146
123
147
Emitted when a minter fails to pay the underlying funds in time.
0 commit comments