├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs └── psbt.excalidraw.png ├── package.json ├── src ├── constant.ts ├── index.ts ├── interfaces.ts ├── signer.ts ├── util.ts └── vendors │ ├── feeprovider.ts │ ├── fullnoderpc.ts │ └── mempool.ts ├── test └── signer.spec.ts └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/README.md -------------------------------------------------------------------------------- /docs/psbt.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/docs/psbt.excalidraw.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/package.json -------------------------------------------------------------------------------- /src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/src/constant.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/src/signer.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/vendors/feeprovider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/src/vendors/feeprovider.ts -------------------------------------------------------------------------------- /src/vendors/fullnoderpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/src/vendors/fullnoderpc.ts -------------------------------------------------------------------------------- /src/vendors/mempool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/src/vendors/mempool.ts -------------------------------------------------------------------------------- /test/signer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/test/signer.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me-foundation/msigner/HEAD/tsconfig.json --------------------------------------------------------------------------------