solana-studio 0.4.3 → 0.4.4
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/lib/solana/transaction.rb +4 -1
- data/lib/solana_studio.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: cae5d5807d954cbf5b077cb39c210fced82fa2e823c877c4897b2a796ff517ad
|
|
4
|
+
data.tar.gz: 78a66eaeb6a45f305b5f5cffaf2c884337921641b45b000f73db66b4bb755397
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79b1a41df100c355db139e9542d457cc2a093c88017ac1b26b3360da1eb45babc0706b5ccf8b27f1b59e3021516ea67dd8b2fb4fc0eaec6a156158f5c64c8630
|
|
7
|
+
data.tar.gz: d6fdb39c569d0e950dabd14680b85508d64ba396ef10fac8ccde8a20f10fd6b2511cff8b1e651accb6043e9a5102c61523b19e5c0782d6fcff39959a613b3155
|
data/lib/solana/transaction.rb
CHANGED
|
@@ -110,7 +110,10 @@ module Solana
|
|
|
110
110
|
# additional_signers: array of pubkey bytes (32-byte strings) that will sign later.
|
|
111
111
|
def serialize_partial(additional_signers: [])
|
|
112
112
|
raise "No blockhash set" unless @recent_blockhash
|
|
113
|
-
|
|
113
|
+
# A fully KEYLESS build (zero local signers, all slots filled by external
|
|
114
|
+
# additional_signers) is legitimate for multi-party coordination where the
|
|
115
|
+
# server never holds a key — only require SOME signer is accounted for.
|
|
116
|
+
raise "No signers" if @signers.empty? && additional_signers.empty?
|
|
114
117
|
raise "No instructions" if @instructions.empty?
|
|
115
118
|
|
|
116
119
|
# OPSEC-043: keep additional signers in a local — never an instance ivar.
|
data/lib/solana_studio.rb
CHANGED
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.4.
|
|
4
|
+
version: 0.4.4
|
|
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-
|
|
11
|
+
date: 2026-06-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ed25519
|