mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-21 15:54:26 +01:00
Add support for new rest authenticated endpoints.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from typing import cast, TypeVar
|
||||
from typing import cast, TypeVar, Union
|
||||
|
||||
from .. exceptions import IntegerUnderflowError, IntegerOverflowflowError
|
||||
|
||||
@@ -25,11 +25,19 @@ class _Int(int):
|
||||
class Int16(_Int):
|
||||
_BITS = 16
|
||||
|
||||
int16 = Union[Int16, int]
|
||||
|
||||
class Int32(_Int):
|
||||
_BITS = 32
|
||||
|
||||
int32 = Union[Int32, int]
|
||||
|
||||
class Int45(_Int):
|
||||
_BITS = 45
|
||||
|
||||
int45 = Union[Int45, int]
|
||||
|
||||
class Int64(_Int):
|
||||
_BITS = 64
|
||||
_BITS = 64
|
||||
|
||||
int64 = Union[Int64, int]
|
||||
Reference in New Issue
Block a user