Named after a species of dragon - Ukrainian Ironbelly. One of them guarded some of the oldest and deepest vaults in Gringotts. This wallet uses React-Native for the UI and official Grin source code written in Rust.
Join iOS beta testing - https://testflight.apple.com/join/GrqGPx9W
Let's install Xcode build tools first
xcode-select --install
then install Rust
curl https://sh.rustup.rs -sSf | sh
add iOS architectures to rustup
rustup target add aarch64-apple-ios x86_64-apple-ios
install cargo-lipo, which is a cargo subcommand which automatically creates a universal library for use with iOS
cargo install cargo-lipo
# Clone this repo somewhere
git clone --recurse-submodules https://github.com/cyclefortytwo/ironbelly.git # it uses submodules
cd ironbelly
# Build staticlib from Rust Grin code
# All Rust related code lives in `rust/` directory
cd rust
cargo lipo --release
cd ..
npm install
# All iOS related code lives in `ios/` directory
cd ios/
sudo gem install cocoapods
pod install
cd ..
npm start # this will start React Native server
After all of these, please open ios/Ironbelly.xcworkspace
in XCode and run Product -> Build (⌘B)
Apache License v2.0.