Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "bluefin_v2_client_sui"
version = "1.1.11"
version = "1.1.12"
description = "Library to interact with Bluefin exchange protocol including its off-chain api-gateway and on-chain contracts"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion src/sui_utils/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def config_logging(logging, logging_level, log_file: str = None):
datefmt="%Y-%m-%d %H:%M:%S",
)

def decimal_to_bcs(self, num):
def decimal_to_bcs(num):
# Initialize an empty list to store the BCS bytes
bcs_bytes = []
while num > 0:
Expand Down
Loading