Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .changeset/registry-username-display.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
"playground-cli": patch
---

`dot init` now shows the user's registry username (the handle set on the
playground.dot profile) when one has been claimed, falling back to the
People-parachain identity name and then to the H160, same precedence as
the playground-app. Also surfaces an "account in use" row with the
derivation path + H160 so the user can verify the exact account that
signs on their behalf.

`dot deploy --playground` now matches the v11 registry contract's 7-arg
`publish()` signature (adds `modded_from`, `is_moddable`, `is_dev_signer`),
which unblocks publishes against the freshly deployed playground registry
on Paseo Asset Hub Next. `cdm.json` is refreshed to the v11 manifest; the
runtime keeps resolving the live contract address from the on-chain
meta-registry.
15 changes: 11 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,18 @@ jobs:
run: |
sudo apt-get update -q
sudo apt-get install -y -q --no-install-recommends build-essential pkg-config
if ! command -v rustup >/dev/null 2>&1; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
fi
# Parity self-hosted runners ship rustup on PATH at a
# non-standard location (not $HOME/.cargo). The previous
# guarded install left $HOME/.cargo/env missing, then
# `source` aborted the step under `set -e`. Run rustup-init
# unconditionally (it's idempotent and `-y` suppresses
# prompts), and source the env file only if it exists.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain none
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
source "$HOME/.cargo/env"
if [ -f "$HOME/.cargo/env" ]; then
# shellcheck disable=SC1091
source "$HOME/.cargo/env"
fi
rustup toolchain install nightly --profile minimal --component rust-src
rustup default nightly
curl -fsSL https://raw.githubusercontent.com/paritytech/contract-dependency-manager/main/install.sh | bash
Expand Down
Loading