Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit e51105f

Browse files
chore: 🤖 add improvements
1 parent dabc4f6 commit e51105f

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}

envs/7.3.0.env

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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

scripts/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SCRIPT_DIR=$(dirname "$0")
77
IMAGE_REPO=polymeshassociation/polymesh
88

99
# Chain version to test
10-
VERSION='7.0.0'
10+
VERSION='7.3.0'
1111

1212
# service manifest
1313
ENV_FILE="$SCRIPT_DIR/../envs/$VERSION.env"

src/consts.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ const prefixedDidLength = 66; // 64 bytes + 2 for `0x`
22

33
export 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

src/sdk/connect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let sdk: Polymesh;
1313
export 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) {

0 commit comments

Comments
 (0)