Skip to content

Commit

Permalink
add option allow-unresolved-imports into config (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
ermalkaleci authored Dec 6, 2023
1 parent f242af3 commit 5012036
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions configs/moonbase-alpha.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
endpoint: wss://wss.api.moonbase.moonbeam.network
mock-signature-host: true
allow-unresolved-imports: true
block: ${env.MOONBASE_BLOCK_NUMBER}
db: ./db.sqlite

Expand Down
1 change: 1 addition & 0 deletions configs/moonbeam.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
endpoint: wss://wss.api.moonbeam.network
mock-signature-host: true
allow-unresolved-imports: true
block: ${env.MOONBEAM_BLOCK_NUMBER}
db: ./db.sqlite

Expand Down
1 change: 1 addition & 0 deletions configs/moonriver.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
endpoint: wss://wss.moonriver.moonbeam.network
mock-signature-host: true
allow-unresolved-imports: true
block: ${env.MOONRIVER_BLOCK_NUMBER}
db: ./db.sqlite

Expand Down
2 changes: 1 addition & 1 deletion executor/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@acala-network/chopsticks-executor",
"description": "Chopsticks executor",
"version": "0.9.4-5",
"version": "0.9.4-6",
"license": "Apache-2.0",
"type": "module",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/chopsticks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acala-network/chopsticks",
"version": "0.9.4-5",
"version": "0.9.4-6",
"author": "Acala Developers <hello@acala.network>",
"license": "Apache-2.0",
"bin": "./chopsticks.cjs",
Expand Down
1 change: 1 addition & 0 deletions packages/chopsticks/src/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const configSchema = z
block: z.union([z.string().length(66).startsWith('0x'), z.number(), z.null()]).optional(),
'build-block-mode': z.nativeEnum(BuildBlockMode).optional(),
'import-storage': z.any().optional(),
'allow-unresolved-imports': z.boolean().optional(),
'mock-signature-host': z.boolean().optional(),
'max-memory-block-count': z.number().optional(),
db: z.string().optional(),
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acala-network/chopsticks-core",
"version": "0.9.4-5",
"version": "0.9.4-6",
"author": "Acala Developers <hello@acala.network>",
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acala-network/chopsticks-db",
"version": "0.9.4-5",
"version": "0.9.4-6",
"author": "Acala Developers <hello@acala.network>",
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acala-network/chopsticks-testing",
"version": "0.9.4-5",
"version": "0.9.4-6",
"author": "Acala Developers <hello@acala.network>",
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acala-network/chopsticks-utils",
"version": "0.9.4-5",
"version": "0.9.4-6",
"author": "Acala Developers <hello@acala.network>",
"license": "Apache-2.0",
"type": "module",
Expand Down

0 comments on commit 5012036

Please sign in to comment.