-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Migrated the chain from polkadot to `People Chain`. - Resolves #130 and resolves polkadot-fellows/runtimes#394 - Upgraded project to use PAPI (it now has a `.papi` directory). - Removed slim node docker image and bundled everything together - Polkadot-API depends on some dependencies that `ncc` is not bundling together so we need to keep the `node_modules` (like `@polkadot-api/metadata-compatibility`) - Updated to version `2.6.0` --------- Co-authored-by: cornholio <[email protected]>
- Loading branch information
1 parent
4d1f40d
commit b010f2e
Showing
11 changed files
with
1,475 additions
and
635 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
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.14257783844949306470", | ||
"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": "*" | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
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,14 @@ | ||
{ | ||
"version": 0, | ||
"descriptorPath": ".papi/descriptors", | ||
"entries": { | ||
"collectives": { | ||
"wsUrl": "wss://polkadot-collectives-rpc.polkadot.io", | ||
"metadata": ".papi/metadata/collectives.scale" | ||
}, | ||
"people": { | ||
"wsUrl": "wss://polkadot-people-rpc.polkadot.io", | ||
"metadata": ".papi/metadata/people.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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "review-bot", | ||
"version": "2.5.0", | ||
"version": "2.6.0", | ||
"description": "Have custom review rules for PRs with auto assignment", | ||
"main": "src/index.ts", | ||
"scripts": { | ||
|
@@ -9,7 +9,8 @@ | |
"cli": "ncc build src/cli.ts -o dist-cli && node dist-cli", | ||
"test": "jest", | ||
"fix": "npx eslint --fix 'src/**/*.ts' && npx prettier --write 'src/**/*.{ts,yml}'", | ||
"lint": "npx eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.{ts,yml}'" | ||
"lint": "npx eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.{ts,yml}'", | ||
"postinstall": "papi" | ||
}, | ||
"engines": { | ||
"node": ">=22.0.0" | ||
|
@@ -38,9 +39,14 @@ | |
"@actions/core": "^1.10.1", | ||
"@actions/github": "^6.0.0", | ||
"@eng-automation/js": "^2.2.0", | ||
"@polkadot/api": "^11.3.1", | ||
"@polkadot-api/descriptors": "file:.papi/descriptors", | ||
"joi": "^17.13.1", | ||
"polkadot-api": "^0.12.0", | ||
"smoldot": "^2.0.29", | ||
"yaml": "^2.3.4" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"resolutions": { | ||
"@polkadot-api/descriptors": "portal:./.papi/descriptors" | ||
} | ||
} |
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.