This repository was archived by the owner on Jul 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed
Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ services:
5555 volumes :
5656 - ' ./docker/chain-entry.sh:/chain-entry.sh'
5757 entrypoint : ' /chain-entry.sh'
58- command : ['--alice --chain dev']
58+ command : ['--bob --chain dev']
5959
6060 subquery :
6161 image : ${SUBQUERY_INDEXER_IMAGE}
Original file line number Diff line number Diff line change 1+ CHAIN_IMAGE = polymeshassociation/polymesh-ci:latest-ci-runtime-docker-image-debian
2+ SUBQUERY_INDEXER_IMAGE = polymeshassociation/polymesh-subquery:v18.0.2
3+
4+ SUBQUERY_QUERY_IMAGE = onfinality/subql-query:v2.11.0
5+ REST_IMAGE = polymeshassociation/polymesh-rest-api:v7.0.0
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ SCRIPT_DIR=$(dirname "$0")
77IMAGE_REPO=polymeshassociation/polymesh
88
99# Chain version to test
10- VERSION=' 7.0 .0'
10+ VERSION=' 7.3 .0'
1111
1212# service manifest
1313ENV_FILE=" $SCRIPT_DIR /../envs/$VERSION .env"
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ const prefixedDidLength = 66; // 64 bytes + 2 for `0x`
22
33export const wellKnown = {
44 alice : {
5- did : '0x01 ' . padEnd ( prefixedDidLength , '0' ) ,
6- mnemonic : '//Alice ' ,
5+ did : '0x04 ' . padEnd ( prefixedDidLength , '0' ) ,
6+ mnemonic : '//Bob ' ,
77 } ,
88} as const ;
99
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ let sdk: Polymesh;
1313export async function getPolymeshSdk ( ) : Promise < Polymesh > {
1414 // Note, different signing managers can be found [here](https://github.com/PolymeshAssociation/signing-managers#projects)
1515 const signingManager = await LocalSigningManager . create ( {
16- accounts : [ { uri : '//Alice ' } ] ,
16+ accounts : [ { uri : '//Bob ' } ] ,
1717 } ) ;
1818
1919 if ( ! sdk ) {
You can’t perform that action at this time.
0 commit comments