-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06040bf
commit 5850380
Showing
17 changed files
with
722 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* | ||
!.gitignore | ||
!package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"version": "0.1.0-autogenerated.13128332760513449832", | ||
"name": "@polkadot-api/descriptors", | ||
"files": [ | ||
"dist" | ||
], | ||
"exports": { | ||
".": { | ||
"module": "./dist/index.mjs", | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.js", | ||
"default": "./dist/index.js" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"browser": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"sideEffects": false, | ||
"peerDependencies": { | ||
"polkadot-api": "*" | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"version": 0, | ||
"descriptorPath": ".papi/descriptors", | ||
"entries": { | ||
"rococo": { | ||
"chain": "rococo_v2_2", | ||
"metadata": ".papi/metadata/rococo.scale" | ||
}, | ||
"westend": { | ||
"chain": "westend2", | ||
"metadata": ".papi/metadata/westend.scale" | ||
}, | ||
"e2e_relaychain": { | ||
"wsUrl": "ws://127.0.0.1:9933", | ||
"metadata": ".papi/metadata/e2e_relaychain.scale" | ||
}, | ||
"e2e_parachain": { | ||
"wsUrl": "ws://127.0.0.1:9934", | ||
"metadata": ".papi/metadata/e2e_parachain.scale" | ||
}, | ||
"versi": { | ||
"wsUrl": "wss://versi-rpc-node-0.parity-versi.parity.io", | ||
"metadata": ".papi/metadata/versi.scale" | ||
}, | ||
"paseo": { | ||
"wsUrl": "wss://sys.dotters.network/paseo", | ||
"metadata": ".papi/metadata/paseo.scale" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
FROM docker.io/library/node:22-alpine3.20 | ||
|
||
RUN apk add --no-cache python3 make g++ | ||
FROM docker.io/library/node:22.6-alpine3.20 | ||
|
||
ARG VCS_REF=master | ||
ARG BUILD_DATE="" | ||
|
@@ -19,11 +17,12 @@ LABEL io.parity.image.authors="[email protected]" \ | |
WORKDIR /faucet | ||
|
||
COPY .yarn/ ./.yarn/ | ||
COPY src/papi/chains/data ./src/papi/chains/data | ||
COPY package.json env.faucet.config.json yarn.lock polkadot-api.json .yarnrc.yml ./ | ||
COPY .papi/ ./.papi/ | ||
COPY package.json env.faucet.config.json yarn.lock .yarnrc.yml ./ | ||
RUN yarn --immutable | ||
|
||
COPY . . | ||
RUN yarn papi | ||
RUN yarn build | ||
|
||
CMD yarn migrations:run && yarn start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.