Tangle Pay
!
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.
$3
Your private keys are encrypted and never leave your device. You have full control of your funds.
$3
There are no accounts, verification or required KYC for basic features in the wallet.
$3
You can access TanglePay anywhere at any time with mobile app or chrome app.
$3
TanglePay is an open gateway to IOTA ecosystem, supporting Defi, NFTs and IoT in the coming update of IOTA.
Installation
$3
- All platforms: Official
TanglePay website
-
Chrome Web Store
-
Apple App Store
-
Google Play
-
GitHub releases
$3
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.
$3
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
-
Shared Libraries
-
Mobile
-
Browser Extensions
-
DeepLink
Joining the discussion
-
Telegram
-
Twitter
-
Discord
- Email:support@tanglepay.com
Development
$3
``
yarn
yarn build
`
$3
`
npm install
cd [your platform]
gradlew assembleRelease
`
$3
`
yarn add tanglepay
`
`
javascript
// 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'
``