Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
335 changes: 145 additions & 190 deletions .pnp.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarn/cache/@hapi-bourne-npm-3.0.0-9b2a238f08-2e2df62f6b.zip
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown

This file was deleted.

3 changes: 0 additions & 3 deletions .yarn/cache/accepts-npm-1.3.7-0dc9de65aa-74c5fc6ad2.zip

This file was deleted.

3 changes: 3 additions & 0 deletions .yarn/cache/accepts-npm-1.3.8-9a812371c9-3a35c5f558.zip
Git LFS file not shown

This file was deleted.

3 changes: 0 additions & 3 deletions .yarn/cache/co-body-npm-6.1.0-8102b96671-54f5aa6e8d.zip

This file was deleted.

3 changes: 3 additions & 0 deletions .yarn/cache/co-body-npm-6.2.0-84e35e7662-3a320d8b32.zip
Git LFS file not shown
3 changes: 0 additions & 3 deletions .yarn/cache/co-npm-4.6.0-03f2d1feb6-c0e85ea0ca.zip

This file was deleted.

This file was deleted.

Git LFS file not shown
3 changes: 0 additions & 3 deletions .yarn/cache/copy-to-npm-2.0.1-474b7b678b-ee10fa7ab2.zip

This file was deleted.

3 changes: 3 additions & 0 deletions .yarn/cache/encodeurl-npm-2.0.0-3660bcc92a-5d317306ac.zip
Git LFS file not shown
3 changes: 0 additions & 3 deletions .yarn/cache/http-assert-npm-1.4.1-cabfc41ff3-c969f684d5.zip

This file was deleted.

3 changes: 3 additions & 0 deletions .yarn/cache/http-assert-npm-1.5.0-bf7ea4ffcf-7b4e631114.zip
Git LFS file not shown
3 changes: 0 additions & 3 deletions .yarn/cache/http-errors-npm-1.7.3-f6dc83b082-5c3443c340.zip

This file was deleted.

3 changes: 0 additions & 3 deletions .yarn/cache/http-errors-npm-1.8.0-4399ea3b8d-2deb37be07.zip

This file was deleted.

3 changes: 3 additions & 0 deletions .yarn/cache/http-errors-npm-1.8.1-fb60d9f6ae-f01aeecd76.zip
Git LFS file not shown

This file was deleted.

3 changes: 0 additions & 3 deletions .yarn/cache/koa-convert-npm-2.0.0-d709eca55c-d3e243cecc.zip

This file was deleted.

3 changes: 0 additions & 3 deletions .yarn/cache/koa-npm-2.16.1-7f26717794-66beb2e4d7.zip

This file was deleted.

3 changes: 3 additions & 0 deletions .yarn/cache/koa-npm-3.0.3-69f0f9bdfc-596472cb6d.zip
Git LFS file not shown
3 changes: 3 additions & 0 deletions .yarn/cache/media-typer-npm-1.1.0-eccc8b846d-7b4baa40b2.zip
Git LFS file not shown
3 changes: 3 additions & 0 deletions .yarn/cache/mime-db-npm-1.54.0-82cccb9d70-8d907917bc.zip
Git LFS file not shown
3 changes: 3 additions & 0 deletions .yarn/cache/mime-types-npm-3.0.1-20b43499d0-bd8c20d369.zip
Git LFS file not shown
3 changes: 0 additions & 3 deletions .yarn/cache/negotiator-npm-0.6.2-ba538e167a-cda4955b5a.zip

This file was deleted.

3 changes: 0 additions & 3 deletions .yarn/cache/only-npm-0.0.2-122402a3f9-d26b134783.zip

This file was deleted.

This file was deleted.

3 changes: 3 additions & 0 deletions .yarn/cache/statuses-npm-2.0.2-2d84c63b8c-a9947d98ad.zip
Git LFS file not shown
3 changes: 0 additions & 3 deletions .yarn/cache/toidentifier-npm-1.0.0-5dad252f90-27a37b8b21.zip

This file was deleted.

3 changes: 3 additions & 0 deletions .yarn/cache/type-is-npm-2.0.1-8ef194d26e-7f7ec0a060.zip
Git LFS file not shown
3 changes: 0 additions & 3 deletions .yarn/cache/ylru-npm-1.2.1-4471986a45-8e5bb5f2b4.zip

This file was deleted.

5 changes: 2 additions & 3 deletions packages/faucet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,14 @@
"@cosmjs/proto-signing": "workspace:^",
"@cosmjs/stargate": "workspace:^",
"@cosmjs/utils": "workspace:^",
"@koa/bodyparser": "^6.0",
"@koa/cors": "^5.0",
"koa": "^2.16.1",
"koa-bodyparser": "^4.3"
"koa": "^3.0.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jasmine": "^4",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3",
"@types/koa__cors": "^3.3",
"jasmine": "^4",
"jasmine-spec-reporter": "^6",
Expand Down
2 changes: 1 addition & 1 deletion packages/faucet/src/api/webserver.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import bodyParser from "@koa/bodyparser";
import cors from "@koa/cors";
// eslint-disable-next-line @typescript-eslint/naming-convention
import Koa from "koa";
import bodyParser from "koa-bodyparser";

import { isValidAddress } from "../addresses";
import * as constants from "../constants";
Expand Down
Loading
Loading