tanglepay
v2.7.5
Published
![Tangle Pay](https://tanglepay.com/image/TanglePayLogo.png "Tangle Pay")
Downloads
37
Readme
Tangle Pay
Intro
TanglePay is an open-source IOTA wallet that manages your IOTA token and explore the IOTA ecosystem in one secure interface on your mobile or browser.
This repo hosts the source code of TanglePay mobile version that supports iOS and Android.
Secure
Your private keys are encrypted and never leave your device. You have full control of your funds.
Anonymous
There are no accounts, verification or required KYC for basic features in the wallet.
Accessible
You can access TanglePay anywhere at any time with mobile app or chrome app.
Open
TanglePay is an open gateway to IOTA ecosystem, supporting Defi, NFTs and IoT in the coming update of IOTA.
Installation
Download the app from one of below link for your preferred platform.
- All platforms: Official TanglePay website
- Chrome Web Store
- Apple App Store
- Google Play
- GitHub releases
How to verify authenticity of downloaded app
Visit GitHub page for
- Latest extension release
- Latest mobile release
- or any specific version match your downloads under release page.
Calculate your SHA256 checksums of downloaded package and compare with the one specified in the release notes.
For more details, please refer to see Verify Download.
How to verify source code matches downloaded app
Checkout the code with matching release tags from source repositories.
Unpack the downloaded applications and compare with the local build output, there shouldn't be differences except signature, cert or hash due to build environment/platform discrepancies.
For local build instructions, pleaes refer to Development section.
Contributing
Help out the TanglePay project by filing a bug report, making a feature request or opening a pull request.
Major projects
Joining the discussion
Development
Build for TanglePay-Extension
yarn
yarn build
Build for TanglePay-Mobile
npm install
cd [your platform]
gradlew assembleRelease
Include TanglePay library into your own app
yarn add tanglepay
// app
import {Base, I18n, IotaSDK, ...} from 'tanglepay/lib/app/common';
import {useStore, ...} from 'tanglepay/lib/app/store'
import { useAddWallet } from 'anglepay/lib/app/store/common'
// browser
import {Base, I18n, IotaSDK, ...} from 'tanglepay/lib/browser/common';
import {useStore, ...} from 'tanglepay/lib/browser/store'
import { useAddWallet } from 'anglepay/lib/browser/store/common'