├── .github └── workflows │ └── undo-push.yml ├── LICENSE ├── README.md ├── documentation ├── Blockchain related.md ├── README.md ├── Wallet.Names.md ├── Wallet.Wallet.md ├── Wallet.WalletInterface.md ├── errors.md ├── examples │ ├── SimpleReactPage_CCVault.jsx │ └── Wallets iteration.md ├── miscellaneous │ ├── change_logs │ │ └── 1.x.x │ │ │ ├── 1.1.x │ │ │ ├── 1.1.0.md │ │ │ ├── 1.1.1.md │ │ │ ├── 1.1.2.md │ │ │ └── 1.1.3.md │ │ │ ├── 1.2.x │ │ │ └── 1.2.0.md │ │ │ ├── 1.4.x │ │ │ └── 1.4.0.md │ │ │ ├── 1.5.x │ │ │ ├── 1.5.0.md │ │ │ ├── 1.5.1.md │ │ │ ├── 1.5.2.md │ │ │ ├── 1.5.3.md │ │ │ ├── 1.5.4.md │ │ │ ├── 1.5.5.md │ │ │ └── 1.5.6.md │ │ │ └── 1.6.x │ │ │ ├── 1.6.0.md │ │ │ └── 1.6.1.md │ └── known_issues │ │ └── Nextjs │ │ └── dynamic_imports.md └── static methods.md ├── how_to_add _a_wallet.md ├── package.json └── src ├── Wallet ├── WalletName │ ├── index.d.ts │ ├── index.js │ ├── utils.d.ts │ └── utils.js ├── index.d.ts └── index.js ├── errors ├── WalletInterfaceError │ ├── StringFormatError │ │ ├── index.d.ts │ │ └── index.js │ ├── WalletProcessError │ │ ├── WalletError │ │ │ ├── CCVaultError │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── CardwalletError │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── FlintError │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── FlintExperimentalError │ │ │ │ └── FlintExperimentalError.js │ │ │ ├── GeroError │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── NamiError │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── TyphonError │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── YoroiError │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── index.d.ts │ │ └── index.js │ ├── index.d.ts │ └── index.js ├── index.d.ts └── index.js ├── index.d.ts └── index.js /.github/workflows/undo-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/.github/workflows/undo-push.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/README.md -------------------------------------------------------------------------------- /documentation/Blockchain related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/Blockchain related.md -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/Wallet.Names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/Wallet.Names.md -------------------------------------------------------------------------------- /documentation/Wallet.Wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/Wallet.Wallet.md -------------------------------------------------------------------------------- /documentation/Wallet.WalletInterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/Wallet.WalletInterface.md -------------------------------------------------------------------------------- /documentation/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/errors.md -------------------------------------------------------------------------------- /documentation/examples/SimpleReactPage_CCVault.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/examples/SimpleReactPage_CCVault.jsx -------------------------------------------------------------------------------- /documentation/examples/Wallets iteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/examples/Wallets iteration.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.1.x/1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.1.x/1.1.0.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.1.x/1.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.1.x/1.1.1.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.1.x/1.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.1.x/1.1.2.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.1.x/1.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.1.x/1.1.3.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.2.x/1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.2.x/1.2.0.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.4.x/1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.4.x/1.4.0.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.0.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.1.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.2.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.3.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.4.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.5.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.5.x/1.5.6.md: -------------------------------------------------------------------------------- 1 | # 1.5.6 2 | 3 | ## Main changes 4 | 5 | - typo fix -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.6.x/1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.6.x/1.6.0.md -------------------------------------------------------------------------------- /documentation/miscellaneous/change_logs/1.x.x/1.6.x/1.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/change_logs/1.x.x/1.6.x/1.6.1.md -------------------------------------------------------------------------------- /documentation/miscellaneous/known_issues/Nextjs/dynamic_imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/miscellaneous/known_issues/Nextjs/dynamic_imports.md -------------------------------------------------------------------------------- /documentation/static methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/documentation/static methods.md -------------------------------------------------------------------------------- /how_to_add _a_wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/how_to_add _a_wallet.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/package.json -------------------------------------------------------------------------------- /src/Wallet/WalletName/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/Wallet/WalletName/index.d.ts -------------------------------------------------------------------------------- /src/Wallet/WalletName/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/Wallet/WalletName/index.js -------------------------------------------------------------------------------- /src/Wallet/WalletName/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/Wallet/WalletName/utils.d.ts -------------------------------------------------------------------------------- /src/Wallet/WalletName/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/Wallet/WalletName/utils.js -------------------------------------------------------------------------------- /src/Wallet/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/Wallet/index.d.ts -------------------------------------------------------------------------------- /src/Wallet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/Wallet/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/StringFormatError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/StringFormatError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/StringFormatError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/StringFormatError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/CCVaultError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/CCVaultError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/CCVaultError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/CCVaultError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/CardwalletError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/CardwalletError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/CardwalletError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/CardwalletError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/FlintError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/FlintError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/FlintError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/FlintError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/FlintExperimentalError/FlintExperimentalError.js: -------------------------------------------------------------------------------- 1 | exports = () => {} -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/GeroError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/GeroError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/GeroError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/GeroError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/NamiError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/NamiError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/NamiError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/NamiError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/TyphonError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/TyphonError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/TyphonError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/TyphonError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/YoroiError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/YoroiError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/YoroiError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/YoroiError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/WalletError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/WalletError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/WalletProcessError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/WalletProcessError/index.js -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/index.d.ts -------------------------------------------------------------------------------- /src/errors/WalletInterfaceError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/WalletInterfaceError/index.js -------------------------------------------------------------------------------- /src/errors/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/index.d.ts -------------------------------------------------------------------------------- /src/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/errors/index.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarmonicPool/cardano-wallet-interface/HEAD/src/index.js --------------------------------------------------------------------------------