├── .babelrc.js ├── .depcheckrc.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── config.yaml ├── dependabot.yml ├── semantic.yml └── workflows │ ├── check.yaml │ ├── entrypoint.yaml │ ├── pre-release.yaml │ ├── publish_npmjs.yaml │ ├── release_github.yaml │ ├── tests.yaml │ └── update_bee.yaml ├── .gitignore ├── .huskyrc ├── .prettierrc ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── cheatsheet.ts ├── commitlint.config.js ├── jest.config.ts ├── linkcheck.js ├── package.json ├── src ├── bee-dev.ts ├── bee.ts ├── chunk │ ├── bmt.ts │ ├── cac.ts │ └── soc.ts ├── feed │ ├── identifier.ts │ ├── index.ts │ └── retrievable.ts ├── index.ts ├── manifest │ └── manifest.ts ├── modules │ ├── bytes.ts │ ├── bzz.ts │ ├── chunk.ts │ ├── debug │ │ ├── balance.ts │ │ ├── chequebook.ts │ │ ├── connectivity.ts │ │ ├── settlements.ts │ │ ├── stake.ts │ │ ├── stamps.ts │ │ ├── states.ts │ │ ├── status.ts │ │ └── transactions.ts │ ├── envelope.ts │ ├── feed.ts │ ├── grantee.ts │ ├── gsoc.ts │ ├── pinning.ts │ ├── pss.ts │ ├── rchash.ts │ ├── soc.ts │ ├── status.ts │ ├── stewardship.ts │ └── tag.ts ├── stamper │ └── stamper.ts ├── types │ ├── debug.ts │ └── index.ts └── utils │ ├── bytes.ts │ ├── chunk-size.ts │ ├── chunk-stream.browser.ts │ ├── chunk-stream.ts │ ├── cid.ts │ ├── collection.browser.ts │ ├── collection.node.ts │ ├── collection.ts │ ├── constants.ts │ ├── data.browser.ts │ ├── data.ts │ ├── duration.ts │ ├── error.ts │ ├── expose.ts │ ├── file.ts │ ├── headers.ts │ ├── http.ts │ ├── mime.ts │ ├── pss.ts │ ├── redundancy.ts │ ├── resource-locator.ts │ ├── size.ts │ ├── stamps.ts │ ├── tar-uploader.browser.ts │ ├── tar-uploader.ts │ ├── tar-writer.browser.ts │ ├── tar-writer.ts │ ├── tar.browser.ts │ ├── tar.ts │ ├── tokens.ts │ ├── type.ts │ ├── typed-bytes.ts │ ├── upload-progress.ts │ ├── url.ts │ └── workaround.ts ├── test ├── coverage │ └── coverage-summary.json ├── data │ ├── main.html │ └── static │ │ ├── incentives.jpg │ │ └── styles.css ├── integration │ ├── act.spec.ts │ ├── cheque.spec.ts │ ├── download-ens.spec.ts │ ├── encrypted-manifest.spec.ts │ ├── feed.spec.ts │ ├── feed.ux.spec.ts │ ├── gsoc.spec.ts │ ├── manifest.spec.ts │ ├── on-close.spec.ts │ ├── pin.spec.ts │ ├── pss.spec.ts │ ├── rchash.spec.ts │ ├── stake.spec.ts │ ├── stamp.spec.ts │ ├── stamp.ux.spec.ts │ ├── stamper.spec.ts │ ├── status.spec.ts │ ├── tag.spec.ts │ ├── upload.node.spec.ts │ ├── upload.spec.ts │ └── withdraw.spec.ts ├── mocks.ts ├── regression │ ├── bee-2317.spec.ts │ ├── bee-js-1016.spec.ts │ ├── bee-js-376.spec.ts │ ├── bee-js-986.spec.ts │ ├── bytes-ctor.spec.ts │ └── manifest-fork.spec.ts ├── unit │ ├── bytes.spec.ts │ ├── cid.spec.ts │ ├── duration.spec.ts │ ├── extend-storage.spec.ts │ ├── feed-index.spec.ts │ ├── manifest.spec.ts │ ├── reference.spec.ts │ ├── signature.spec.ts │ ├── size.spec.ts │ ├── token.spec.ts │ ├── topic-identifier.spec.ts │ ├── utils.spec.ts │ └── ws-undefined.spec.ts └── utils.ts ├── tsconfig-base.json ├── tsconfig-mjs.json ├── tsconfig.json ├── tsconfig.test.json └── webpack.config.ts /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.depcheckrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.depcheckrc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/** 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/config.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/entrypoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/workflows/entrypoint.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/workflows/pre-release.yaml -------------------------------------------------------------------------------- /.github/workflows/publish_npmjs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/workflows/publish_npmjs.yaml -------------------------------------------------------------------------------- /.github/workflows/release_github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/workflows/release_github.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.github/workflows/update_bee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.github/workflows/update_bee.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.huskyrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/README.md -------------------------------------------------------------------------------- /cheatsheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/cheatsheet.ts -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/jest.config.ts -------------------------------------------------------------------------------- /linkcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/linkcheck.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/package.json -------------------------------------------------------------------------------- /src/bee-dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/bee-dev.ts -------------------------------------------------------------------------------- /src/bee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/bee.ts -------------------------------------------------------------------------------- /src/chunk/bmt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/chunk/bmt.ts -------------------------------------------------------------------------------- /src/chunk/cac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/chunk/cac.ts -------------------------------------------------------------------------------- /src/chunk/soc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/chunk/soc.ts -------------------------------------------------------------------------------- /src/feed/identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/feed/identifier.ts -------------------------------------------------------------------------------- /src/feed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/feed/index.ts -------------------------------------------------------------------------------- /src/feed/retrievable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/feed/retrievable.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/manifest/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/manifest/manifest.ts -------------------------------------------------------------------------------- /src/modules/bytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/bytes.ts -------------------------------------------------------------------------------- /src/modules/bzz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/bzz.ts -------------------------------------------------------------------------------- /src/modules/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/chunk.ts -------------------------------------------------------------------------------- /src/modules/debug/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/balance.ts -------------------------------------------------------------------------------- /src/modules/debug/chequebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/chequebook.ts -------------------------------------------------------------------------------- /src/modules/debug/connectivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/connectivity.ts -------------------------------------------------------------------------------- /src/modules/debug/settlements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/settlements.ts -------------------------------------------------------------------------------- /src/modules/debug/stake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/stake.ts -------------------------------------------------------------------------------- /src/modules/debug/stamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/stamps.ts -------------------------------------------------------------------------------- /src/modules/debug/states.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/states.ts -------------------------------------------------------------------------------- /src/modules/debug/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/status.ts -------------------------------------------------------------------------------- /src/modules/debug/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/debug/transactions.ts -------------------------------------------------------------------------------- /src/modules/envelope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/envelope.ts -------------------------------------------------------------------------------- /src/modules/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/feed.ts -------------------------------------------------------------------------------- /src/modules/grantee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/grantee.ts -------------------------------------------------------------------------------- /src/modules/gsoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/gsoc.ts -------------------------------------------------------------------------------- /src/modules/pinning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/pinning.ts -------------------------------------------------------------------------------- /src/modules/pss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/pss.ts -------------------------------------------------------------------------------- /src/modules/rchash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/rchash.ts -------------------------------------------------------------------------------- /src/modules/soc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/soc.ts -------------------------------------------------------------------------------- /src/modules/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/status.ts -------------------------------------------------------------------------------- /src/modules/stewardship.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/stewardship.ts -------------------------------------------------------------------------------- /src/modules/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/modules/tag.ts -------------------------------------------------------------------------------- /src/stamper/stamper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/stamper/stamper.ts -------------------------------------------------------------------------------- /src/types/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/types/debug.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/bytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/bytes.ts -------------------------------------------------------------------------------- /src/utils/chunk-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/chunk-size.ts -------------------------------------------------------------------------------- /src/utils/chunk-stream.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/chunk-stream.browser.ts -------------------------------------------------------------------------------- /src/utils/chunk-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/chunk-stream.ts -------------------------------------------------------------------------------- /src/utils/cid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/cid.ts -------------------------------------------------------------------------------- /src/utils/collection.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/collection.browser.ts -------------------------------------------------------------------------------- /src/utils/collection.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/collection.node.ts -------------------------------------------------------------------------------- /src/utils/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/collection.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/data.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/data.browser.ts -------------------------------------------------------------------------------- /src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/data.ts -------------------------------------------------------------------------------- /src/utils/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/duration.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /src/utils/expose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/expose.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/headers.ts -------------------------------------------------------------------------------- /src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/http.ts -------------------------------------------------------------------------------- /src/utils/mime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/mime.ts -------------------------------------------------------------------------------- /src/utils/pss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/pss.ts -------------------------------------------------------------------------------- /src/utils/redundancy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/redundancy.ts -------------------------------------------------------------------------------- /src/utils/resource-locator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/resource-locator.ts -------------------------------------------------------------------------------- /src/utils/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/size.ts -------------------------------------------------------------------------------- /src/utils/stamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/stamps.ts -------------------------------------------------------------------------------- /src/utils/tar-uploader.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/tar-uploader.browser.ts -------------------------------------------------------------------------------- /src/utils/tar-uploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/tar-uploader.ts -------------------------------------------------------------------------------- /src/utils/tar-writer.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/tar-writer.browser.ts -------------------------------------------------------------------------------- /src/utils/tar-writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/tar-writer.ts -------------------------------------------------------------------------------- /src/utils/tar.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/tar.browser.ts -------------------------------------------------------------------------------- /src/utils/tar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/tar.ts -------------------------------------------------------------------------------- /src/utils/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/tokens.ts -------------------------------------------------------------------------------- /src/utils/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/type.ts -------------------------------------------------------------------------------- /src/utils/typed-bytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/typed-bytes.ts -------------------------------------------------------------------------------- /src/utils/upload-progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/upload-progress.ts -------------------------------------------------------------------------------- /src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/url.ts -------------------------------------------------------------------------------- /src/utils/workaround.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/src/utils/workaround.ts -------------------------------------------------------------------------------- /test/coverage/coverage-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/coverage/coverage-summary.json -------------------------------------------------------------------------------- /test/data/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/data/main.html -------------------------------------------------------------------------------- /test/data/static/incentives.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/data/static/incentives.jpg -------------------------------------------------------------------------------- /test/data/static/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /test/integration/act.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/act.spec.ts -------------------------------------------------------------------------------- /test/integration/cheque.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/cheque.spec.ts -------------------------------------------------------------------------------- /test/integration/download-ens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/download-ens.spec.ts -------------------------------------------------------------------------------- /test/integration/encrypted-manifest.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/encrypted-manifest.spec.ts -------------------------------------------------------------------------------- /test/integration/feed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/feed.spec.ts -------------------------------------------------------------------------------- /test/integration/feed.ux.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/feed.ux.spec.ts -------------------------------------------------------------------------------- /test/integration/gsoc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/gsoc.spec.ts -------------------------------------------------------------------------------- /test/integration/manifest.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/manifest.spec.ts -------------------------------------------------------------------------------- /test/integration/on-close.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/on-close.spec.ts -------------------------------------------------------------------------------- /test/integration/pin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/pin.spec.ts -------------------------------------------------------------------------------- /test/integration/pss.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/pss.spec.ts -------------------------------------------------------------------------------- /test/integration/rchash.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/rchash.spec.ts -------------------------------------------------------------------------------- /test/integration/stake.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/stake.spec.ts -------------------------------------------------------------------------------- /test/integration/stamp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/stamp.spec.ts -------------------------------------------------------------------------------- /test/integration/stamp.ux.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/stamp.ux.spec.ts -------------------------------------------------------------------------------- /test/integration/stamper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/stamper.spec.ts -------------------------------------------------------------------------------- /test/integration/status.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/status.spec.ts -------------------------------------------------------------------------------- /test/integration/tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/tag.spec.ts -------------------------------------------------------------------------------- /test/integration/upload.node.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/upload.node.spec.ts -------------------------------------------------------------------------------- /test/integration/upload.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/upload.spec.ts -------------------------------------------------------------------------------- /test/integration/withdraw.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/integration/withdraw.spec.ts -------------------------------------------------------------------------------- /test/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/mocks.ts -------------------------------------------------------------------------------- /test/regression/bee-2317.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/regression/bee-2317.spec.ts -------------------------------------------------------------------------------- /test/regression/bee-js-1016.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/regression/bee-js-1016.spec.ts -------------------------------------------------------------------------------- /test/regression/bee-js-376.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/regression/bee-js-376.spec.ts -------------------------------------------------------------------------------- /test/regression/bee-js-986.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/regression/bee-js-986.spec.ts -------------------------------------------------------------------------------- /test/regression/bytes-ctor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/regression/bytes-ctor.spec.ts -------------------------------------------------------------------------------- /test/regression/manifest-fork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/regression/manifest-fork.spec.ts -------------------------------------------------------------------------------- /test/unit/bytes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/bytes.spec.ts -------------------------------------------------------------------------------- /test/unit/cid.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/cid.spec.ts -------------------------------------------------------------------------------- /test/unit/duration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/duration.spec.ts -------------------------------------------------------------------------------- /test/unit/extend-storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/extend-storage.spec.ts -------------------------------------------------------------------------------- /test/unit/feed-index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/feed-index.spec.ts -------------------------------------------------------------------------------- /test/unit/manifest.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/manifest.spec.ts -------------------------------------------------------------------------------- /test/unit/reference.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/reference.spec.ts -------------------------------------------------------------------------------- /test/unit/signature.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/signature.spec.ts -------------------------------------------------------------------------------- /test/unit/size.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/size.spec.ts -------------------------------------------------------------------------------- /test/unit/token.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/token.spec.ts -------------------------------------------------------------------------------- /test/unit/topic-identifier.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/topic-identifier.spec.ts -------------------------------------------------------------------------------- /test/unit/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/utils.spec.ts -------------------------------------------------------------------------------- /test/unit/ws-undefined.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/unit/ws-undefined.spec.ts -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/tsconfig-base.json -------------------------------------------------------------------------------- /tsconfig-mjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/tsconfig-mjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethersphere/bee-js/HEAD/webpack.config.ts --------------------------------------------------------------------------------