@sorandomains/holder 0.3.0 → 0.3.1
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.
- package/README.md +5 -5
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# @sorandomains/holder
|
|
2
2
|
|
|
3
|
-
Version 0.3.
|
|
3
|
+
Version 0.3.1 targets Stellar SDK17 (`>=17 <18`). ASCII names
|
|
4
4
|
and labels are validated before lowercase normalization; Unicode lookalikes are
|
|
5
5
|
rejected. Writes continue to target the owning Registry/Registrar/Resolver. Universal
|
|
6
|
-
Lookup is the read entry point in `@sorandomains/lookup` 0.5.
|
|
6
|
+
Lookup is the read entry point in `@sorandomains/lookup` 0.5.1.
|
|
7
7
|
|
|
8
8
|
Your Soran name, managed with your own key. The third piece of the SDK
|
|
9
9
|
trilogy: [`@sorandomains/lookup`](https://www.npmjs.com/package/@sorandomains/lookup)
|
|
@@ -115,12 +115,12 @@ supply the matching `primaryId` explicitly.
|
|
|
115
115
|
|
|
116
116
|
## Verified testnet deployment
|
|
117
117
|
|
|
118
|
-
Verified on 2026-09-05 at ledger
|
|
118
|
+
Verified on 2026-09-05 at ledger 4520986. Network passphrase: `Test SDF Network ; September 2015`.
|
|
119
119
|
|
|
120
120
|
| Contract | Address |
|
|
121
121
|
|---|---|
|
|
122
|
-
| Registry | `
|
|
123
|
-
| Primary | `
|
|
122
|
+
| Registry | `CDSORANCV3IFF3MKHJ7KI4MKEJOJZFMTDVAZCD5XFOR4WTGNXJJNOKQE` |
|
|
123
|
+
| Primary | `CCSORANOADXKLSW5CUANBW5WZFVCNZ5KZ4KNMIUWOZOES3LXYRUYZ56X` |
|
|
124
124
|
|
|
125
125
|
Mainnet has no deployment preset. Custom networks must supply their own verified
|
|
126
126
|
addresses. Universal Lookup upgrades remain immediately executable; an address
|
package/dist/index.d.ts
CHANGED
|
@@ -37,8 +37,8 @@ export declare const DEPLOYMENTS: {
|
|
|
37
37
|
readonly testnet: {
|
|
38
38
|
readonly rpcUrl: "https://soroban-testnet.stellar.org";
|
|
39
39
|
readonly passphrase: string;
|
|
40
|
-
readonly registryId: "
|
|
41
|
-
readonly primaryId: "
|
|
40
|
+
readonly registryId: "CDSORANCV3IFF3MKHJ7KI4MKEJOJZFMTDVAZCD5XFOR4WTGNXJJNOKQE";
|
|
41
|
+
readonly primaryId: "CCSORANOADXKLSW5CUANBW5WZFVCNZ5KZ4KNMIUWOZOES3LXYRUYZ56X";
|
|
42
42
|
};
|
|
43
43
|
};
|
|
44
44
|
/** Same shape as the owner SDK's signer — wallet-kit compatible. */
|
package/dist/index.js
CHANGED
|
@@ -41,8 +41,8 @@ export const DEPLOYMENTS = {
|
|
|
41
41
|
testnet: {
|
|
42
42
|
rpcUrl: "https://soroban-testnet.stellar.org",
|
|
43
43
|
passphrase: Networks.TESTNET,
|
|
44
|
-
registryId: "
|
|
45
|
-
primaryId: "
|
|
44
|
+
registryId: "CDSORANCV3IFF3MKHJ7KI4MKEJOJZFMTDVAZCD5XFOR4WTGNXJJNOKQE",
|
|
45
|
+
primaryId: "CCSORANOADXKLSW5CUANBW5WZFVCNZ5KZ4KNMIUWOZOES3LXYRUYZ56X",
|
|
46
46
|
},
|
|
47
47
|
};
|
|
48
48
|
/** A TxSigner over a raw secret key — for scripts and backends. */
|
package/package.json
CHANGED