Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc updates and devex #52

Merged
merged 4 commits into from
Mar 1, 2025
Merged
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ Sources of latency:

## Developing

### IDE

For your IDE to resolve all the files, run `yarn codegen && yarn build`.

### With A3P

1. Start up an A3P instance
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"@agoric/smart-wallet": "0.5.4-u18.5",
"@cosmjs/stargate": "^0.32.4",
"@endo/eventual-send": "^1.2.8",
"@subql/cli": "^5.4.0",
"@subql/node-cosmos": "^4.3.0",
"@subql/cli": "^5.7.0",
"@subql/node-cosmos": "^4.5.1",
"@subql/testing": "latest",
"execa": "^9.5.2",
"prettier": "^3.4.2",
Expand All @@ -39,8 +39,8 @@
"typescript": "^5.7.3"
},
"dependencies": {
"@subql/types-cosmos": "^4.0.0",
"@subql/utils": "^2.17.0",
"@subql/types-cosmos": "^4.1.0",
"@subql/utils": "^2.18.0",
"@types/node": "^17.0.45",
"bech32": "^2.0.0",
"js-sha256": "^0.11.0",
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"declaration": true,
"importHelpers": true,
"resolveJsonModule": true,
"strict": true,
// UNTIL https://github.com/Agoric/agoric-sdk/issues/11038
"noImplicitAny": false,
"module": "commonjs",
"outDir": "dist",
"rootDir": "src",
Expand Down
11 changes: 2 additions & 9 deletions typecheck.tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"strict": true,
"noImplicitAny": false,
// @agoric/cosmic-proto only works in ESM but the @subql/cli only works in CJS.
// This allows them to work together, but only after the `codegen` step.
"module": "preserve",
"moduleResolution": "bundler",
// UNTIL package-json-type and ejs packages have types
"skipLibCheck": true,
"lib": ["es2021"]
},
"exclude": [
// generated code has typecheck error
"src/types/proto-interfaces/**"
]
"skipLibCheck": true
}
}
Loading
Loading