gitextract_cdm3kmul/ ├── .browserslistrc ├── .editorconfig ├── .eslintrc.js ├── .github/ │ └── workflows/ │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_cn.md ├── babel.config.js ├── build/ │ ├── after-sign.js │ └── entitlements.mac.plist ├── package.json ├── public/ │ └── index.html ├── src/ │ ├── App.vue │ ├── assets/ │ │ ├── fonts/ │ │ │ └── avenirnextregular.otf │ │ └── icons/ │ │ └── icon.icns │ ├── background.js │ ├── components/ │ │ ├── Breadcrumb.vue │ │ ├── Common/ │ │ │ ├── CommonSignShared.vue │ │ │ ├── Oep4Home.vue │ │ │ ├── Oep4Selection.vue │ │ │ ├── SelectWallet.vue │ │ │ └── SignSendTx.vue │ │ ├── CommonWallet/ │ │ │ ├── CommonReceive.vue │ │ │ ├── CommonRedeem.vue │ │ │ ├── CommonTokenSwap.vue │ │ │ ├── SendConfirm.vue │ │ │ └── SendHome.vue │ │ ├── Dapps.vue │ │ ├── Dashboard.vue │ │ ├── Exchange/ │ │ │ ├── Changelly/ │ │ │ │ └── Changelly.vue │ │ │ └── Cryptonex/ │ │ │ └── Cryptonex.vue │ │ ├── Home.vue │ │ ├── Identitys/ │ │ │ ├── Create/ │ │ │ │ ├── BasicInfo.vue │ │ │ │ └── ConfirmInfo.vue │ │ │ ├── CreateIdentity.vue │ │ │ ├── IdentityView.vue │ │ │ ├── Import/ │ │ │ │ └── BasicInfo.vue │ │ │ └── ImportIdentity.vue │ │ ├── Identitys.vue │ │ ├── JsonWallet/ │ │ │ ├── Create/ │ │ │ │ ├── BasicInfo.vue │ │ │ │ └── ConfirmInfo.vue │ │ │ ├── CreateJsonWallet.vue │ │ │ ├── Import/ │ │ │ │ └── BasicInfo.vue │ │ │ ├── ImportJsonWallet.vue │ │ │ └── View/ │ │ │ └── Details.vue │ │ ├── LedgerWallet/ │ │ │ ├── Import/ │ │ │ │ ├── BasicInfo.vue │ │ │ │ └── ConnectLedger.vue │ │ │ ├── ImportLedgerWallet.vue │ │ │ └── LoginLedger.vue │ │ ├── Modals/ │ │ │ ├── Loading.vue │ │ │ └── SetPath.vue │ │ ├── Node/ │ │ │ ├── Node.vue │ │ │ ├── NodeApply/ │ │ │ │ ├── Register.vue │ │ │ │ └── RegisterSuccess.vue │ │ │ ├── NodeAuthorize/ │ │ │ │ ├── AuthorizationMgmt.vue │ │ │ │ ├── AuthorizeLogin.vue │ │ │ │ ├── NewAuthorization.vue │ │ │ │ ├── NodeList.vue │ │ │ │ ├── Sesameseed/ │ │ │ │ │ ├── AuthorizationMgmtSesameseed.vue │ │ │ │ │ ├── AuthorizeLoginSesameseed.vue │ │ │ │ │ ├── NewAuthorizationSesameseed.vue │ │ │ │ │ └── SesameseedVars.js │ │ │ │ └── StakeHistory.vue │ │ │ ├── NodeManagement/ │ │ │ │ ├── MyNode.vue │ │ │ │ ├── NodeStakeAuthorization.vue │ │ │ │ └── NodeStakeManagement.vue │ │ │ ├── NodeStake/ │ │ │ │ ├── NodeInfo.vue │ │ │ │ ├── NodeStakeInfo.vue │ │ │ │ ├── NodeStakeIntro.vue │ │ │ │ └── NodeStakeRegister.vue │ │ │ └── Vote/ │ │ │ ├── Create.vue │ │ │ ├── Detail.vue │ │ │ ├── List.vue │ │ │ ├── Login.vue │ │ │ └── index.vue │ │ ├── RedeemInfoIcon.vue │ │ ├── Setting.vue │ │ ├── SharedWallet/ │ │ │ ├── Create/ │ │ │ │ ├── BasicInfo.vue │ │ │ │ ├── ConfirmSigNum.vue │ │ │ │ └── CreateSuccess.vue │ │ │ ├── CreateSharedWallet.vue │ │ │ ├── Import/ │ │ │ │ ├── InputPass.vue │ │ │ │ └── QuerySharedWallet.vue │ │ │ ├── ImportSharedWallet.vue │ │ │ ├── PAX/ │ │ │ │ ├── PaxMgmt.vue │ │ │ │ ├── SignProcess.vue │ │ │ │ └── StartProcess.vue │ │ │ ├── PendingTxHome.vue │ │ │ ├── SharedWalletDetail.vue │ │ │ ├── SharedWalletHome.vue │ │ │ ├── SharedWalletSend.vue │ │ │ ├── Transfer/ │ │ │ │ ├── InputPassword.vue │ │ │ │ ├── PendingConfirm.vue │ │ │ │ ├── PendingTxSign.vue │ │ │ │ ├── SendAsset.vue │ │ │ │ └── SendConfirm.vue │ │ │ ├── Tx/ │ │ │ │ ├── SharedTxMgmt.vue │ │ │ │ ├── SignSharedTx.vue │ │ │ │ └── StartSharedTx.vue │ │ │ └── View/ │ │ │ ├── Details.vue │ │ │ └── SharedWalletCopayer.vue │ │ ├── TopLeftNav.vue │ │ └── Wallets.vue │ ├── core/ │ │ ├── asyncHelper.js │ │ ├── consts.js │ │ ├── dbService.js │ │ ├── fileHelper.js │ │ ├── lang.js │ │ ├── network.js │ │ ├── nodes.json │ │ ├── ontLedger.js │ │ ├── ontLedgerNew.js │ │ ├── runtime.js │ │ └── utils.js │ ├── lang/ │ │ ├── en.js │ │ ├── index.js │ │ └── zh.js │ ├── main.js │ ├── router/ │ │ └── index.js │ └── store/ │ ├── index.js │ └── modules/ │ ├── CreateIdentity.js │ ├── CreateJsonWallet.js │ ├── CreateSharedWallet.js │ ├── CurrentWallet.js │ ├── Identities.js │ ├── ImportSharedWallet.js │ ├── LedgerConnector.js │ ├── LedgerWallet.js │ ├── LoadingModal.js │ ├── NodeAuthorization.js │ ├── NodeAuthorizationSesameseed.js │ ├── NodeStake.js │ ├── Oep4s.js │ ├── PaxMgmt.js │ ├── Setting.js │ ├── Tokens.js │ ├── Vote.js │ ├── Wallets.js │ └── index.js └── vue.config.js