solana-studio 0.5.3 → 0.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +11 -3
- data/lib/solana_studio/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7299124717f5b97e84405647c98eb7f2836c13161972cec30e60bd75217e5eb
|
|
4
|
+
data.tar.gz: 3ffb942227ac8796dd20de82640c5fb4a24067771e10267a919f664fa76d44ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca926cfa2c3f2deb669484fe4795c7b6983ea98ab77e4181c0167aa73233081f9d44690416f65bed4f3dc4a9d29dfef3b2d3cc49789e5c46fd7347332f46cf79
|
|
7
|
+
data.tar.gz: 6d7967854d33277d6243da1835d9f15fa4c5cb92a208abf38ebf0e5588c6ccb6d666591c01bc39074797d79c2db0b140e5545dd8b1328f5f4437c5c95b02cfcf
|
data/README.md
CHANGED
|
@@ -309,10 +309,18 @@ code left over from a shelved tool.
|
|
|
309
309
|
|
|
310
310
|
### The browser lane
|
|
311
311
|
|
|
312
|
-
The Ruby suite cannot see
|
|
313
|
-
`network_guard.js` actually **runs** in a browser,
|
|
312
|
+
The Ruby suite cannot see three things this gem ships: whether
|
|
313
|
+
`network_guard.js` actually **runs** in a browser, whether
|
|
314
314
|
`_network_mismatch.html.erb` **renders** (rendering it needs studio-engine's modal
|
|
315
|
-
blocks and a view context, so `test/views_test.rb` only proves it compiles)
|
|
315
|
+
blocks and a view context, so `test/views_test.rb` only proves it compiles), and
|
|
316
|
+
whether the base58 encoder inlined in `_phantom_deeplink.html.erb` produces the
|
|
317
|
+
**right bytes**. That last one is signing-path code: the deep link encodes the
|
|
318
|
+
payload a user signs inside Phantom, so an encoder that mis-encodes yields a
|
|
319
|
+
signature over the wrong bytes. The failure is invisible to a String assertion —
|
|
320
|
+
the source is identical either way — and lands when someone taps Connect on a
|
|
321
|
+
phone. `e2e/phantom_deeplink.spec.js` decodes the emitted payload with its own
|
|
322
|
+
independent implementation and compares bytes, rather than checking the parameter
|
|
323
|
+
merely looks like base58.
|
|
316
324
|
|
|
317
325
|
```bash
|
|
318
326
|
npm ci && npx playwright install chromium
|
|
@@ -16,5 +16,5 @@ module SolanaStudio
|
|
|
16
16
|
# through the normal cycle. Splitting the version out is the same shape
|
|
17
17
|
# studio-engine already uses (lib/studio/version.rb) and hands each file back
|
|
18
18
|
# to its real owner: this one to the release, the gemspec to the PR.
|
|
19
|
-
VERSION = "0.5.
|
|
19
|
+
VERSION = "0.5.5"
|
|
20
20
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solana-studio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex McRitchie
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ed25519
|