Skip to content

Commit

Permalink
Add avida-ts multi arch support & node >=20.0.0 requirement to packag…
Browse files Browse the repository at this point in the history
…e.json
  • Loading branch information
iorveth committed Aug 23, 2024
1 parent d8bfaaf commit 2149223
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
8 changes: 4 additions & 4 deletions avida-ts/docker/docker-compose.local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
cheqd-node:
image: ghcr.io/nymlab/cheqd-node:v2.0.1-arm64
image: ghcr.io/nymlab/cheqd-node-multiarch:v2.0.1
ports:
- target: 9090
published: 9090 # grpc
Expand All @@ -17,7 +17,7 @@ services:
- ../env/local.env

cheqd-resource-uploader:
image: ghcr.io/nymlab/cheqd-node:v2.0.1-arm64
image: ghcr.io/nymlab/cheqd-node-multiarch:v2.0.1
volumes:
- ./scripts/:/tmp/scripts/
- ./cheqd-resource-artifacts/:/tmp/cheqd-resource-artifacts
Expand All @@ -28,7 +28,7 @@ services:
- NODE=http://cheqd-node:26657

neutron-node:
image: ghcr.io/nymlab/neutron-standalone:v3.0.5-arm64
image: ghcr.io/nymlab/neutron-standalone-multiarch:v3.0.5
ports:
- target: 9090
published: 9080 # grpc
Expand All @@ -44,7 +44,7 @@ services:
# deployer: neutron demo_2
# salt: ascii avida-local
neutron-deployer:
image: ghcr.io/nymlab/neutron-standalone:v3.0.5-arm64
image: ghcr.io/nymlab/neutron-standalone-multiarch:v3.0.5
volumes:
- ./../../artifacts/:/tmp/artifacts/
- ../:/tmp/app/
Expand Down
7 changes: 5 additions & 2 deletions avida-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"setup": "pnpm run reset && pnpm install",
"reset": "pnpm dlx rimraf --glob ./**/node_modules",
"build": "NODE_ENV=production pnpm run build:txutils && pnpm run build:types",
"local-demo": "node --env-file=./env/local.contract ./scripts/local-e2e-demo.mjs",
"local-demo": "node --env-file=./env/local.contract ./scripts/local-e2e-demo.mjs",
"build:txutils": "tsc -p ./packages/avida-tx-utils && tsc-alias -p ./packages/avida-tx-utils/tsconfig.json",
"build:types": "node ./scripts/gen-contract-types.mjs && tsc -p ./packages/avida-common-types && tsc-alias -p ./packages/avida-common-types/tsconfig.json",
"scripts-type-check": "tsc --pretty --noEmit --project tsconfig.base.json",
Expand Down Expand Up @@ -55,5 +55,8 @@
},
"keywords": [],
"author": "",
"license": "ISC"
"license": "ISC",
"engines" : {
"node" : ">=20.0.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ export type QueryMsg1 = {
get_verifier_address: {
[k: string]: unknown;
};
} | {
get_route_requirements: {
route_id: number;
[k: string]: unknown;
};
};
export interface GetVerifierResponse {
verifier: string;
Expand Down

0 comments on commit 2149223

Please sign in to comment.