├── .circleci └── config.yml ├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── chrome_extension ├── 144.png ├── 16.png ├── 192.png ├── 36.png ├── 48.png ├── 72.png ├── 96.png ├── chrome.js ├── index.html └── manifest.json ├── component ├── about.html ├── about.js ├── api.html ├── api.js ├── atomicswap.html ├── atomicswap.js ├── confirm.html ├── confirm.js ├── currencySet.html ├── currencySet.js ├── customBar.html ├── customBar.js ├── dexOrder.html ├── dexOrder.js ├── editOrder.html ├── editOrder.js ├── ethBase.html ├── ethBase.js ├── ethTokens.html ├── ethTokens.js ├── finished.html ├── finished.js ├── first.html ├── first.js ├── generateKey.html ├── generateKey.js ├── generateKeyWarn.html ├── generateKeyWarn.js ├── help.html ├── help.js ├── history.html ├── history.js ├── home.html ├── home.js ├── importExport.html ├── importExport.js ├── invoice.html ├── invoice.js ├── listTokens.html ├── listTokens.js ├── login.html ├── login.js ├── makeToken.html ├── makeToken.js ├── manageCoin.html ├── manageCoin.js ├── monaparty.html ├── monaparty.js ├── navigator.html ├── navigator.js ├── nem.html ├── nem.js ├── orderSelect.html ├── qrcode.html ├── qrcode.js ├── question.html ├── question.js ├── receive.html ├── receive.js ├── restorePassphrase.html ├── restorePassphrase.js ├── send.html ├── send.js ├── sendToken.html ├── sendToken.js ├── setPassword.html ├── setPassword.js ├── settings.html ├── settings.js ├── showLabel.html ├── showLabel.js ├── showPassphrase.html ├── showPassphrase.js ├── sign.html ├── sign.js ├── signTx.html ├── signTx.js ├── sweep.html ├── sweep.js ├── timestamp.html ├── timestamp.js ├── tokenInfo.html ├── tokenInfo.js ├── txDetail.html ├── txDetail.js ├── utxo.html ├── utxo.js ├── xrp.html └── xrp.js ├── cordovaProj ├── AndroidManifest.xml ├── config.xml ├── cordovaProj.iml ├── manifestHook.js ├── package-lock.json ├── package.json ├── res │ ├── icons │ │ ├── android │ │ │ ├── hdpi.png │ │ │ ├── ldpi.png │ │ │ ├── mdpi.png │ │ │ ├── xhdpi.png │ │ │ ├── xxhdpi.png │ │ │ └── xxxhdpi.png │ │ ├── browser │ │ │ └── 512.png │ │ ├── ios │ │ │ ├── icon-1024.png │ │ │ ├── icon-167.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small-40.png │ │ │ ├── icon-small-40@2x.png │ │ │ ├── icon-small-40@3x.png │ │ │ ├── icon-small-50.png │ │ │ ├── icon-small-50@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ └── windows │ │ │ ├── Square150x150Logo.png │ │ │ ├── Square310x310Logo.png │ │ │ ├── Square44x44Logo.png │ │ │ ├── Square70x70Logo.png │ │ │ ├── Square71x71Logo.png │ │ │ ├── smalllogo.png │ │ │ └── storelogo.png │ └── screens │ │ ├── android │ │ ├── splash-land-hdpi.png │ │ ├── splash-land-ldpi.png │ │ ├── splash-land-mdpi.png │ │ ├── splash-land-xhdpi.png │ │ ├── splash-land-xxhdpi.png │ │ ├── splash-land-xxxhdpi.png │ │ ├── splash-port-hdpi.png │ │ ├── splash-port-ldpi.png │ │ ├── splash-port-mdpi.png │ │ ├── splash-port-xhdpi.png │ │ ├── splash-port-xxhdpi.png │ │ └── splash-port-xxxhdpi.png │ │ ├── ios │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default-Landscape@2x~ipad.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default@2x~ipad~anyany.png │ │ ├── Default@2x~ipad~comany.png │ │ ├── Default@2x~iphone.png │ │ ├── Default@2x~iphone~anyany.png │ │ ├── Default@2x~iphone~comany.png │ │ ├── Default@2x~iphone~comcom.png │ │ ├── Default@3x~iphone~anyany.png │ │ ├── Default@3x~iphone~anycom.png │ │ ├── Default@3x~iphone~comany.png │ │ └── Default~iphone.png │ │ └── windows │ │ ├── splashscreen.png │ │ └── splashscreenphone.png └── www │ └── index.html ├── docs ├── App_Store_Submission.md ├── CREDITS.txt ├── How_to_make_a_flavour_of_monya.md ├── LICENSE.txt ├── Privacy_Policy.md ├── What_is_Atomic_Swap.md ├── a │ ├── dist │ │ └── dist.js │ └── index.html ├── coin_sample.json ├── future_plan.md ├── launch.md ├── server.org ├── urlapi.md └── もにゃ.mobileconfig ├── gulpfile.js ├── index.html ├── js ├── coinUtil.js ├── currency.js ├── currencyList.js ├── erc20ABI.js ├── errors.js ├── explorers │ ├── blockbook.js │ ├── index.js │ └── insight.js ├── extension.js ├── lang.js ├── main.js ├── storage.js ├── store.js ├── sw.js ├── title.js └── titleList.js ├── lang ├── dict.json └── template.json ├── package.json ├── res ├── background.png ├── banner.png ├── banner_en.png ├── coins │ ├── bch.png │ ├── btc.png │ ├── btcsw.png │ ├── dash.png │ ├── ecob.png │ ├── etc.png │ ├── eth.png │ ├── fjc.png │ ├── koto.png │ ├── kuma.png │ ├── lc │ │ ├── aud.png │ │ ├── chf.png │ │ ├── eur.png │ │ ├── gbp.png │ │ ├── hkd.png │ │ ├── jpy.png │ │ ├── usd.png │ │ └── zar.png │ ├── ltc.png │ ├── mona.png │ ├── neet.png │ ├── nem.png │ ├── nuko.png │ ├── paySound │ │ ├── mona.m4a │ │ └── zny.m4a │ ├── rin.png │ ├── saya.png │ ├── sha1.png │ ├── tmona.png │ ├── vips.png │ ├── xcp.png │ ├── xmp.png │ ├── xrp.png │ ├── zec.png │ └── zny.png ├── cordova-plugin-qrscanner-lib.min.js ├── currency_checkmark.png ├── howToAddHome.jpg ├── icon_mat │ ├── monya_icon.svg │ └── monya_icon_round.svg ├── monappy.png ├── monya_icon_round_512.png ├── realmona.png ├── sand.jpg ├── spinner.png └── success.png ├── scss ├── cond.scss ├── custom │ ├── fonts │ │ ├── monyafont.eot │ │ ├── monyafont.svg │ │ ├── monyafont.ttf │ │ └── monyafont.woff │ └── styles.css ├── index.scss ├── onsenui-fix.scss └── param.scss ├── util ├── jatoen.js ├── licensewriter.js └── translator.js ├── webpack.config.cordova.js ├── webpack.config.dev.js ├── webpack.config.js └── yonde_kudasai.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/README.md -------------------------------------------------------------------------------- /chrome_extension/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/144.png -------------------------------------------------------------------------------- /chrome_extension/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/16.png -------------------------------------------------------------------------------- /chrome_extension/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/192.png -------------------------------------------------------------------------------- /chrome_extension/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/36.png -------------------------------------------------------------------------------- /chrome_extension/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/48.png -------------------------------------------------------------------------------- /chrome_extension/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/72.png -------------------------------------------------------------------------------- /chrome_extension/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/96.png -------------------------------------------------------------------------------- /chrome_extension/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/chrome.js -------------------------------------------------------------------------------- /chrome_extension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/index.html -------------------------------------------------------------------------------- /chrome_extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/chrome_extension/manifest.json -------------------------------------------------------------------------------- /component/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/about.html -------------------------------------------------------------------------------- /component/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/about.js -------------------------------------------------------------------------------- /component/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/api.html -------------------------------------------------------------------------------- /component/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/api.js -------------------------------------------------------------------------------- /component/atomicswap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/atomicswap.html -------------------------------------------------------------------------------- /component/atomicswap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/atomicswap.js -------------------------------------------------------------------------------- /component/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/confirm.html -------------------------------------------------------------------------------- /component/confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/confirm.js -------------------------------------------------------------------------------- /component/currencySet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/currencySet.html -------------------------------------------------------------------------------- /component/currencySet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/currencySet.js -------------------------------------------------------------------------------- /component/customBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/customBar.html -------------------------------------------------------------------------------- /component/customBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/customBar.js -------------------------------------------------------------------------------- /component/dexOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/dexOrder.html -------------------------------------------------------------------------------- /component/dexOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/dexOrder.js -------------------------------------------------------------------------------- /component/editOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/editOrder.html -------------------------------------------------------------------------------- /component/editOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/editOrder.js -------------------------------------------------------------------------------- /component/ethBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/ethBase.html -------------------------------------------------------------------------------- /component/ethBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/ethBase.js -------------------------------------------------------------------------------- /component/ethTokens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/ethTokens.html -------------------------------------------------------------------------------- /component/ethTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/ethTokens.js -------------------------------------------------------------------------------- /component/finished.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/finished.html -------------------------------------------------------------------------------- /component/finished.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/finished.js -------------------------------------------------------------------------------- /component/first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/first.html -------------------------------------------------------------------------------- /component/first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/first.js -------------------------------------------------------------------------------- /component/generateKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/generateKey.html -------------------------------------------------------------------------------- /component/generateKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/generateKey.js -------------------------------------------------------------------------------- /component/generateKeyWarn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/generateKeyWarn.html -------------------------------------------------------------------------------- /component/generateKeyWarn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/generateKeyWarn.js -------------------------------------------------------------------------------- /component/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/help.html -------------------------------------------------------------------------------- /component/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/help.js -------------------------------------------------------------------------------- /component/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/history.html -------------------------------------------------------------------------------- /component/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/history.js -------------------------------------------------------------------------------- /component/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/home.html -------------------------------------------------------------------------------- /component/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/home.js -------------------------------------------------------------------------------- /component/importExport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/importExport.html -------------------------------------------------------------------------------- /component/importExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/importExport.js -------------------------------------------------------------------------------- /component/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/invoice.html -------------------------------------------------------------------------------- /component/invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/invoice.js -------------------------------------------------------------------------------- /component/listTokens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/listTokens.html -------------------------------------------------------------------------------- /component/listTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/listTokens.js -------------------------------------------------------------------------------- /component/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/login.html -------------------------------------------------------------------------------- /component/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/login.js -------------------------------------------------------------------------------- /component/makeToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/makeToken.html -------------------------------------------------------------------------------- /component/makeToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/makeToken.js -------------------------------------------------------------------------------- /component/manageCoin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/manageCoin.html -------------------------------------------------------------------------------- /component/manageCoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/manageCoin.js -------------------------------------------------------------------------------- /component/monaparty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/monaparty.html -------------------------------------------------------------------------------- /component/monaparty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/monaparty.js -------------------------------------------------------------------------------- /component/navigator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/navigator.html -------------------------------------------------------------------------------- /component/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/navigator.js -------------------------------------------------------------------------------- /component/nem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/nem.html -------------------------------------------------------------------------------- /component/nem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/nem.js -------------------------------------------------------------------------------- /component/orderSelect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/orderSelect.html -------------------------------------------------------------------------------- /component/qrcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/qrcode.html -------------------------------------------------------------------------------- /component/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/qrcode.js -------------------------------------------------------------------------------- /component/question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/question.html -------------------------------------------------------------------------------- /component/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/question.js -------------------------------------------------------------------------------- /component/receive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/receive.html -------------------------------------------------------------------------------- /component/receive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/receive.js -------------------------------------------------------------------------------- /component/restorePassphrase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/restorePassphrase.html -------------------------------------------------------------------------------- /component/restorePassphrase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/restorePassphrase.js -------------------------------------------------------------------------------- /component/send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/send.html -------------------------------------------------------------------------------- /component/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/send.js -------------------------------------------------------------------------------- /component/sendToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/sendToken.html -------------------------------------------------------------------------------- /component/sendToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/sendToken.js -------------------------------------------------------------------------------- /component/setPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/setPassword.html -------------------------------------------------------------------------------- /component/setPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/setPassword.js -------------------------------------------------------------------------------- /component/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/settings.html -------------------------------------------------------------------------------- /component/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/settings.js -------------------------------------------------------------------------------- /component/showLabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/showLabel.html -------------------------------------------------------------------------------- /component/showLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/showLabel.js -------------------------------------------------------------------------------- /component/showPassphrase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/showPassphrase.html -------------------------------------------------------------------------------- /component/showPassphrase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/showPassphrase.js -------------------------------------------------------------------------------- /component/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/sign.html -------------------------------------------------------------------------------- /component/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/sign.js -------------------------------------------------------------------------------- /component/signTx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/signTx.html -------------------------------------------------------------------------------- /component/signTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/signTx.js -------------------------------------------------------------------------------- /component/sweep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/sweep.html -------------------------------------------------------------------------------- /component/sweep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/sweep.js -------------------------------------------------------------------------------- /component/timestamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/timestamp.html -------------------------------------------------------------------------------- /component/timestamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/timestamp.js -------------------------------------------------------------------------------- /component/tokenInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/tokenInfo.html -------------------------------------------------------------------------------- /component/tokenInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/tokenInfo.js -------------------------------------------------------------------------------- /component/txDetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/txDetail.html -------------------------------------------------------------------------------- /component/txDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/txDetail.js -------------------------------------------------------------------------------- /component/utxo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/utxo.html -------------------------------------------------------------------------------- /component/utxo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/utxo.js -------------------------------------------------------------------------------- /component/xrp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/xrp.html -------------------------------------------------------------------------------- /component/xrp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/component/xrp.js -------------------------------------------------------------------------------- /cordovaProj/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/AndroidManifest.xml -------------------------------------------------------------------------------- /cordovaProj/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/config.xml -------------------------------------------------------------------------------- /cordovaProj/cordovaProj.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/cordovaProj.iml -------------------------------------------------------------------------------- /cordovaProj/manifestHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/manifestHook.js -------------------------------------------------------------------------------- /cordovaProj/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/package-lock.json -------------------------------------------------------------------------------- /cordovaProj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/package.json -------------------------------------------------------------------------------- /cordovaProj/res/icons/android/hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/android/hdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/android/ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/android/ldpi.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/android/mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/android/mdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/android/xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/android/xhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/android/xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/android/xxhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/android/xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/android/xxxhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/browser/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/browser/512.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-1024.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-167.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-60.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-60@2x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-60@3x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-72.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-72@2x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-76.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-76@2x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-83.5@2x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-small-40.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-small-40@2x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-small-40@3x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-small-50.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-small-50@2x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-small.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-small@2x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon-small@3x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/ios/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/ios/icon@2x.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/windows/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/windows/Square150x150Logo.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/windows/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/windows/Square310x310Logo.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/windows/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/windows/Square44x44Logo.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/windows/Square70x70Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/windows/Square70x70Logo.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/windows/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/windows/Square71x71Logo.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/windows/smalllogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/windows/smalllogo.png -------------------------------------------------------------------------------- /cordovaProj/res/icons/windows/storelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/icons/windows/storelogo.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-land-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-land-hdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-land-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-land-ldpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-land-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-land-mdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-land-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-land-xhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-land-xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-land-xxhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-land-xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-land-xxxhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-port-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-port-hdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-port-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-port-ldpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-port-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-port-mdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-port-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-port-xhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-port-xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-port-xxhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/android/splash-port-xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/android/splash-port-xxxhdpi.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default-667h.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default-736h.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@2x~ipad~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@2x~ipad~anyany.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@2x~ipad~comany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@2x~ipad~comany.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@2x~iphone.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@2x~iphone~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@2x~iphone~anyany.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@2x~iphone~comany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@2x~iphone~comany.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@2x~iphone~comcom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@2x~iphone~comcom.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@3x~iphone~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@3x~iphone~anyany.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@3x~iphone~anycom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@3x~iphone~anycom.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default@3x~iphone~comany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default@3x~iphone~comany.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/ios/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/ios/Default~iphone.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/windows/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/windows/splashscreen.png -------------------------------------------------------------------------------- /cordovaProj/res/screens/windows/splashscreenphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/res/screens/windows/splashscreenphone.png -------------------------------------------------------------------------------- /cordovaProj/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/cordovaProj/www/index.html -------------------------------------------------------------------------------- /docs/App_Store_Submission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/App_Store_Submission.md -------------------------------------------------------------------------------- /docs/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/CREDITS.txt -------------------------------------------------------------------------------- /docs/How_to_make_a_flavour_of_monya.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/How_to_make_a_flavour_of_monya.md -------------------------------------------------------------------------------- /docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/LICENSE.txt -------------------------------------------------------------------------------- /docs/Privacy_Policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/Privacy_Policy.md -------------------------------------------------------------------------------- /docs/What_is_Atomic_Swap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/What_is_Atomic_Swap.md -------------------------------------------------------------------------------- /docs/a/dist/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/a/dist/dist.js -------------------------------------------------------------------------------- /docs/a/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/a/index.html -------------------------------------------------------------------------------- /docs/coin_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/coin_sample.json -------------------------------------------------------------------------------- /docs/future_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/future_plan.md -------------------------------------------------------------------------------- /docs/launch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/launch.md -------------------------------------------------------------------------------- /docs/server.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/server.org -------------------------------------------------------------------------------- /docs/urlapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/urlapi.md -------------------------------------------------------------------------------- /docs/もにゃ.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/docs/もにゃ.mobileconfig -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/index.html -------------------------------------------------------------------------------- /js/coinUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/coinUtil.js -------------------------------------------------------------------------------- /js/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/currency.js -------------------------------------------------------------------------------- /js/currencyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/currencyList.js -------------------------------------------------------------------------------- /js/erc20ABI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/erc20ABI.js -------------------------------------------------------------------------------- /js/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/errors.js -------------------------------------------------------------------------------- /js/explorers/blockbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/explorers/blockbook.js -------------------------------------------------------------------------------- /js/explorers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/explorers/index.js -------------------------------------------------------------------------------- /js/explorers/insight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/explorers/insight.js -------------------------------------------------------------------------------- /js/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/extension.js -------------------------------------------------------------------------------- /js/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/lang.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/main.js -------------------------------------------------------------------------------- /js/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/storage.js -------------------------------------------------------------------------------- /js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/store.js -------------------------------------------------------------------------------- /js/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/sw.js -------------------------------------------------------------------------------- /js/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/title.js -------------------------------------------------------------------------------- /js/titleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/js/titleList.js -------------------------------------------------------------------------------- /lang/dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/lang/dict.json -------------------------------------------------------------------------------- /lang/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/lang/template.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/package.json -------------------------------------------------------------------------------- /res/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/background.png -------------------------------------------------------------------------------- /res/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/banner.png -------------------------------------------------------------------------------- /res/banner_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/banner_en.png -------------------------------------------------------------------------------- /res/coins/bch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/bch.png -------------------------------------------------------------------------------- /res/coins/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/btc.png -------------------------------------------------------------------------------- /res/coins/btcsw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/btcsw.png -------------------------------------------------------------------------------- /res/coins/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/dash.png -------------------------------------------------------------------------------- /res/coins/ecob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/ecob.png -------------------------------------------------------------------------------- /res/coins/etc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/etc.png -------------------------------------------------------------------------------- /res/coins/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/eth.png -------------------------------------------------------------------------------- /res/coins/fjc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/fjc.png -------------------------------------------------------------------------------- /res/coins/koto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/koto.png -------------------------------------------------------------------------------- /res/coins/kuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/kuma.png -------------------------------------------------------------------------------- /res/coins/lc/aud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/lc/aud.png -------------------------------------------------------------------------------- /res/coins/lc/chf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/lc/chf.png -------------------------------------------------------------------------------- /res/coins/lc/eur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/lc/eur.png -------------------------------------------------------------------------------- /res/coins/lc/gbp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/lc/gbp.png -------------------------------------------------------------------------------- /res/coins/lc/hkd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/lc/hkd.png -------------------------------------------------------------------------------- /res/coins/lc/jpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/lc/jpy.png -------------------------------------------------------------------------------- /res/coins/lc/usd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/lc/usd.png -------------------------------------------------------------------------------- /res/coins/lc/zar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/lc/zar.png -------------------------------------------------------------------------------- /res/coins/ltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/ltc.png -------------------------------------------------------------------------------- /res/coins/mona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/mona.png -------------------------------------------------------------------------------- /res/coins/neet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/neet.png -------------------------------------------------------------------------------- /res/coins/nem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/nem.png -------------------------------------------------------------------------------- /res/coins/nuko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/nuko.png -------------------------------------------------------------------------------- /res/coins/paySound/mona.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/paySound/mona.m4a -------------------------------------------------------------------------------- /res/coins/paySound/zny.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/paySound/zny.m4a -------------------------------------------------------------------------------- /res/coins/rin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/rin.png -------------------------------------------------------------------------------- /res/coins/saya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/saya.png -------------------------------------------------------------------------------- /res/coins/sha1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/sha1.png -------------------------------------------------------------------------------- /res/coins/tmona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/tmona.png -------------------------------------------------------------------------------- /res/coins/vips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/vips.png -------------------------------------------------------------------------------- /res/coins/xcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/xcp.png -------------------------------------------------------------------------------- /res/coins/xmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/xmp.png -------------------------------------------------------------------------------- /res/coins/xrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/xrp.png -------------------------------------------------------------------------------- /res/coins/zec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/zec.png -------------------------------------------------------------------------------- /res/coins/zny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/coins/zny.png -------------------------------------------------------------------------------- /res/cordova-plugin-qrscanner-lib.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/cordova-plugin-qrscanner-lib.min.js -------------------------------------------------------------------------------- /res/currency_checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/currency_checkmark.png -------------------------------------------------------------------------------- /res/howToAddHome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/howToAddHome.jpg -------------------------------------------------------------------------------- /res/icon_mat/monya_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/icon_mat/monya_icon.svg -------------------------------------------------------------------------------- /res/icon_mat/monya_icon_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/icon_mat/monya_icon_round.svg -------------------------------------------------------------------------------- /res/monappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/monappy.png -------------------------------------------------------------------------------- /res/monya_icon_round_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/monya_icon_round_512.png -------------------------------------------------------------------------------- /res/realmona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/realmona.png -------------------------------------------------------------------------------- /res/sand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/sand.jpg -------------------------------------------------------------------------------- /res/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/spinner.png -------------------------------------------------------------------------------- /res/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/res/success.png -------------------------------------------------------------------------------- /scss/cond.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/cond.scss -------------------------------------------------------------------------------- /scss/custom/fonts/monyafont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/custom/fonts/monyafont.eot -------------------------------------------------------------------------------- /scss/custom/fonts/monyafont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/custom/fonts/monyafont.svg -------------------------------------------------------------------------------- /scss/custom/fonts/monyafont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/custom/fonts/monyafont.ttf -------------------------------------------------------------------------------- /scss/custom/fonts/monyafont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/custom/fonts/monyafont.woff -------------------------------------------------------------------------------- /scss/custom/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/custom/styles.css -------------------------------------------------------------------------------- /scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/index.scss -------------------------------------------------------------------------------- /scss/onsenui-fix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/onsenui-fix.scss -------------------------------------------------------------------------------- /scss/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/scss/param.scss -------------------------------------------------------------------------------- /util/jatoen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/util/jatoen.js -------------------------------------------------------------------------------- /util/licensewriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/util/licensewriter.js -------------------------------------------------------------------------------- /util/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/util/translator.js -------------------------------------------------------------------------------- /webpack.config.cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/webpack.config.cordova.js -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yonde_kudasai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monya-wallet/monya/HEAD/yonde_kudasai.md --------------------------------------------------------------------------------