├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── RpcProvider.ts ├── RpcProviderInterface.ts └── index.ts ├── test └── rpcProvider.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/package.json -------------------------------------------------------------------------------- /src/RpcProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/src/RpcProvider.ts -------------------------------------------------------------------------------- /src/RpcProviderInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/src/RpcProviderInterface.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/rpcProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/test/rpcProvider.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirtyHairy/worker-rpc/HEAD/tsconfig.json --------------------------------------------------------------------------------