Clone repository
December 2, 2025 ยท View on GitHub
There are two options, cloning via HTTPS or via SSH. HTTPS is recommended.
HTTPS Clone (Recommended)
If using HTTPS, run:
git clone https://github.com/GLEECBTC/gleec-wallet.git
cd gleec-wallet
git submodule update --init --recursive
Alternatively, you can clone with submodules in one command:
git clone --recurse-submodules https://github.com/GLEECBTC/gleec-wallet.git
SSH Clone
For SSH cloning you need to setup SSH authentication properly. Then you should be able to run:
git clone --recurse-submodules git@github.com:GLEECBTC/gleec-wallet.git
Or if you already cloned without submodules:
git clone git@github.com:GLEECBTC/gleec-wallet.git
cd gleec-wallet
git submodule update --init --recursive
IDE Integration
Important: After cloning via IDE, you must initialize the submodules manually:
cd gleec-wallet
git submodule update --init --recursive
Verifying Submodule Setup
After cloning, verify that the SDK submodule was initialized correctly:
ls -la sdk/
You should see the komodo-defi-sdk-flutter repository contents in the sdk/ directory.
Next Steps
After successfully cloning and initializing submodules:
- Follow the Project Setup guide for environment configuration
- Review SDK Submodule Management for working with the SDK