├── .github └── workflows │ ├── main.yml │ ├── npm.yml │ └── size.yml ├── .gitignore ├── LICENSE ├── README.md ├── example ├── .npmignore ├── index.html ├── index.tsx ├── package.json ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── index.ts ├── store │ └── index.ts ├── test │ └── balance.spec.ts ├── typescript │ └── cip30.ts ├── utils.ts └── wallets.ts ├── tsconfig.json └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/.github/workflows/npm.yml -------------------------------------------------------------------------------- /.github/workflows/size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/.github/workflows/size.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | .cache 5 | dist 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/README.md -------------------------------------------------------------------------------- /example/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/test/balance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/src/test/balance.spec.ts -------------------------------------------------------------------------------- /src/typescript/cip30.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/src/typescript/cip30.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/src/wallets.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asterium-Blockchain/use-cardano-wallet/HEAD/yarn.lock --------------------------------------------------------------------------------