Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
210 changes: 46 additions & 164 deletions .openapi-generator/FILES

Large diffs are not rendered by default.

257 changes: 154 additions & 103 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Account.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**code** | **int** | |
**message** | **str** | | [optional]
**account_type** | **int** | |
**account_trading_mode** | **int** | Classic=0 and Unified=1 |
**index** | **int** | |
**l1_address** | **str** | |
**cancel_all_time** | **int** | |
Expand All @@ -18,7 +19,6 @@ Name | Type | Description | Notes
**status** | **int** | |
**collateral** | **str** | |
**transaction_time** | **int** | |
**account_trading_mode** | **int** | |

## Example

Expand Down
338 changes: 168 additions & 170 deletions docs/AccountApi.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions docs/AccountAsset.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Name | Type | Description | Notes
**asset_id** | **int** | |
**balance** | **str** | |
**locked_balance** | **str** | |
**margin_balance** | **str** | |
**margin_mode** | **str** | |

## Example

Expand Down
9 changes: 5 additions & 4 deletions docs/AccountLimits.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ Name | Type | Description | Notes
**code** | **int** | |
**message** | **str** | | [optional]
**max_llp_percentage** | **int** | |
**max_llp_amount** | **str** | |
**user_tier** | **str** | |
**can_create_public_pool** | **bool** | |
**user_tier_name** | **str** | |
**max_llp_amount** | **str** | |
**current_maker_fee_tick** | **int** | |
**current_taker_fee_tick** | **int** | |
**leased_lit** | **str** | |
**effective_lit_stakes** | **str** | |
**effective_lit_stakes** | **str** | Effective staked LIT shares including active leases. |
**leased_lit** | **str** | Total actively leased LIT. |
**user_tier_name** | **str** | |
**user_tier_last_update** | **int** | | [optional]

## Example

Expand Down
34 changes: 0 additions & 34 deletions docs/AccountMarginStats.md

This file was deleted.

41 changes: 0 additions & 41 deletions docs/AccountMarketStats.md

This file was deleted.

3 changes: 2 additions & 1 deletion docs/AccountMetadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ Name | Type | Description | Notes
**description** | **str** | |
**can_invite** | **bool** | Remove After FE uses L1 meta endpoint |
**referral_points_percentage** | **str** | Remove After FE uses L1 meta endpoint |
**can_rfq** | **bool** | |
**created_at** | **int** | |
**can_rfq** | **bool** | |
**can_rfq_market_ids** | **List[str]** | |

## Example

Expand Down
37 changes: 0 additions & 37 deletions docs/AccountStats.md

This file was deleted.

36 changes: 0 additions & 36 deletions docs/AccountTradeStats.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/AnnouncementApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Method | HTTP request | Description

announcement

Get announcement
Get announcements

### Example

Expand Down
8 changes: 8 additions & 0 deletions docs/Asset.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ Name | Type | Description | Notes
**margin_mode** | **str** | |
**index_price** | **str** | |
**l1_address** | **str** | |
**global_supply_cap** | **str** | |
**liquidation_fee** | **str** | |
**liquidation_threshold** | **str** | |
**loan_to_value** | **str** | |
**price_decimals** | **int** | |
**total_supplied** | **str** | |
**user_supply_cap** | **str** | |
**liquidation_factor** | **str** | |

## Example

Expand Down
41 changes: 41 additions & 0 deletions docs/Block.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Block


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**commitment** | **str** | |
**height** | **int** | |
**state_root** | **str** | |
**priority_operations** | **int** | |
**on_chain_l2_operations** | **int** | |
**pending_on_chain_operations_pub_data** | **str** | |
**committed_tx_hash** | **str** | |
**committed_at** | **int** | |
**verified_tx_hash** | **str** | |
**verified_at** | **int** | |
**txs** | [**List[Tx]**](Tx.md) | |
**status** | **int** | |
**size** | **int** | |

## Example

```python
from lighter.models.block import Block

# TODO update the JSON string below
json = "{}"
# create an instance of Block from a JSON string
block_instance = Block.from_json(json)
# print the JSON string representation of the object
print(Block.to_json())

# convert the object into a dict
block_dict = block_instance.to_dict()
# create an instance of Block from a dict
block_from_dict = Block.from_dict(block_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Loading
Loading