Skip to content

Commit

Permalink
fix: update contracts images
Browse files Browse the repository at this point in the history
  • Loading branch information
yiweichi committed Nov 28, 2024
1 parent 36b7bef commit 09be348
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ DESCRIPTION
EXAMPLES
$ scrollsdk setup configs
$ scrollsdk setup configs --image-tag gen-configs-8ff2948aa2b9cbd24a7644b060097765a6faee10
$ scrollsdk setup configs --image-tag gen-configs-64934888f4cd002e77414a8e62812f70c00c5937
$ scrollsdk setup configs --configs-dir custom-configs
```
Expand Down Expand Up @@ -717,7 +717,7 @@ DESCRIPTION
EXAMPLES
$ scrollsdk setup verify-contracts
$ scrollsdk setup verify-contracts --image-tag verify-8ff2948aa2b9cbd24a7644b060097765a6faee10
$ scrollsdk setup verify-contracts --image-tag verify-64934888f4cd002e77414a8e62812f70c00c5937
```

_See code: [src/commands/setup/verify-contracts.ts](https://github.com/scroll-tech/scroll-sdk-cli/blob/v0.1.1/src/commands/setup/verify-contracts.ts)_
Expand Down
4 changes: 2 additions & 2 deletions src/commands/setup/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default class SetupConfigs extends Command {

static override examples = [
'<%= config.bin %> <%= command.id %>',
'<%= config.bin %> <%= command.id %> --image-tag gen-configs-8ff2948aa2b9cbd24a7644b060097765a6faee10',
'<%= config.bin %> <%= command.id %> --image-tag gen-configs-64934888f4cd002e77414a8e62812f70c00c5937',
'<%= config.bin %> <%= command.id %> --configs-dir custom-configs',
]

Expand Down Expand Up @@ -465,7 +465,7 @@ export default class SetupConfigs extends Command {
}

private async getDockerImageTag(providedTag: string | undefined): Promise<string> {
const defaultTag = 'gen-configs-8ff2948aa2b9cbd24a7644b060097765a6faee10'
const defaultTag = 'gen-configs-64934888f4cd002e77414a8e62812f70c00c5937'

if (!providedTag) {
return defaultTag
Expand Down
4 changes: 2 additions & 2 deletions src/commands/setup/verify-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default class ContractsVerification extends Command {

static override examples = [
'<%= config.bin %> <%= command.id %>',
'<%= config.bin %> <%= command.id %> --image-tag verify-8ff2948aa2b9cbd24a7644b060097765a6faee10',
'<%= config.bin %> <%= command.id %> --image-tag verify-64934888f4cd002e77414a8e62812f70c00c5937',
]

static override flags = {
Expand All @@ -34,7 +34,7 @@ export default class ContractsVerification extends Command {
}

private async getDockerImageTag(providedTag: string | undefined): Promise<string> {
const defaultTag = 'verify-8ff2948aa2b9cbd24a7644b060097765a6faee10'
const defaultTag = 'verify-64934888f4cd002e77414a8e62812f70c00c5937'

if (!providedTag) {
return defaultTag
Expand Down

0 comments on commit 09be348

Please sign in to comment.