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
@@ -165,15 +165,251 @@ Records issuance of stock to stakeholders.
165
165
}
166
166
```
167
167
168
-
Other transaction types include:
169
-
- EquityCompensationIssuance
170
-
- ConvertibleIssuance
171
-
- WarrantIssuance
172
-
- StockTransfer
173
-
- StockCancellation
174
-
- StockConsolidation
175
-
- EquityCompensationExercise
176
-
- And many others (acceptance, adjustment, conversion, release, repurchase, return_to_pool, split, etc.)
168
+
#### ConvertibleAcceptance
169
+
Records the acceptance of a convertible security by a stakeholder.
170
+
171
+
```javascript
172
+
{
173
+
_id:String (UUID),
174
+
object_type:"TX_CONVERTIBLE_ACCEPTANCE",
175
+
comments: [String],
176
+
security_id:String,
177
+
date:String,
178
+
issuer:String// Reference to Issuer._id
179
+
}
180
+
```
181
+
182
+
#### EquityCompensationAcceptance
183
+
Records the acceptance of equity compensation by a stakeholder. The `object_type` can be either `TX_PLAN_SECURITY_ACCEPTANCE` or `TX_EQUITY_COMPENSATION_ACCEPTANCE`.
Records an adjustment to the pool of shares reserved for a stock plan.
293
+
294
+
```javascript
295
+
{
296
+
_id:String (UUID),
297
+
object_type:"TX_STOCK_PLAN_POOL_ADJUSTMENT",
298
+
comments: [String],
299
+
date:String,
300
+
stock_plan_id:String,
301
+
board_approval_date:String,
302
+
stockholder_approval_date:String,
303
+
shares_reserved:String,
304
+
is_onchain_synced:Boolean,
305
+
issuer:String, // Reference to Issuer._id
306
+
tx_hash:String
307
+
}
308
+
```
309
+
310
+
#### ConvertibleCancellation
311
+
Records the cancellation of a convertible security.
312
+
313
+
```javascript
314
+
{
315
+
_id:String (UUID),
316
+
object_type:"TX_CONVERTIBLE_CANCELLATION",
317
+
amount:Object,
318
+
comments: [String],
319
+
security_id:String,
320
+
date:String,
321
+
balance_security_id:String,
322
+
reason_text:String,
323
+
issuer:String// Reference to Issuer._id
324
+
}
325
+
```
326
+
327
+
#### EquityCompensationCancellation
328
+
Records the cancellation of equity compensation. The `object_type` can be either `TX_PLAN_SECURITY_CANCELLATION` or `TX_EQUITY_COMPENSATION_CANCELLATION`.
0 commit comments