Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@firefly-exchange/library-sui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Library Sui
Library housing util methods and classes to interact with Bluefin protocol deployed on Sui blockchain
Prerequisites:
- SUI Node: >=0.33
- Node: v18.x.x
Linux users:
- for installing sui on your local computer you need to follow the tutorial on sui website but make sure that you install using this command
cargo install --locked --git https://github.com/MystenLabs/sui.git --tag devnet-1.2.0 sui- What the above command is doing is that it is installing the 0.33.0 version which is compatible with the contracts.
Mac users:
- If you are using MAC with M1 chip after following the installation instructions you will likely face an error for invalid symbol for architecture arm64 with some cryptic error message.
- To resolve this error first uninstall rust from your mac and reinstall it with the following options
default host triple: x86_64-apple-darwin default toolchain: stable profile: default modify PATH variable: yes- Then you can install sui the same was by running this command
cargo install --locked --git https://github.com/MystenLabs/sui.git --tag devnet-1.2.0 sui
How to
- Install dependencies using
yarn - Build using
yarn build