├── .dockerignore ├── .editorconfig ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── add-a-new-evm-network.md │ └── feature-request.md └── workflows │ ├── escrow-dashboard-build-and-deploy.yaml │ ├── escrow-dashboard-ci.yaml │ ├── escrow-dashboard-lint.yaml │ ├── graph_deploy.yaml │ ├── graph_tests.yaml │ ├── job.yml │ ├── jobclient.yml │ ├── lint.yml │ └── python-publish.yml ├── .gitignore ├── .soliumignore ├── .soliumrc.json ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── SPHINX-DOCUMENTATION.md ├── audits └── CertiK_Verification_Report_for_hCaptcha_07082019.pdf ├── bin ├── build.sh ├── generate-docs ├── lint ├── prelaunch ├── shell.sh ├── stop ├── test └── wait_then_run ├── contracts ├── Context.sol ├── Escrow.sol ├── EscrowFactory.sol ├── HMToken.sol ├── HMTokenInterface.sol ├── Migrations.sol ├── Ownable.sol └── SafeMath.sol ├── docker-compose.yml ├── docs └── CNAME ├── escrow-dashboard ├── .env.example ├── .eslintrc.json ├── Dockerfile ├── README.md ├── babel.config.js ├── jest.config.ts ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── __mocks__ │ │ ├── fileMock.js │ │ └── styleMock.js │ ├── __tests__ │ │ ├── CardBarChart.test.tsx │ │ ├── CardStackedBarChart.test.tsx │ │ ├── CardTextBlock.test.tsx │ │ ├── Footer.test.tsx │ │ ├── Header.test.tsx │ │ ├── Layout.test.tsx │ │ ├── Navbar.test.tsx │ │ └── __snapshots__ │ │ │ ├── CardBarChart.test.tsx.snap │ │ │ ├── CardStackedBarChart.test.tsx.snap │ │ │ ├── CardTextBlock.test.tsx.snap │ │ │ ├── Footer.test.tsx.snap │ │ │ ├── Header.test.tsx.snap │ │ │ ├── Layout.test.tsx.snap │ │ │ └── Navbar.test.tsx.snap │ ├── assets │ │ ├── latestNews.svg │ │ ├── logo.svg │ │ ├── lowAmountEscrow.svg │ │ ├── network.svg │ │ ├── small-logo.svg │ │ └── token.svg │ ├── components │ │ ├── App │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── AppNetworkContext.ts │ │ │ └── index.ts │ │ ├── Cards │ │ │ ├── Charts │ │ │ │ ├── BarChart.tsx │ │ │ │ ├── StackedBarChart.tsx │ │ │ │ └── index.ts │ │ │ ├── Container │ │ │ │ └── index.tsx │ │ │ ├── TextBlock │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── Escrow │ │ │ ├── EscrowContainer.tsx │ │ │ ├── EscrowView.tsx │ │ │ ├── NetworkTab │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Icons │ │ │ ├── DiscordIcon.tsx │ │ │ ├── EthreumIcon.tsx │ │ │ ├── GithubIcon.tsx │ │ │ ├── HumanIcon.tsx │ │ │ ├── LinkedinIcon.tsx │ │ │ ├── NeonIcon.tsx │ │ │ ├── PolygonIcon.tsx │ │ │ ├── TelegramIcon.tsx │ │ │ └── TwitterIcon.tsx │ │ ├── Layout.tsx │ │ ├── Navbar.tsx │ │ ├── NetworkSwitcher.tsx │ │ ├── Token │ │ │ ├── TokenContainer.tsx │ │ │ ├── TokenView.tsx │ │ │ └── index.ts │ │ ├── TokenPriceIndicator │ │ │ └── index.tsx │ │ ├── ViewTitle │ │ │ └── index.tsx │ │ └── index.ts │ ├── constants │ │ ├── index.ts │ │ └── networkConstants.tsx │ ├── contracts │ │ └── EscrowFactoryABI.json │ ├── hooks │ │ ├── useEscrowCounter │ │ │ └── index.ts │ │ ├── useEscrowStatistics │ │ │ └── index.ts │ │ ├── useEventDayDatas │ │ │ └── index.ts │ │ ├── useHMTData │ │ │ └── index.ts │ │ ├── useNetwork │ │ │ ├── context.tsx │ │ │ ├── hook.ts │ │ │ └── index.ts │ │ └── useTokenStatistics │ │ │ └── index.ts │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── pages │ │ ├── Main │ │ │ └── index.tsx │ │ └── index.ts │ ├── queries │ │ └── index.ts │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── routes │ │ ├── index.ts │ │ └── routes.ts │ ├── setupTests.ts │ ├── theme.tsx │ └── utils │ │ └── gqlFetch.ts ├── tsconfig.json └── yarn.lock ├── github-workflow-job-launch-server.yml ├── hmt_escrow ├── __init__.py ├── crypto │ ├── __init__.py │ ├── encryption.py │ └── exceptions.py ├── eth_bridge.py ├── job.py ├── kvstore_abi.py ├── storage.py └── utils.py ├── hmt_subgraph ├── README.md ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── scripts │ ├── compile.js │ └── generatenetworkssubgraphs.js ├── src │ └── mapping │ │ ├── Escrow.ts │ │ ├── EscrowFactory.ts │ │ ├── hm-token.ts │ │ └── utils │ │ └── dayUpdates.ts ├── subgraph.template.yaml ├── subgraph.yaml ├── tests │ ├── escrow │ │ ├── escrow.test.ts │ │ └── fixtures.ts │ └── hmt │ │ ├── fixtures.ts │ │ └── hmt.test.ts └── tsconfig.json ├── job-launcher-client ├── .env.example ├── Dockerfile ├── README.md ├── babel.config.js ├── jest.config.ts ├── package.json ├── public │ ├── favicon.ico │ ├── fonts │ │ ├── Alliance-No-1-ExtraBold.otf │ │ ├── Alliance-No-1-Regular.otf │ │ ├── Alliance-No-1-SemiBold.otf │ │ └── Alliance.woff │ └── index.html ├── src │ ├── __mocks__ │ │ ├── fileMock.js │ │ └── styleMock.js │ ├── __tests__ │ │ ├── CardTextBlock.test.tsx │ │ ├── EscrowFactoryView.test.tsx │ │ └── __snapshots__ │ │ │ ├── CardTextBlock.test.tsx.snap │ │ │ └── EscrowFactoryView.test.tsx.snap │ ├── assets │ │ └── images │ │ │ ├── images │ │ │ ├── avatar_default.jpg │ │ │ ├── ic_flag_de.svg │ │ │ ├── ic_flag_en.svg │ │ │ └── ic_flag_fr.svg │ │ │ └── logo.svg │ ├── components │ │ ├── App │ │ │ ├── App.tsx │ │ │ ├── AppComponent.tsx │ │ │ ├── AppNetworkContext.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── Backdrop │ │ │ ├── Backdrop.tsx │ │ │ └── index.ts │ │ ├── ButtonLink │ │ │ ├── LinkButton.tsx │ │ │ └── index.ts │ │ ├── Cards │ │ │ ├── CardBlockWithChildren.tsx │ │ │ ├── CardTextBlock.tsx │ │ │ └── index.ts │ │ ├── EscrowDashboard │ │ │ ├── Escrow.tsx │ │ │ ├── EscrowDashboard.tsx │ │ │ ├── EscrowFactoryView.tsx │ │ │ ├── Events.tsx │ │ │ ├── NetworkSwitcher.tsx │ │ │ ├── helpers.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── useOnNetworkChange.ts │ │ ├── Eth │ │ │ ├── ErrorMessage.tsx │ │ │ ├── LinkButton.tsx │ │ │ ├── TxList.tsx │ │ │ ├── constants.ts │ │ │ ├── style.css │ │ │ └── useEth.ts │ │ ├── FormInput │ │ │ ├── FormInput.tsx │ │ │ ├── MultiFormInput.tsx │ │ │ ├── MultiSelectInput.tsx │ │ │ └── style.ts │ │ ├── Grid │ │ │ ├── Grid.tsx │ │ │ └── index.ts │ │ ├── Header │ │ │ ├── AccountMenu.tsx │ │ │ ├── Header.tsx │ │ │ ├── HeaderUserMenu.tsx │ │ │ └── index.ts │ │ ├── Jobs │ │ │ └── Table │ │ │ │ ├── Table.tsx │ │ │ │ ├── TableJobItem.tsx │ │ │ │ ├── columns.tsx │ │ │ │ ├── constants.ts │ │ │ │ └── index.ts │ │ ├── Layouts │ │ │ ├── CustomListItem.tsx │ │ │ ├── DashboardLayout.tsx │ │ │ ├── Layout.tsx │ │ │ ├── SelectLanguage.tsx │ │ │ ├── SideDrawer.tsx │ │ │ └── index.ts │ │ ├── Navbar │ │ │ ├── Navbar.tsx │ │ │ └── index.ts │ │ ├── Routes │ │ │ ├── PrivateRoute.tsx │ │ │ ├── PublicRoute.tsx │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── routes.ts │ │ ├── Skeletons │ │ │ ├── SkeletonBase.tsx │ │ │ └── index.ts │ │ ├── Spinner │ │ │ ├── Spinner.tsx │ │ │ └── index.ts │ │ ├── Stepper │ │ │ ├── Dots.tsx │ │ │ ├── HorizontalLinearStepper.tsx │ │ │ └── index.ts │ │ ├── Table │ │ │ └── index.tsx │ │ ├── Tooltip │ │ │ ├── Tooltip.tsx │ │ │ └── index.ts │ │ ├── WalletConnector │ │ │ ├── DisplayMask.tsx │ │ │ ├── WalletConnector.tsx │ │ │ ├── chainParams.ts │ │ │ ├── connectors.ts │ │ │ ├── helpers.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── style.ts │ │ └── helpers │ │ │ └── getIsJwtExpired.ts │ ├── constants │ │ ├── index.ts │ │ └── networkConstants.tsx │ ├── contracts │ │ ├── EscrowFactoryABI.json │ │ └── HMTokenAbi.json │ ├── index.tsx │ ├── pages │ │ ├── Home │ │ │ ├── Home.tsx │ │ │ ├── home.style.ts │ │ │ └── index.ts │ │ ├── JobCreatorForm │ │ │ ├── JobCreatorForm.tsx │ │ │ ├── Steps │ │ │ │ ├── ConfirmStep │ │ │ │ │ ├── ConfirmStep.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FundingStep │ │ │ │ │ ├── FundingStep.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── JobCreator │ │ │ │ │ ├── JobCreator.tsx │ │ │ │ │ ├── JobCreatorView.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ ├── tooltipHints.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── ProgressStep │ │ │ │ │ ├── ProgressStep.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── Stats │ │ │ │ │ ├── Stats.tsx │ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── Login │ │ │ ├── Login.tsx │ │ │ ├── LoginPageView.tsx │ │ │ ├── index.ts │ │ │ └── login.style.ts │ │ ├── RestorePassword │ │ │ ├── RestorePassword.tsx │ │ │ ├── RestorePasswordView.tsx │ │ │ ├── index.ts │ │ │ └── login.style.ts │ │ ├── SignUp │ │ │ ├── SignUp.tsx │ │ │ ├── SignUpView.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── queries │ │ └── index.ts │ ├── react-app-env.d.ts │ ├── services │ │ ├── constants.ts │ │ ├── redux │ │ │ ├── api │ │ │ │ ├── authApi.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── jobApi.ts │ │ │ │ ├── types.ts │ │ │ │ └── userApi.ts │ │ │ ├── sagas │ │ │ │ └── authSaga.ts │ │ │ ├── selectors │ │ │ │ ├── auth.ts │ │ │ │ └── jobs.ts │ │ │ ├── slices │ │ │ │ ├── authSlice.ts │ │ │ │ ├── jobSlice.ts │ │ │ │ └── userSlice.ts │ │ │ └── store.ts │ │ └── types.ts │ ├── setupTests.ts │ ├── ui │ │ └── theme.ts │ └── utils │ │ └── index.ts ├── tsconfig.json └── yarn.lock ├── job-launcher-server ├── .dockerignore ├── .eslintignore ├── .eslintrc ├── .huskyrc ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── jest.config.json ├── package-lock.json ├── package.json ├── src │ ├── app.controller.ts │ ├── app.module.ts │ ├── auth │ │ ├── auth.entity.ts │ │ ├── auth.jwt.controller.ts │ │ ├── auth.module.ts │ │ ├── auth.service.spec.ts │ │ ├── auth.service.ts │ │ ├── dto │ │ │ ├── forgot.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ ├── logout.ts │ │ │ ├── password.ts │ │ │ ├── refresh.ts │ │ │ ├── resend.ts │ │ │ ├── restore.ts │ │ │ └── verify.ts │ │ ├── interfaces │ │ │ ├── forgot.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ ├── logout.ts │ │ │ ├── password.ts │ │ │ ├── refresh.ts │ │ │ ├── resend.ts │ │ │ ├── restore.ts │ │ │ └── verify.ts │ │ └── strategy │ │ │ ├── index.ts │ │ │ └── jwt.http.ts │ ├── common │ │ ├── collection │ │ │ ├── index.ts │ │ │ ├── pagination.ts │ │ │ ├── search.ts │ │ │ └── sort.ts │ │ ├── constants │ │ │ ├── errors.ts │ │ │ ├── index.ts │ │ │ ├── networks.ts │ │ │ └── providers.ts │ │ ├── decorators │ │ │ ├── base.ts │ │ │ ├── index.ts │ │ │ ├── job.ts │ │ │ ├── network.ts │ │ │ ├── public.ts │ │ │ ├── roles.ts │ │ │ ├── transaction.ts │ │ │ └── user.ts │ │ ├── dto │ │ │ ├── index.ts │ │ │ ├── job-common.ts │ │ │ ├── transaction-common.ts │ │ │ └── user-common.ts │ │ ├── dynamic │ │ │ └── index.ts │ │ ├── guards │ │ │ ├── index.ts │ │ │ ├── jwt.http.ts │ │ │ └── roles.ts │ │ ├── helpers │ │ │ ├── array.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── json.ts │ │ ├── interceptors │ │ │ ├── index.ts │ │ │ ├── not-found.ts │ │ │ └── pagination.ts │ │ ├── jwt.ts │ │ ├── pipes │ │ │ ├── index.ts │ │ │ └── validation.ts │ │ ├── providers │ │ │ ├── index.ts │ │ │ ├── postmark.ts │ │ │ └── s3.ts │ │ ├── test │ │ │ ├── dto.ts │ │ │ ├── entity.ts │ │ │ └── index.ts │ │ └── validators │ │ │ ├── confirm.ts │ │ │ ├── index.ts │ │ │ └── password.ts │ ├── contracts │ │ ├── EscrowAbi.json │ │ ├── EscrowFactoryAbi.json │ │ └── HMTokenAbi.json │ ├── database │ │ ├── base.entity.ts │ │ ├── database.module.ts │ │ └── typeorm │ │ │ ├── index.ts │ │ │ ├── typeorm-logger.module.ts │ │ │ └── typeorm-logger.service.ts │ ├── health │ │ ├── health.controller.ts │ │ └── health.module.ts │ ├── index.ts │ ├── job │ │ ├── dto │ │ │ ├── create.ts │ │ │ ├── index.ts │ │ │ ├── search.ts │ │ │ └── update.ts │ │ ├── interfaces │ │ │ ├── create.ts │ │ │ ├── createEscrow.ts │ │ │ ├── feeRange.ts │ │ │ ├── groundTruthData.ts │ │ │ ├── index.ts │ │ │ ├── manifest.ts │ │ │ ├── search.ts │ │ │ └── update.ts │ │ ├── job.controller.ts │ │ ├── job.cron.ts │ │ ├── job.entity.ts │ │ ├── job.module.ts │ │ ├── job.service.ts │ │ └── serializers │ │ │ └── job.responses.ts │ ├── migrations │ │ ├── 1656930580138-add-schema.ts │ │ ├── 1656930618272-install-extension.ts │ │ ├── 1656930652386-add-user-table.ts │ │ ├── 1656930694914-add-auth-table.ts │ │ ├── 1656930730927-add-token-table.ts │ │ ├── 1657010364902-add-job-table.ts │ │ └── 1658132459349-add-transaction-table.ts │ ├── network │ │ ├── interfaces │ │ │ ├── index.ts │ │ │ └── network.ts │ │ ├── network.controller.ts │ │ ├── network.module.ts │ │ └── network.service.ts │ ├── ormconfig.ts │ ├── postmark │ │ ├── postmark.module.ts │ │ └── postmark.service.ts │ ├── storage │ │ ├── storage.module.ts │ │ └── storage.service.ts │ ├── token │ │ ├── token.entity.ts │ │ ├── token.module.ts │ │ └── token.service.ts │ ├── transaction │ │ ├── dto │ │ │ ├── create.ts │ │ │ ├── index.ts │ │ │ └── update.ts │ │ ├── interfaces │ │ │ ├── create.ts │ │ │ ├── index.ts │ │ │ └── update.ts │ │ ├── transaction.entity.ts │ │ ├── transaction.module.ts │ │ └── transaction.service.ts │ ├── user │ │ ├── dto │ │ │ ├── create.ts │ │ │ ├── index.ts │ │ │ ├── search.ts │ │ │ ├── update.ts │ │ │ └── updateTokenAddress.ts │ │ ├── interfaces │ │ │ ├── create.ts │ │ │ ├── index.ts │ │ │ ├── search.ts │ │ │ └── update.ts │ │ ├── serializers │ │ │ └── user.responses.ts │ │ ├── user.controller.ts │ │ ├── user.entity.ts │ │ ├── user.module.ts │ │ ├── user.seed.module.ts │ │ ├── user.seed.service.ts │ │ ├── user.service.spec.ts │ │ └── user.service.ts │ └── web3 │ │ ├── interfaces │ │ ├── index.ts │ │ └── web3.ts │ │ ├── web3-client.provider.ts │ │ ├── web3-core.module.ts │ │ ├── web3.constants.ts │ │ ├── web3.module.ts │ │ └── web3.service.ts ├── truffle-config.js ├── tsconfig.json └── tsconfig.test.json ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── network_contracts ├── bsc_contracts │ └── AnyswapV6ERC20.sol └── polygon_contracts │ ├── AccessControlMixin.sol │ ├── ChainConstants.sol │ ├── ContextMixin.sol │ ├── EIP712Base.sol │ ├── ERC20.sol │ ├── IChildToken.sol │ ├── Initializable.sol │ ├── NativeMetaTransaction.sol │ ├── UChildERC20.sol │ └── proxy │ ├── IERCProxy.sol │ ├── Proxy.sol │ ├── UChildERC20Proxy.sol │ └── UpgradableProxy.sol ├── package.json ├── private-provider.js ├── setup.cfg ├── setup.py ├── solcover.js ├── sphinx-documentation ├── Makefile ├── escape_code.py ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── static └── human.svg ├── test ├── Escrow.test.js ├── EscrowFactory.test.js ├── __init__.py ├── hmt_escrow │ ├── __init__.py │ ├── crypto │ │ ├── __init__.py │ │ ├── test_crypto.py │ │ └── test_encryption.py │ ├── storage │ │ ├── __init__.py │ │ ├── test_bucket.py │ │ └── test_storage.py │ ├── test_eth_bridge.py │ ├── test_job.py │ ├── test_utils.py │ └── utils │ │ ├── __init__.py │ │ ├── job.py │ │ └── manifest.py └── utils │ └── helpers.js ├── truffle.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-a-new-evm-network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/ISSUE_TEMPLATE/add-a-new-evm-network.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/escrow-dashboard-build-and-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/escrow-dashboard-build-and-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/escrow-dashboard-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/escrow-dashboard-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/escrow-dashboard-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/escrow-dashboard-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/graph_deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/graph_deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/graph_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/graph_tests.yaml -------------------------------------------------------------------------------- /.github/workflows/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/job.yml -------------------------------------------------------------------------------- /.github/workflows/jobclient.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/jobclient.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.gitignore -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/README.md -------------------------------------------------------------------------------- /SPHINX-DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/SPHINX-DOCUMENTATION.md -------------------------------------------------------------------------------- /audits/CertiK_Verification_Report_for_hCaptcha_07082019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/audits/CertiK_Verification_Report_for_hCaptcha_07082019.pdf -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -exu 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /bin/generate-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/bin/generate-docs -------------------------------------------------------------------------------- /bin/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/bin/lint -------------------------------------------------------------------------------- /bin/prelaunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/bin/prelaunch -------------------------------------------------------------------------------- /bin/shell.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -exu 3 | docker-compose run -w /work job bash -------------------------------------------------------------------------------- /bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/bin/stop -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/bin/test -------------------------------------------------------------------------------- /bin/wait_then_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/bin/wait_then_run -------------------------------------------------------------------------------- /contracts/Context.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/contracts/Context.sol -------------------------------------------------------------------------------- /contracts/Escrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/contracts/Escrow.sol -------------------------------------------------------------------------------- /contracts/EscrowFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/contracts/EscrowFactory.sol -------------------------------------------------------------------------------- /contracts/HMToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/contracts/HMToken.sol -------------------------------------------------------------------------------- /contracts/HMTokenInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/contracts/HMTokenInterface.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/contracts/Ownable.sol -------------------------------------------------------------------------------- /contracts/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/contracts/SafeMath.sol -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | dev.hmt.ai -------------------------------------------------------------------------------- /escrow-dashboard/.env.example: -------------------------------------------------------------------------------- 1 | PORT=3002 2 | -------------------------------------------------------------------------------- /escrow-dashboard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/.eslintrc.json -------------------------------------------------------------------------------- /escrow-dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/Dockerfile -------------------------------------------------------------------------------- /escrow-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/README.md -------------------------------------------------------------------------------- /escrow-dashboard/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/babel.config.js -------------------------------------------------------------------------------- /escrow-dashboard/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/jest.config.ts -------------------------------------------------------------------------------- /escrow-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/package.json -------------------------------------------------------------------------------- /escrow-dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/public/favicon.ico -------------------------------------------------------------------------------- /escrow-dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/public/index.html -------------------------------------------------------------------------------- /escrow-dashboard/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/public/manifest.json -------------------------------------------------------------------------------- /escrow-dashboard/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/public/robots.txt -------------------------------------------------------------------------------- /escrow-dashboard/src/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /escrow-dashboard/src/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/CardBarChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/CardBarChart.test.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/CardStackedBarChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/CardStackedBarChart.test.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/CardTextBlock.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/CardTextBlock.test.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/Footer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/Footer.test.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/Header.test.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/Layout.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/Layout.test.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/Navbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/Navbar.test.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/__snapshots__/CardBarChart.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/__snapshots__/CardBarChart.test.tsx.snap -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/__snapshots__/CardStackedBarChart.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/__snapshots__/CardStackedBarChart.test.tsx.snap -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/__snapshots__/CardTextBlock.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/__snapshots__/CardTextBlock.test.tsx.snap -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/__snapshots__/Footer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/__snapshots__/Footer.test.tsx.snap -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/__snapshots__/Header.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/__snapshots__/Header.test.tsx.snap -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/__snapshots__/Layout.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/__snapshots__/Layout.test.tsx.snap -------------------------------------------------------------------------------- /escrow-dashboard/src/__tests__/__snapshots__/Navbar.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/__tests__/__snapshots__/Navbar.test.tsx.snap -------------------------------------------------------------------------------- /escrow-dashboard/src/assets/latestNews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/assets/latestNews.svg -------------------------------------------------------------------------------- /escrow-dashboard/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/assets/logo.svg -------------------------------------------------------------------------------- /escrow-dashboard/src/assets/lowAmountEscrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/assets/lowAmountEscrow.svg -------------------------------------------------------------------------------- /escrow-dashboard/src/assets/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/assets/network.svg -------------------------------------------------------------------------------- /escrow-dashboard/src/assets/small-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/assets/small-logo.svg -------------------------------------------------------------------------------- /escrow-dashboard/src/assets/token.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/assets/token.svg -------------------------------------------------------------------------------- /escrow-dashboard/src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/App/App.css -------------------------------------------------------------------------------- /escrow-dashboard/src/components/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/App/App.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/App/AppNetworkContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/App/AppNetworkContext.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/components/App/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/App/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Cards/Charts/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Cards/Charts/BarChart.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Cards/Charts/StackedBarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Cards/Charts/StackedBarChart.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Cards/Charts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Cards/Charts/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Cards/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Cards/Container/index.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Cards/TextBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Cards/TextBlock/index.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Cards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Cards/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Escrow/EscrowContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Escrow/EscrowContainer.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Escrow/EscrowView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Escrow/EscrowView.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Escrow/NetworkTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Escrow/NetworkTab/index.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Escrow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Escrow/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Footer.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Header.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/DiscordIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/EthreumIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/EthreumIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/GithubIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/HumanIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/HumanIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/LinkedinIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/LinkedinIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/NeonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/NeonIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/PolygonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/PolygonIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/TelegramIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/TelegramIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Icons/TwitterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Icons/TwitterIcon.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Layout.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Navbar.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/NetworkSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/NetworkSwitcher.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Token/TokenContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Token/TokenContainer.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Token/TokenView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Token/TokenView.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/Token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/Token/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/components/TokenPriceIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/TokenPriceIndicator/index.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/ViewTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/ViewTitle/index.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/components/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/constants/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/constants/networkConstants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/constants/networkConstants.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/contracts/EscrowFactoryABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/contracts/EscrowFactoryABI.json -------------------------------------------------------------------------------- /escrow-dashboard/src/hooks/useEscrowCounter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/hooks/useEscrowCounter/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/hooks/useEscrowStatistics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/hooks/useEscrowStatistics/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/hooks/useEventDayDatas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/hooks/useEventDayDatas/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/hooks/useHMTData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/hooks/useHMTData/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/hooks/useNetwork/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/hooks/useNetwork/context.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/hooks/useNetwork/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/hooks/useNetwork/hook.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/hooks/useNetwork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/hooks/useNetwork/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/hooks/useTokenStatistics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/hooks/useTokenStatistics/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/index.css -------------------------------------------------------------------------------- /escrow-dashboard/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/index.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/logo.svg -------------------------------------------------------------------------------- /escrow-dashboard/src/pages/Main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/pages/Main/index.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/pages/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/queries/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /escrow-dashboard/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/reportWebVitals.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/routes/index.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/routes/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/routes/routes.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/setupTests.ts -------------------------------------------------------------------------------- /escrow-dashboard/src/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/theme.tsx -------------------------------------------------------------------------------- /escrow-dashboard/src/utils/gqlFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/src/utils/gqlFetch.ts -------------------------------------------------------------------------------- /escrow-dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/tsconfig.json -------------------------------------------------------------------------------- /escrow-dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/escrow-dashboard/yarn.lock -------------------------------------------------------------------------------- /github-workflow-job-launch-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/github-workflow-job-launch-server.yml -------------------------------------------------------------------------------- /hmt_escrow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hmt_escrow/crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_escrow/crypto/__init__.py -------------------------------------------------------------------------------- /hmt_escrow/crypto/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_escrow/crypto/encryption.py -------------------------------------------------------------------------------- /hmt_escrow/crypto/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_escrow/crypto/exceptions.py -------------------------------------------------------------------------------- /hmt_escrow/eth_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_escrow/eth_bridge.py -------------------------------------------------------------------------------- /hmt_escrow/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_escrow/job.py -------------------------------------------------------------------------------- /hmt_escrow/kvstore_abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_escrow/kvstore_abi.py -------------------------------------------------------------------------------- /hmt_escrow/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_escrow/storage.py -------------------------------------------------------------------------------- /hmt_escrow/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_escrow/utils.py -------------------------------------------------------------------------------- /hmt_subgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/README.md -------------------------------------------------------------------------------- /hmt_subgraph/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/networks.json -------------------------------------------------------------------------------- /hmt_subgraph/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/package-lock.json -------------------------------------------------------------------------------- /hmt_subgraph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/package.json -------------------------------------------------------------------------------- /hmt_subgraph/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/schema.graphql -------------------------------------------------------------------------------- /hmt_subgraph/scripts/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/scripts/compile.js -------------------------------------------------------------------------------- /hmt_subgraph/scripts/generatenetworkssubgraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/scripts/generatenetworkssubgraphs.js -------------------------------------------------------------------------------- /hmt_subgraph/src/mapping/Escrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/src/mapping/Escrow.ts -------------------------------------------------------------------------------- /hmt_subgraph/src/mapping/EscrowFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/src/mapping/EscrowFactory.ts -------------------------------------------------------------------------------- /hmt_subgraph/src/mapping/hm-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/src/mapping/hm-token.ts -------------------------------------------------------------------------------- /hmt_subgraph/src/mapping/utils/dayUpdates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/src/mapping/utils/dayUpdates.ts -------------------------------------------------------------------------------- /hmt_subgraph/subgraph.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/subgraph.template.yaml -------------------------------------------------------------------------------- /hmt_subgraph/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/subgraph.yaml -------------------------------------------------------------------------------- /hmt_subgraph/tests/escrow/escrow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/tests/escrow/escrow.test.ts -------------------------------------------------------------------------------- /hmt_subgraph/tests/escrow/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/tests/escrow/fixtures.ts -------------------------------------------------------------------------------- /hmt_subgraph/tests/hmt/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/tests/hmt/fixtures.ts -------------------------------------------------------------------------------- /hmt_subgraph/tests/hmt/hmt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/tests/hmt/hmt.test.ts -------------------------------------------------------------------------------- /hmt_subgraph/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/hmt_subgraph/tsconfig.json -------------------------------------------------------------------------------- /job-launcher-client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/.env.example -------------------------------------------------------------------------------- /job-launcher-client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/Dockerfile -------------------------------------------------------------------------------- /job-launcher-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/README.md -------------------------------------------------------------------------------- /job-launcher-client/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/babel.config.js -------------------------------------------------------------------------------- /job-launcher-client/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/jest.config.ts -------------------------------------------------------------------------------- /job-launcher-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/package.json -------------------------------------------------------------------------------- /job-launcher-client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/public/favicon.ico -------------------------------------------------------------------------------- /job-launcher-client/public/fonts/Alliance-No-1-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/public/fonts/Alliance-No-1-ExtraBold.otf -------------------------------------------------------------------------------- /job-launcher-client/public/fonts/Alliance-No-1-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/public/fonts/Alliance-No-1-Regular.otf -------------------------------------------------------------------------------- /job-launcher-client/public/fonts/Alliance-No-1-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/public/fonts/Alliance-No-1-SemiBold.otf -------------------------------------------------------------------------------- /job-launcher-client/public/fonts/Alliance.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/public/fonts/Alliance.woff -------------------------------------------------------------------------------- /job-launcher-client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/public/index.html -------------------------------------------------------------------------------- /job-launcher-client/src/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /job-launcher-client/src/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /job-launcher-client/src/__tests__/CardTextBlock.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/__tests__/CardTextBlock.test.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/__tests__/EscrowFactoryView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/__tests__/EscrowFactoryView.test.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/__tests__/__snapshots__/CardTextBlock.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/__tests__/__snapshots__/CardTextBlock.test.tsx.snap -------------------------------------------------------------------------------- /job-launcher-client/src/__tests__/__snapshots__/EscrowFactoryView.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/__tests__/__snapshots__/EscrowFactoryView.test.tsx.snap -------------------------------------------------------------------------------- /job-launcher-client/src/assets/images/images/avatar_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/assets/images/images/avatar_default.jpg -------------------------------------------------------------------------------- /job-launcher-client/src/assets/images/images/ic_flag_de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/assets/images/images/ic_flag_de.svg -------------------------------------------------------------------------------- /job-launcher-client/src/assets/images/images/ic_flag_en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/assets/images/images/ic_flag_en.svg -------------------------------------------------------------------------------- /job-launcher-client/src/assets/images/images/ic_flag_fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/assets/images/images/ic_flag_fr.svg -------------------------------------------------------------------------------- /job-launcher-client/src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/assets/images/logo.svg -------------------------------------------------------------------------------- /job-launcher-client/src/components/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/App/App.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/App/AppComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/App/AppComponent.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/App/AppNetworkContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/App/AppNetworkContext.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/App/index.ts: -------------------------------------------------------------------------------- 1 | export { App } from './App'; 2 | -------------------------------------------------------------------------------- /job-launcher-client/src/components/App/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/App/utils.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Backdrop/Backdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Backdrop/Backdrop.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Backdrop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Backdrop/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/ButtonLink/LinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/ButtonLink/LinkButton.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/ButtonLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/ButtonLink/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Cards/CardBlockWithChildren.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Cards/CardBlockWithChildren.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Cards/CardTextBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Cards/CardTextBlock.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Cards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Cards/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/Escrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/Escrow.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/EscrowDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/EscrowDashboard.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/EscrowFactoryView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/EscrowFactoryView.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/Events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/Events.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/NetworkSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/NetworkSwitcher.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/helpers.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/hooks.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/EscrowDashboard/useOnNetworkChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/EscrowDashboard/useOnNetworkChange.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Eth/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Eth/ErrorMessage.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Eth/LinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Eth/LinkButton.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Eth/TxList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Eth/TxList.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Eth/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Eth/constants.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Eth/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Eth/style.css -------------------------------------------------------------------------------- /job-launcher-client/src/components/Eth/useEth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Eth/useEth.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/FormInput/FormInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/FormInput/FormInput.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/FormInput/MultiFormInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/FormInput/MultiFormInput.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/FormInput/MultiSelectInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/FormInput/MultiSelectInput.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/FormInput/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/FormInput/style.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Grid/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Grid/Grid.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Grid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Grid/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Header/AccountMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Header/AccountMenu.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Header/HeaderUserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Header/HeaderUserMenu.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Header/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Jobs/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Jobs/Table/Table.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Jobs/Table/TableJobItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Jobs/Table/TableJobItem.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Jobs/Table/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Jobs/Table/columns.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Jobs/Table/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Jobs/Table/constants.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Jobs/Table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Jobs/Table/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Layouts/CustomListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Layouts/CustomListItem.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Layouts/DashboardLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Layouts/DashboardLayout.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Layouts/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Layouts/Layout.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Layouts/SelectLanguage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Layouts/SelectLanguage.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Layouts/SideDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Layouts/SideDrawer.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Layouts/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Navbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Navbar/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Routes/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Routes/PrivateRoute.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Routes/PublicRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Routes/PublicRoute.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Routes/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Routes/hooks.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Routes/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Routes/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Routes/routes.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Skeletons/SkeletonBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Skeletons/SkeletonBase.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Skeletons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Skeletons/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Spinner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Spinner/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Stepper/Dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Stepper/Dots.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Stepper/HorizontalLinearStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Stepper/HorizontalLinearStepper.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Stepper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Stepper/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Table/index.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/Tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/Tooltip/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/WalletConnector/DisplayMask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/WalletConnector/DisplayMask.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/WalletConnector/WalletConnector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/WalletConnector/WalletConnector.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/components/WalletConnector/chainParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/WalletConnector/chainParams.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/WalletConnector/connectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/WalletConnector/connectors.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/WalletConnector/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/WalletConnector/helpers.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/WalletConnector/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/WalletConnector/hooks.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/WalletConnector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/WalletConnector/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/WalletConnector/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/WalletConnector/style.ts -------------------------------------------------------------------------------- /job-launcher-client/src/components/helpers/getIsJwtExpired.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/components/helpers/getIsJwtExpired.ts -------------------------------------------------------------------------------- /job-launcher-client/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/constants/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/constants/networkConstants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/constants/networkConstants.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/contracts/EscrowFactoryABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/contracts/EscrowFactoryABI.json -------------------------------------------------------------------------------- /job-launcher-client/src/contracts/HMTokenAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/contracts/HMTokenAbi.json -------------------------------------------------------------------------------- /job-launcher-client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/index.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/Home/home.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/Home/home.style.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/Home/index.ts: -------------------------------------------------------------------------------- 1 | export { Home as default } from './Home'; 2 | -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/JobCreatorForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/JobCreatorForm.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/ConfirmStep/ConfirmStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/ConfirmStep/ConfirmStep.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/ConfirmStep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/ConfirmStep/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/FundingStep/FundingStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/FundingStep/FundingStep.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/FundingStep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/FundingStep/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/JobCreator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/JobCreator.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/JobCreatorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/JobCreatorView.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/schema.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/tooltipHints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/tooltipHints.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/JobCreator/utils.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/ProgressStep/ProgressStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/ProgressStep/ProgressStep.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/ProgressStep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/ProgressStep/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/Stats/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/Stats/Stats.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/Steps/Stats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/Steps/Stats/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/JobCreatorForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/JobCreatorForm/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/Login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/Login/Login.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/Login/LoginPageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/Login/LoginPageView.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/Login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/Login/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/Login/login.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/Login/login.style.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/RestorePassword/RestorePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/RestorePassword/RestorePassword.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/RestorePassword/RestorePasswordView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/RestorePassword/RestorePasswordView.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/RestorePassword/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/RestorePassword/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/RestorePassword/login.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/RestorePassword/login.style.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/SignUp/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/SignUp/SignUp.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/SignUp/SignUpView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/SignUp/SignUpView.tsx -------------------------------------------------------------------------------- /job-launcher-client/src/pages/SignUp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/SignUp/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/pages/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/queries/index.ts -------------------------------------------------------------------------------- /job-launcher-client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/react-app-env.d.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/constants.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/api/authApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/api/authApi.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/api/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/api/constants.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/api/jobApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/api/jobApi.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/api/types.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/api/userApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/api/userApi.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/sagas/authSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/sagas/authSaga.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/selectors/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/selectors/auth.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/selectors/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/selectors/jobs.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/slices/authSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/slices/authSlice.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/slices/jobSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/slices/jobSlice.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/slices/userSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/slices/userSlice.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/redux/store.ts -------------------------------------------------------------------------------- /job-launcher-client/src/services/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/services/types.ts -------------------------------------------------------------------------------- /job-launcher-client/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/setupTests.ts -------------------------------------------------------------------------------- /job-launcher-client/src/ui/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/ui/theme.ts -------------------------------------------------------------------------------- /job-launcher-client/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/src/utils/index.ts -------------------------------------------------------------------------------- /job-launcher-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/tsconfig.json -------------------------------------------------------------------------------- /job-launcher-client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-client/yarn.lock -------------------------------------------------------------------------------- /job-launcher-server/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | ganache/build/ 3 | -------------------------------------------------------------------------------- /job-launcher-server/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/.eslintignore -------------------------------------------------------------------------------- /job-launcher-server/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/.eslintrc -------------------------------------------------------------------------------- /job-launcher-server/.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/.huskyrc -------------------------------------------------------------------------------- /job-launcher-server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/.prettierrc -------------------------------------------------------------------------------- /job-launcher-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/Dockerfile -------------------------------------------------------------------------------- /job-launcher-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/LICENSE -------------------------------------------------------------------------------- /job-launcher-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/README.md -------------------------------------------------------------------------------- /job-launcher-server/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/jest.config.json -------------------------------------------------------------------------------- /job-launcher-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/package-lock.json -------------------------------------------------------------------------------- /job-launcher-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/package.json -------------------------------------------------------------------------------- /job-launcher-server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/app.controller.ts -------------------------------------------------------------------------------- /job-launcher-server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/app.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/auth.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/auth.entity.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/auth.jwt.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/auth.jwt.controller.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/auth.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/auth.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/forgot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/forgot.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/login.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/logout.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/password.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/refresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/refresh.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/resend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/resend.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/restore.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/dto/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/dto/verify.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/forgot.ts: -------------------------------------------------------------------------------- 1 | export interface IForgotPasswordDto { 2 | email: string; 3 | } 4 | -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/interfaces/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/interfaces/login.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/logout.ts: -------------------------------------------------------------------------------- 1 | export interface ILogoutDto { 2 | refreshToken: string; 3 | } 4 | -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/interfaces/password.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/refresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/interfaces/refresh.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/resend.ts: -------------------------------------------------------------------------------- 1 | export interface IResendEmailVerificationDto { 2 | email: string; 3 | } 4 | -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/interfaces/restore.ts -------------------------------------------------------------------------------- /job-launcher-server/src/auth/interfaces/verify.ts: -------------------------------------------------------------------------------- 1 | export interface IEmailVerificationDto { 2 | token: string; 3 | } 4 | -------------------------------------------------------------------------------- /job-launcher-server/src/auth/strategy/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./jwt.http"; 2 | -------------------------------------------------------------------------------- /job-launcher-server/src/auth/strategy/jwt.http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/auth/strategy/jwt.http.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/collection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/collection/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/collection/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/collection/pagination.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/collection/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/collection/search.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/collection/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/collection/sort.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/constants/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/constants/errors.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/constants/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/constants/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/constants/networks.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/constants/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/constants/providers.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/decorators/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/decorators/base.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/decorators/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/decorators/job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/decorators/job.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/decorators/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/decorators/network.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/decorators/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/decorators/public.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/decorators/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/decorators/roles.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/decorators/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/decorators/transaction.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/decorators/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/decorators/user.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/dto/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/dto/job-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/dto/job-common.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/dto/transaction-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/dto/transaction-common.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/dto/user-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/dto/user-common.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/dynamic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/dynamic/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/guards/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/guards/jwt.http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/guards/jwt.http.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/guards/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/guards/roles.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/helpers/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/helpers/array.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/helpers/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/helpers/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/helpers/interface.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/helpers/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/helpers/json.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/interceptors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/interceptors/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/interceptors/not-found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/interceptors/not-found.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/interceptors/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/interceptors/pagination.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/jwt.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/pipes/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./validation"; 2 | -------------------------------------------------------------------------------- /job-launcher-server/src/common/pipes/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/pipes/validation.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/providers/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/providers/postmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/providers/postmark.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/providers/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/providers/s3.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/test/dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/test/dto.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/test/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/test/entity.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/test/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/validators/confirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/validators/confirm.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/validators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/validators/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/common/validators/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/common/validators/password.ts -------------------------------------------------------------------------------- /job-launcher-server/src/contracts/EscrowAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/contracts/EscrowAbi.json -------------------------------------------------------------------------------- /job-launcher-server/src/contracts/EscrowFactoryAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/contracts/EscrowFactoryAbi.json -------------------------------------------------------------------------------- /job-launcher-server/src/contracts/HMTokenAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/contracts/HMTokenAbi.json -------------------------------------------------------------------------------- /job-launcher-server/src/database/base.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/database/base.entity.ts -------------------------------------------------------------------------------- /job-launcher-server/src/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/database/database.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/database/typeorm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/database/typeorm/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/database/typeorm/typeorm-logger.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/database/typeorm/typeorm-logger.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/database/typeorm/typeorm-logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/database/typeorm/typeorm-logger.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/health/health.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/health/health.controller.ts -------------------------------------------------------------------------------- /job-launcher-server/src/health/health.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/health/health.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/dto/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/dto/create.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/dto/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/dto/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/dto/search.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/dto/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/dto/update.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/interfaces/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/interfaces/create.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/interfaces/createEscrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/interfaces/createEscrow.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/interfaces/feeRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/interfaces/feeRange.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/interfaces/groundTruthData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/interfaces/groundTruthData.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/interfaces/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/interfaces/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/interfaces/manifest.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/interfaces/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/interfaces/search.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/interfaces/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/interfaces/update.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/job.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/job.controller.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/job.cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/job.cron.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/job.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/job.entity.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/job.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/job.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/job.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/job.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/job/serializers/job.responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/job/serializers/job.responses.ts -------------------------------------------------------------------------------- /job-launcher-server/src/migrations/1656930580138-add-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/migrations/1656930580138-add-schema.ts -------------------------------------------------------------------------------- /job-launcher-server/src/migrations/1656930618272-install-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/migrations/1656930618272-install-extension.ts -------------------------------------------------------------------------------- /job-launcher-server/src/migrations/1656930652386-add-user-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/migrations/1656930652386-add-user-table.ts -------------------------------------------------------------------------------- /job-launcher-server/src/migrations/1656930694914-add-auth-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/migrations/1656930694914-add-auth-table.ts -------------------------------------------------------------------------------- /job-launcher-server/src/migrations/1656930730927-add-token-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/migrations/1656930730927-add-token-table.ts -------------------------------------------------------------------------------- /job-launcher-server/src/migrations/1657010364902-add-job-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/migrations/1657010364902-add-job-table.ts -------------------------------------------------------------------------------- /job-launcher-server/src/migrations/1658132459349-add-transaction-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/migrations/1658132459349-add-transaction-table.ts -------------------------------------------------------------------------------- /job-launcher-server/src/network/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./network"; 2 | -------------------------------------------------------------------------------- /job-launcher-server/src/network/interfaces/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/network/interfaces/network.ts -------------------------------------------------------------------------------- /job-launcher-server/src/network/network.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/network/network.controller.ts -------------------------------------------------------------------------------- /job-launcher-server/src/network/network.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/network/network.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/network/network.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/network/network.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/ormconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/ormconfig.ts -------------------------------------------------------------------------------- /job-launcher-server/src/postmark/postmark.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/postmark/postmark.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/postmark/postmark.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/postmark/postmark.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/storage/storage.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/storage/storage.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/storage/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/storage/storage.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/token/token.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/token/token.entity.ts -------------------------------------------------------------------------------- /job-launcher-server/src/token/token.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/token/token.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/token/token.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/token/token.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/dto/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/dto/create.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/dto/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/dto/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/dto/update.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/interfaces/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/interfaces/create.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/interfaces/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/interfaces/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/interfaces/update.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/transaction.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/transaction.entity.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/transaction.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/transaction.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/transaction/transaction.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/transaction/transaction.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/dto/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/dto/create.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/dto/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/dto/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/dto/search.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/dto/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/dto/update.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/dto/updateTokenAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/dto/updateTokenAddress.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/interfaces/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/interfaces/create.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/interfaces/index.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/interfaces/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/interfaces/search.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/interfaces/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/interfaces/update.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/serializers/user.responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/serializers/user.responses.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/user.controller.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/user.entity.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/user.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/user.seed.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/user.seed.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/user.seed.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/user.seed.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/user.service.spec.ts -------------------------------------------------------------------------------- /job-launcher-server/src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/user/user.service.ts -------------------------------------------------------------------------------- /job-launcher-server/src/web3/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./web3"; 2 | -------------------------------------------------------------------------------- /job-launcher-server/src/web3/interfaces/web3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/web3/interfaces/web3.ts -------------------------------------------------------------------------------- /job-launcher-server/src/web3/web3-client.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/web3/web3-client.provider.ts -------------------------------------------------------------------------------- /job-launcher-server/src/web3/web3-core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/web3/web3-core.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/web3/web3.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/web3/web3.constants.ts -------------------------------------------------------------------------------- /job-launcher-server/src/web3/web3.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/web3/web3.module.ts -------------------------------------------------------------------------------- /job-launcher-server/src/web3/web3.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/src/web3/web3.service.ts -------------------------------------------------------------------------------- /job-launcher-server/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/truffle-config.js -------------------------------------------------------------------------------- /job-launcher-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/tsconfig.json -------------------------------------------------------------------------------- /job-launcher-server/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/job-launcher-server/tsconfig.test.json -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /network_contracts/bsc_contracts/AnyswapV6ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/bsc_contracts/AnyswapV6ERC20.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/AccessControlMixin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/AccessControlMixin.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/ChainConstants.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/ChainConstants.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/ContextMixin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/ContextMixin.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/EIP712Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/EIP712Base.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/ERC20.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/IChildToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/IChildToken.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/Initializable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/Initializable.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/NativeMetaTransaction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/NativeMetaTransaction.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/UChildERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/UChildERC20.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/proxy/IERCProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/proxy/IERCProxy.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/proxy/Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/proxy/Proxy.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/proxy/UChildERC20Proxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/proxy/UChildERC20Proxy.sol -------------------------------------------------------------------------------- /network_contracts/polygon_contracts/proxy/UpgradableProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/network_contracts/polygon_contracts/proxy/UpgradableProxy.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/package.json -------------------------------------------------------------------------------- /private-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/private-provider.js -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/setup.py -------------------------------------------------------------------------------- /solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/solcover.js -------------------------------------------------------------------------------- /sphinx-documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/sphinx-documentation/Makefile -------------------------------------------------------------------------------- /sphinx-documentation/escape_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/sphinx-documentation/escape_code.py -------------------------------------------------------------------------------- /sphinx-documentation/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/sphinx-documentation/make.bat -------------------------------------------------------------------------------- /sphinx-documentation/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/sphinx-documentation/source/conf.py -------------------------------------------------------------------------------- /sphinx-documentation/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/sphinx-documentation/source/index.rst -------------------------------------------------------------------------------- /static/human.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/static/human.svg -------------------------------------------------------------------------------- /test/Escrow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/Escrow.test.js -------------------------------------------------------------------------------- /test/EscrowFactory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/EscrowFactory.test.js -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/hmt_escrow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/hmt_escrow/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/hmt_escrow/crypto/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/crypto/test_crypto.py -------------------------------------------------------------------------------- /test/hmt_escrow/crypto/test_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/crypto/test_encryption.py -------------------------------------------------------------------------------- /test/hmt_escrow/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/hmt_escrow/storage/test_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/storage/test_bucket.py -------------------------------------------------------------------------------- /test/hmt_escrow/storage/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/storage/test_storage.py -------------------------------------------------------------------------------- /test/hmt_escrow/test_eth_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/test_eth_bridge.py -------------------------------------------------------------------------------- /test/hmt_escrow/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/test_job.py -------------------------------------------------------------------------------- /test/hmt_escrow/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/test_utils.py -------------------------------------------------------------------------------- /test/hmt_escrow/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/utils/__init__.py -------------------------------------------------------------------------------- /test/hmt_escrow/utils/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/utils/job.py -------------------------------------------------------------------------------- /test/hmt_escrow/utils/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/hmt_escrow/utils/manifest.py -------------------------------------------------------------------------------- /test/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/test/utils/helpers.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/truffle.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanprotocol/hmt-escrow/HEAD/yarn.lock --------------------------------------------------------------------------------