├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── sample ├── _headers ├── index.html ├── index.mjs ├── index.ts ├── loginout.html ├── payload.mjs └── simple.html ├── src └── index.ts ├── test └── index.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/package.json -------------------------------------------------------------------------------- /sample/_headers: -------------------------------------------------------------------------------- 1 | /dist/*.js 2 | Content-Type: text/javascript;charset=UTF-8 3 | -------------------------------------------------------------------------------- /sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/sample/index.html -------------------------------------------------------------------------------- /sample/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/sample/index.mjs -------------------------------------------------------------------------------- /sample/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/sample/index.ts -------------------------------------------------------------------------------- /sample/loginout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/sample/loginout.html -------------------------------------------------------------------------------- /sample/payload.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/sample/payload.mjs -------------------------------------------------------------------------------- /sample/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/sample/simple.html -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRPL-Labs/Xumm-Universal-SDK/HEAD/tsconfig.json --------------------------------------------------------------------------------