@misofm/partyos 0.1.0 → 0.2.0
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 +1 -0
- package/dist/deployments.d.ts +1 -1
- package/dist/deployments.js +1 -1
- package/package.json +1 -1
- package/src/deployments.ts +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@ bun add @misofm/partyos @mysten/sui
|
|
|
23
23
|
|
|
24
24
|
```ts
|
|
25
25
|
import { SuiGrpcClient } from "@mysten/sui/grpc";
|
|
26
|
+
import { Transaction } from "@mysten/sui/transactions";
|
|
26
27
|
import { partyos } from "@misofm/partyos";
|
|
27
28
|
|
|
28
29
|
const client = new SuiGrpcClient({ network: "testnet" }).$extend(partyos());
|
package/dist/deployments.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export type PartyDeployment = Readonly<Record<PartyosPackageName, string>>;
|
|
|
17
17
|
/** Verified immutable deployments bundled with this SDK release. */
|
|
18
18
|
export declare const PARTYOS_DEPLOYMENTS: Readonly<{
|
|
19
19
|
readonly testnet: Readonly<{
|
|
20
|
-
readonly partyos: "
|
|
20
|
+
readonly partyos: "0x342425da86c4389c1f5558013251f18017ead98414db5644569890ba3a4a434c";
|
|
21
21
|
}>;
|
|
22
22
|
}>;
|
|
23
23
|
/** Resolve a verified manifest, failing closed for unbundled networks. */
|
package/dist/deployments.js
CHANGED
|
@@ -12,7 +12,7 @@ const CANONICAL_PARTYOS_PACKAGE_NAMES = ["partyos"];
|
|
|
12
12
|
/** Verified immutable deployments bundled with this SDK release. */
|
|
13
13
|
export const PARTYOS_DEPLOYMENTS = Object.freeze({
|
|
14
14
|
testnet: Object.freeze({
|
|
15
|
-
partyos: "
|
|
15
|
+
partyos: "0x342425da86c4389c1f5558013251f18017ead98414db5644569890ba3a4a434c",
|
|
16
16
|
}),
|
|
17
17
|
});
|
|
18
18
|
/** Resolve a verified manifest, failing closed for unbundled networks. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@misofm/partyos",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"packageManager": "bun@1.4.0",
|
|
5
5
|
"description": "Typed bindings, queries, and PTB builders for the PartyOS object model (Party identity, admin caps, and group membership) on Sui.",
|
|
6
6
|
"license": "Apache-2.0",
|
package/src/deployments.ts
CHANGED
|
@@ -26,7 +26,7 @@ export type PartyDeployment = Readonly<Record<PartyosPackageName, string>>;
|
|
|
26
26
|
/** Verified immutable deployments bundled with this SDK release. */
|
|
27
27
|
export const PARTYOS_DEPLOYMENTS = Object.freeze({
|
|
28
28
|
testnet: Object.freeze({
|
|
29
|
-
partyos: "
|
|
29
|
+
partyos: "0x342425da86c4389c1f5558013251f18017ead98414db5644569890ba3a4a434c",
|
|
30
30
|
} as const),
|
|
31
31
|
} as const) satisfies Partial<Record<PartyosNetwork, PartyDeployment>>;
|
|
32
32
|
|