Skip to content

Commit

Permalink
Update the playground for the latest releases and increase version nu…
Browse files Browse the repository at this point in the history
…mber for a new release.
  • Loading branch information
wyhaines committed Jan 6, 2024
1 parent 80c139c commit d984fe2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.4
0.3.0
2 changes: 1 addition & 1 deletion shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.0
shards:
ameba:
git: https://github.com/crystal-ameba/ameba.git
version: 1.5.0
version: 1.6.0

config:
git: https://github.com/wyhaines/config.cr.git
Expand Down
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: topos-playground.cr
version: 0.2.4
version: 0.3.0

authors:
- Kirk Haines <[email protected]>
Expand Down Expand Up @@ -29,4 +29,4 @@ dependencies:
development_dependencies:
ameba:
github: crystal-ameba/ameba
version: ~> 1.5.0
version: ~> 1.6.0
6 changes: 3 additions & 3 deletions src/topos-playground/command/start.cr
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ class ToposPlayground::Command::Start < ToposPlayground::Command
{
org: "topos-protocol",
repo: "local-erc20-messaging-infra",
branch: "v0.1.8",
branch: "v2.3.2",
},
# FRONTEND_REF in the official version
{
org: "topos-protocol",
repo: "dapp-frontend-erc20-messaging",
branch: "v0.1.6",
branch: "v1.2.0",
},
# EXECUTOR_SERVICE_REF in the official version
{
org: "topos-protocol",
repo: "executor-service",
branch: "v0.2.1",
branch: "v1.1.0",
},
}

Expand Down
11 changes: 5 additions & 6 deletions src/topos-playground/env/dapp-frontend.cr
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ class ToposPlayground
def content
<<-EENV.gsub(/\$(\w+)/) { |var| ENV[var]?.to_s }
VITE_EXECUTOR_SERVICE_ENDPOINT=http://localhost:3000
VITE_TOPOS_SUBNET_ENDPOINT=localhost:10002
VITE_ELASTIC_APM_ENDPOINT=http://example.com
# VITE_TRACING_OTEL_COLLECTOR_ENDPOINT=https://otel-collector.telemetry.devnet-1.topos.technology/v1/traces
VITE_TRACING_SERVICE_NAME=dapp-frontend-erc20-messaging
VITE_TRACING_SERVICE_VERSION=topos-playground
#VITE_TRACING_SERVICE_VERSION=0.1.0
VITE_TOPOS_SUBNET_ENDPOINT_HTTP=http://localhost:10002
VITE_TOPOS_SUBNET_ENDPOINT_WS=ws://localhost:10002/ws
VITE_OTEL_EXPORTER_OTLP_ENDPOINT=http://example.com
VITE_OTEL_SERVICE_NAME=dapp-frontend-erc20-messaging
VITE_OTEL_SERVICE_VERSION=topos-playground
# Addresses
VITE_TOPOS_CORE_PROXY_CONTRACT_ADDRESS=$TOPOS_CORE_PROXY_CONTRACT_ADDRESS
Expand Down
2 changes: 1 addition & 1 deletion src/topos-playground/env/executor-service.cr
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ToposPlayground
AUTH0_ISSUER_URL=https://dev-z8x4rhzfosi03fqx.us.auth0.com/
REDIS_HOST=localhost
REDIS_PORT=6379
TOPOS_SUBNET_ENDPOINT=localhost:10002
TOPOS_SUBNET_ENDPOINT_WS=ws://localhost:10002/ws
EENV
Expand Down

0 comments on commit d984fe2

Please sign in to comment.