Skip to content

Commit

Permalink
Merge pull request #12 from nymlab/multi_arch_support
Browse files Browse the repository at this point in the history
Add avida-ts multi arch support & node >=20.0.0 requirement to packag…
  • Loading branch information
iorveth authored Aug 25, 2024
2 parents d8bfaaf + b3f2d1e commit fb6feb0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 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
5 changes: 4 additions & 1 deletion avida-ts/package.json
Original file line number Diff line number Diff line change
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 fb6feb0

Please sign in to comment.