@mysten/wallet-standard 0.9.0 → 0.10.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.
Files changed (69) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/cjs/chains.js +38 -0
  3. package/dist/cjs/chains.js.map +7 -0
  4. package/dist/{detect.d.ts → cjs/detect.d.ts} +2 -2
  5. package/dist/{index.js → cjs/detect.js} +5 -39
  6. package/dist/cjs/detect.js.map +7 -0
  7. package/dist/{features → cjs/features}/index.d.ts +8 -8
  8. package/dist/cjs/features/index.js +22 -0
  9. package/dist/cjs/features/index.js.map +7 -0
  10. package/dist/{features → cjs/features}/suiSignAndExecuteTransactionBlock.d.ts +1 -1
  11. package/dist/cjs/features/suiSignAndExecuteTransactionBlock.js +17 -0
  12. package/dist/cjs/features/suiSignAndExecuteTransactionBlock.js.map +7 -0
  13. package/dist/cjs/features/suiSignMessage.js +17 -0
  14. package/dist/cjs/features/suiSignMessage.js.map +7 -0
  15. package/dist/cjs/features/suiSignPersonalMessage.js +17 -0
  16. package/dist/cjs/features/suiSignPersonalMessage.js.map +7 -0
  17. package/dist/{features → cjs/features}/suiSignTransactionBlock.d.ts +1 -1
  18. package/dist/cjs/features/suiSignTransactionBlock.js +17 -0
  19. package/dist/cjs/features/suiSignTransactionBlock.js.map +7 -0
  20. package/dist/cjs/index.d.ts +5 -0
  21. package/dist/cjs/index.js +22 -0
  22. package/dist/cjs/index.js.map +7 -0
  23. package/dist/cjs/package.json +5 -0
  24. package/dist/cjs/wallet.js +17 -0
  25. package/dist/cjs/wallet.js.map +7 -0
  26. package/dist/esm/chains.d.ts +10 -0
  27. package/dist/esm/chains.js +18 -0
  28. package/dist/esm/chains.js.map +7 -0
  29. package/dist/esm/detect.d.ts +7 -0
  30. package/dist/esm/detect.js +17 -0
  31. package/dist/esm/detect.js.map +7 -0
  32. package/dist/esm/features/index.d.ts +19 -0
  33. package/dist/esm/features/index.js +5 -0
  34. package/dist/esm/features/index.js.map +7 -0
  35. package/dist/esm/features/suiSignAndExecuteTransactionBlock.d.ts +31 -0
  36. package/dist/esm/features/suiSignAndExecuteTransactionBlock.js +1 -0
  37. package/dist/esm/features/suiSignAndExecuteTransactionBlock.js.map +7 -0
  38. package/dist/esm/features/suiSignMessage.d.ts +38 -0
  39. package/dist/esm/features/suiSignMessage.js +1 -0
  40. package/dist/esm/features/suiSignMessage.js.map +7 -0
  41. package/dist/esm/features/suiSignPersonalMessage.d.ts +28 -0
  42. package/dist/esm/features/suiSignPersonalMessage.js +1 -0
  43. package/dist/esm/features/suiSignPersonalMessage.js.map +7 -0
  44. package/dist/esm/features/suiSignTransactionBlock.d.ts +30 -0
  45. package/dist/esm/features/suiSignTransactionBlock.js +1 -0
  46. package/dist/esm/features/suiSignTransactionBlock.js.map +7 -0
  47. package/dist/esm/index.d.ts +5 -0
  48. package/dist/esm/index.js +5 -0
  49. package/dist/esm/index.js.map +7 -0
  50. package/dist/esm/package.json +5 -0
  51. package/dist/esm/wallet.d.ts +11 -0
  52. package/dist/esm/wallet.js +1 -0
  53. package/dist/esm/wallet.js.map +7 -0
  54. package/dist/tsconfig.esm.tsbuildinfo +1 -0
  55. package/dist/tsconfig.tsbuildinfo +1 -0
  56. package/package.json +13 -16
  57. package/src/detect.ts +2 -2
  58. package/src/features/index.ts +8 -8
  59. package/src/features/suiSignAndExecuteTransactionBlock.ts +1 -1
  60. package/src/features/suiSignTransactionBlock.ts +1 -1
  61. package/src/index.ts +4 -4
  62. package/dist/index.d.ts +0 -5
  63. package/dist/index.js.map +0 -1
  64. package/dist/index.mjs +0 -38
  65. package/dist/index.mjs.map +0 -1
  66. /package/dist/{chains.d.ts → cjs/chains.d.ts} +0 -0
  67. /package/dist/{features → cjs/features}/suiSignMessage.d.ts +0 -0
  68. /package/dist/{features → cjs/features}/suiSignPersonalMessage.d.ts +0 -0
  69. /package/dist/{wallet.d.ts → cjs/wallet.d.ts} +0 -0
@@ -0,0 +1,38 @@
1
+ import type { WalletAccount } from '@wallet-standard/core';
2
+ /**
3
+ * The latest API version of the signMessage API.
4
+ * @deprecated Wallets can still implement this method for compatibility, but this has been replaced by the `sui:signPersonalMessage` feature
5
+ */
6
+ export type SuiSignMessageVersion = '1.0.0';
7
+ /**
8
+ * A Wallet Standard feature for signing a personal message, and returning the
9
+ * message bytes that were signed, and message signature.
10
+ *
11
+ * @deprecated Wallets can still implement this method for compatibility, but this has been replaced by the `sui:signPersonalMessage` feature
12
+ */
13
+ export type SuiSignMessageFeature = {
14
+ /** Namespace for the feature. */
15
+ 'sui:signMessage': {
16
+ /** Version of the feature API. */
17
+ version: SuiSignMessageVersion;
18
+ signMessage: SuiSignMessageMethod;
19
+ };
20
+ };
21
+ /** @deprecated Wallets can still implement this method for compatibility, but this has been replaced by the `sui:signPersonalMessage` feature */
22
+ export type SuiSignMessageMethod = (input: SuiSignMessageInput) => Promise<SuiSignMessageOutput>;
23
+ /**
24
+ * Input for signing messages.
25
+ * @deprecated Wallets can still implement this method for compatibility, but this has been replaced by the `sui:signPersonalMessage` feature
26
+ */
27
+ export interface SuiSignMessageInput {
28
+ message: Uint8Array;
29
+ account: WalletAccount;
30
+ }
31
+ /**
32
+ * Output of signing messages.
33
+ * @deprecated Wallets can still implement this method for compatibility, but this has been replaced by the `sui:signPersonalMessage` feature
34
+ */
35
+ export interface SuiSignMessageOutput {
36
+ messageBytes: string;
37
+ signature: string;
38
+ }
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=suiSignMessage.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,28 @@
1
+ import type { WalletAccount } from '@wallet-standard/core';
2
+ /** The latest API version of the signPersonalMessage API. */
3
+ export type SuiSignPersonalMessageVersion = '1.0.0';
4
+ /**
5
+ * A Wallet Standard feature for signing a personal message, and returning the
6
+ * message bytes that were signed, and message signature.
7
+ */
8
+ export type SuiSignPersonalMessageFeature = {
9
+ /** Namespace for the feature. */
10
+ 'sui:signPersonalMessage': {
11
+ /** Version of the feature API. */
12
+ version: SuiSignPersonalMessageVersion;
13
+ signPersonalMessage: SuiSignPersonalMessageMethod;
14
+ };
15
+ };
16
+ export type SuiSignPersonalMessageMethod = (input: SuiSignPersonalMessageInput) => Promise<SuiSignPersonalMessageOutput>;
17
+ /** Input for signing personal messages. */
18
+ export interface SuiSignPersonalMessageInput {
19
+ message: Uint8Array;
20
+ account: WalletAccount;
21
+ }
22
+ /** Output of signing personal messages. */
23
+ export interface SuiSignPersonalMessageOutput extends SignedPersonalMessage {
24
+ }
25
+ export interface SignedPersonalMessage {
26
+ bytes: string;
27
+ signature: string;
28
+ }
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=suiSignPersonalMessage.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,30 @@
1
+ import type { TransactionBlock } from '@mysten/sui.js/transactions';
2
+ import type { IdentifierString, WalletAccount } from '@wallet-standard/core';
3
+ /** The latest API version of the signTransactionBlock API. */
4
+ export type SuiSignTransactionBlockVersion = '1.0.0';
5
+ /**
6
+ * A Wallet Standard feature for signing a transaction, and returning the
7
+ * serialized transaction and transaction signature.
8
+ */
9
+ export type SuiSignTransactionBlockFeature = {
10
+ /** Namespace for the feature. */
11
+ 'sui:signTransactionBlock': {
12
+ /** Version of the feature API. */
13
+ version: SuiSignTransactionBlockVersion;
14
+ signTransactionBlock: SuiSignTransactionBlockMethod;
15
+ };
16
+ };
17
+ export type SuiSignTransactionBlockMethod = (input: SuiSignTransactionBlockInput) => Promise<SuiSignTransactionBlockOutput>;
18
+ /** Input for signing transactions. */
19
+ export interface SuiSignTransactionBlockInput {
20
+ transactionBlock: TransactionBlock;
21
+ account: WalletAccount;
22
+ chain: IdentifierString;
23
+ }
24
+ /** Output of signing transactions. */
25
+ export interface SuiSignTransactionBlockOutput extends SignedTransactionBlock {
26
+ }
27
+ export interface SignedTransactionBlock {
28
+ transactionBlockBytes: string;
29
+ signature: string;
30
+ }
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=suiSignTransactionBlock.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,5 @@
1
+ export * from '@wallet-standard/core';
2
+ export type { Wallet } from './wallet.js';
3
+ export * from './features/index.js';
4
+ export * from './detect.js';
5
+ export * from './chains.js';
@@ -0,0 +1,5 @@
1
+ export * from "@wallet-standard/core";
2
+ export * from "./features/index.js";
3
+ export * from "./detect.js";
4
+ export * from "./chains.js";
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/index.ts"],
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport * from '@wallet-standard/core';\n\nexport type { Wallet } from './wallet.js';\nexport * from './features/index.js';\nexport * from './detect.js';\nexport * from './chains.js';\n"],
5
+ "mappings": "AAGA,cAAc;AAGd,cAAc;AACd,cAAc;AACd,cAAc;",
6
+ "names": []
7
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "private": true,
3
+ "type": "module",
4
+ "sideEffects": false
5
+ }
@@ -0,0 +1,11 @@
1
+ declare module '@wallet-standard/core' {
2
+ interface Wallet {
3
+ /**
4
+ * Unique identifier of the Wallet.
5
+ *
6
+ * If not provided, the wallet name will be used as the identifier.
7
+ */
8
+ readonly id?: string;
9
+ }
10
+ }
11
+ export type { Wallet } from '@wallet-standard/core';
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=wallet.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/chains.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.0.1/node_modules/@wallet-standard/base/lib/types/identifier.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.0.1/node_modules/@wallet-standard/base/lib/types/wallet.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.0.1/node_modules/@wallet-standard/base/lib/types/window.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.0.1/node_modules/@wallet-standard/base/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+app@1.0.1/node_modules/@wallet-standard/app/lib/types/wallets.d.ts","../../../node_modules/.pnpm/@wallet-standard+app@1.0.1/node_modules/@wallet-standard/app/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.0.3/node_modules/@wallet-standard/features/lib/types/connect.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.0.3/node_modules/@wallet-standard/features/lib/types/disconnect.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.0.3/node_modules/@wallet-standard/features/lib/types/events.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.0.3/node_modules/@wallet-standard/features/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.0.1/node_modules/@wallet-standard/wallet/lib/types/register.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.0.1/node_modules/@wallet-standard/wallet/lib/types/util.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.0.1/node_modules/@wallet-standard/wallet/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+core@1.0.3/node_modules/@wallet-standard/core/lib/types/index.d.ts","../../typescript/dist/cjs/client/rpc-websocket-client.d.ts","../../typescript/dist/cjs/client/http-transport.d.ts","../../typescript/dist/cjs/client/network.d.ts","../../typescript/dist/cjs/client/types/generated.d.ts","../../typescript/dist/cjs/client/types/chain.d.ts","../../typescript/dist/cjs/client/types/coins.d.ts","../../bcs/dist/cjs/b58.d.ts","../../bcs/dist/cjs/b64.d.ts","../../bcs/dist/cjs/reader.d.ts","../../bcs/dist/cjs/types.d.ts","../../bcs/dist/cjs/writer.d.ts","../../bcs/dist/cjs/bcs-type.d.ts","../../bcs/dist/cjs/bcs.d.ts","../../bcs/dist/cjs/hex.d.ts","../../bcs/dist/cjs/utils.d.ts","../../bcs/dist/cjs/legacy-registry.d.ts","../../bcs/dist/cjs/index.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/error.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/utils.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/struct.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/structs/coercions.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/structs/refinements.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/structs/types.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/structs/utilities.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/index.d.ts","../../typescript/dist/cjs/types/common.d.ts","../../typescript/dist/cjs/types/objects.d.ts","../../typescript/dist/cjs/bcs/type-tag-serializer.d.ts","../../typescript/dist/cjs/bcs/index.d.ts","../../typescript/dist/cjs/client/types/common.d.ts","../../typescript/dist/cjs/client/types/changes.d.ts","../../typescript/dist/cjs/cryptography/intent.d.ts","../../typescript/dist/cjs/cryptography/publickey.d.ts","../../typescript/dist/cjs/cryptography/signature-scheme.d.ts","../../typescript/dist/cjs/multisig/publickey.d.ts","../../typescript/dist/cjs/cryptography/signature.d.ts","../../typescript/dist/cjs/cryptography/mnemonics.d.ts","../../typescript/dist/cjs/cryptography/keypair.d.ts","../../typescript/dist/cjs/cryptography/index.d.ts","../../typescript/dist/cjs/types/normalized.d.ts","../../typescript/dist/cjs/types/index.d.ts","../../typescript/dist/cjs/builder/Inputs.d.ts","../../typescript/dist/cjs/builder/Transactions.d.ts","../../typescript/dist/cjs/builder/pure.d.ts","../../typescript/dist/cjs/builder/TransactionBlockData.d.ts","../../typescript/dist/cjs/builder/TransactionBlock.d.ts","../../typescript/dist/cjs/builder/serializer.d.ts","../../typescript/dist/cjs/builder/bcs.d.ts","../../typescript/dist/cjs/builder/index.d.ts","../../typescript/dist/cjs/client/types/params.d.ts","../../typescript/dist/cjs/client/types/index.d.ts","../../typescript/dist/cjs/client/client.d.ts","../../typescript/dist/cjs/client/errors.d.ts","../../typescript/dist/cjs/client/index.d.ts","../../typescript/dist/cjs/builder/export.d.ts","../src/features/suiSignTransactionBlock.ts","../src/features/suiSignAndExecuteTransactionBlock.ts","../src/features/suiSignMessage.ts","../src/features/suiSignPersonalMessage.ts","../src/features/index.ts","../src/detect.ts","../src/wallet.ts","../src/index.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"99fc77a0db124b2a6185113e88f28ea0cb053623eac3b96f2fec65afdc182051","signature":"48bea1a672b929c96c86a2ab5d6ca49603fae5a43bcf0188786fe2f1fecd535e"},"1c2721a7c0e3bfd40d2119c745cdbb2a7d253191f32612c2bfbc093f206c0ea0","7604be58758aee8f56e20781ad8e0f23f10cdc577951592c4d35b2b2265f8f3c","3ff489e3a6d73ddfff98ba3220aaee264e25bfe765043d16e2a71aecdbdf4a3e","65ed5d7571de8a0078798425a27f4e20d1ea07a7940343ecc6f6ba96f737335d","bad4e2f09849144d3e584003fa38cb7c0b08fc3c3de2578fab0a806bb7fe4394","8910c30772a9a086a139bcf0203a714db70a299d361627273df880e9dea4cd5c","84df60bc54528b2a82cf8d3c5bad5543cc42d6b57430aaabb47ab84c3839bf60","3b9e5343d2773e4ae236b18e79b1fa760dbf54a1a31f1bd0eab5c45e8fd1eb83","6b813a6885d6bb337098377628eacfbf32f9269383896f769f6bd966c31013d7","3abd0c256c08dfcd3d452051f6b7da35fbe08d77d0b55ec0f98cd74d74d858f9","ec4853a5dba45ffc33259e6b84a65ea4f2c5fb3719e0ea4728a3803bba91b80f","441d66ac8f5873ef0dff31147864c6a1c188899f7af8ba7bbd255a8a8c0b01d7","bdb0f27cd425bdb555de6cddf8a751ae9b6472d3a96e80f24b45e492909e2a22","e2dc8aae9b080ec472308b22599100ccbce6ce5af8754006f200cc33a10492db","6d68d23b4426718f335edcb10a26ffa873d155a4d6678f3660f36f4df5ea5a73","672f2984ea0180d19d72c3b49cd90a4a4f0f98e511f6aa01248168217c8add1d","3ac7c43ef8ba2fbcaade1891039ed9b74cb3f40219360495b939c868f93db28d","a295bd6c1e044b63f35bd1c2a0bd6311712fb88d1107a1fc3e0695279dacf022","964bd6aefed84b3c9fb3b69a48dee86b7700dc79a6976db75e38ebdcb71a34e4","7142789577fd90bacde1a3d92ed9da5c86c25b2d5deace47e0ebfb32eaa4e5de","b304a0dbc45734f46afbc75f40510b68f8c8575ef0b5cb8cd3e9b1e91bf1e169","5354a072b3ac903eb7fd90335dc277df9c1f41c650ddb495e7d3837870ce8f37","ec95aac5334a7f581ca3703334d605fd099255c4e7ae6cc0f758a8a61bd2583d","d312a279203f83e7dc60d23135820fd4c3b93a6f5b7f4aba6780c3e99e02dcc1","763bfc2a8911c4b6e4b81bf60b129d194d5db024609bf8f26b65e163e9e1552b","279945d96a86deee3252f9587af1013eca5027d6989c11da3e0e109f73b7064d","860ce8146a712fc5d88bfc6c3a2b8f6b835238a8009941b306871663ee920ebe","da0d6e82a836d320b4aedffcdbeda8444263533483ec4fc36a188da9995beee8","877a5f022af5433e1e2d9aeecfb92e35d10635812cec615c4b64fc16234201c7","15d652995d4fc8b2b019cdf0c14f424a536cfba2acedceed14bceab4c46ddc9f","1047322d9c62521bf58c817ad4579730e394f284e848d7e7e52199a2fc057920","5041d1e151f77eb97f762c51fade8d268f271de2f8b165b050e7caa4b7f8c4bd","0296071bdd869379505de371c04065cc68ddfb9564d6b75cda2373b0130bf57f","00cac821c5c6466146321dc8192f48c84d9f7c321f862b9a4a01a6a832ce6a2f","c6eff85f66b05eba0a5af516cfa2e7ce0c6d2a2cc71bc4c543915c823cea9ce8","434272013d17121b677ec280c2309b16442cd47060af926d1deba5a00fa26856","b55144428bf4cdc9d7f5027035b45e165feb6064538a06339aa3d7186aead0fb","0c7192e40da80243d167d93fd23c11d2efba22dc27fda3602d99889ed02ade86","0706139fea91b191554d605cc00192d295832707c54782c14b2e770f84786576","7a66b004fbf03f4388a4b1cab9c56e8d7783cde6dffe11740b4d4a5fd8ea2962","40f629bb8dbdcca0d098f515980fe12d8c3d8016e5f171f5974dc3a365d124dc","a7ac1b038e5708a8146a6a033a325f578c579e4a9ca33ea370dc71f08e4cf412","617149ab95b9af0071b7f97d6eab5a329818c2e00c27f07819ec4d07be9eff05","17e850a4aa91db529a27a63ab8c1060c1dc2bab9e59c2e15f92b27b23222a370","e07d4eac48bb68fe5fa8dc50136d2c0e494302f1d514e9bc8bbb49d676536f5d","8e92292bc3805f96d1988c3548dab65d3b941e7c975b4cdb76c8b50eef815152","4f77dc3fb5c167d70a3381ed6f0460e225cdcd1e92e57cf0561c1dbbf4b1d06b","85f34d2bd3cf830bd6eaf365f00a87399c63e056ea887d10a13fe2a426174c1b","6e2b929b96c3c3b9085dd03a1cb48b820d5cddd7d533e12c167d5efdcd3ecb94","3751bfdb6089fc635ac6670517387aaf0049f99c9b9bbb1cda7722a5ada6c126","eb3671ec7a51c0e20962ba24be3fd7a41919455739c123e774d5dd5f125eec25","fa4db2dc803d0eb7e08346318c9a7d21677f8cf98d462cfd0a6a12c8cfb31c92","6673741ec24a5e5dacd4e34642fd04246521b85ad5816447a359f941a3868337","4f32a56579111f4bae35cd512deb712e6c7e54d6166419efd950f906cfbb3bb9","4c91be8d873064981e9f0a16a4e30c54292cddf9c13cb71eed6e0d76eb8b75b4","d4a4aaaa115b2ff81485fd51383254e9726a9aed3032af71f6eae0cbb0b1d7ea","90342db9643b8f88b334cd9ce8ad8b952dd7c947162940c54baac6581db62fbf","9a1da17eba055daf804d9bc61805961f6cbd6265a10ab33d53293415462464a6","09848148e7d9056992861396dfd15807e66f62196483a85640141157f87e3e62","b1a0fcbf76ed96379e3757a44eec4f2de164e7018085933d14924e8c6de13df2","5f9226e66cd6358f5a9f82cb46ec091bacdd535d220e50e6af0f800e1dd0d2b8","143d16563c5b476d29ad8429d9cc65290bb20244bbe5fad6803252cfd36fa1cb","4d9edaa343cccb6138f68fe1ea88d6bb8915473442ed14dd3ac209260c8337b0","0770502837dc34fc1da48dab57a6bff1f3fcf97576990a7f58f49a359d6c57b5","1cc19398cebbcda80c612f0989bd1dc124097914402fa315fd2e2595b69812d9","2a4bf44344fddabb3095ca3a57582209fa7cb6cc7486f7ec8fe09008c1cc576b","fef1dcd2d08e4fa2d4617499beb25162894ecebf9032ea2037a7e4e33d896eb9","5d6243442242f523d700101991a98c94b97a82f5ea7cfea4506881eeae5712ed","a92eb3a0db5b455d6350b2fb6f23593721ebe6af71f7f442d0b2b0e8f36830ae",{"version":"bd3fac2a30f7a39bc4ed64fb2806a95eb6e8218517c7e586d24e0ce091f1684b","signature":"e459c3d03cee0b2f43f44660cddfdc005caeb615393f7e8140f1ab107c71ec0e"},{"version":"019721ae4de8eaf78794e4a8b001e9f59ce33819a49be811650aa19405e7f7b9","signature":"50da7eb4d73e1b01b7727bd0715687ba65be75372166dd8132408481498f7ad9"},{"version":"ba0b3a5badf183eb2fad920b471235d5698b7c66d4b43c5738ddc226abadc4d3","signature":"b98898c6f853b0a1c9dda2ea3e7fcddfb5bc81713e372ea9dc3c973f9df94876"},{"version":"501223a6372b2e03ce6a6c7bbe176084286d5b8d3e4d4d56186ed742a9b96eb2","signature":"c36e7c75953342a47f2a57f8d7188008f7cd3b6f10d08348968b7800f1c6ad99"},{"version":"6beeb1d9a164eebff0a55078e96fb46bdf3bf5bbef47adebcb32c07c0ebaaa1c","signature":"464757d3191b522ac194062a29d47c7f8900123ceaf45ae16cef4c8be21aa585"},{"version":"5488d46ae54a67b258493974091622ca6593186be38485bbef7b57bd7cfb521b","signature":"43f98a585598a791db913eb481e3490e94d64e3cc250ee26418e034c7a25890e"},{"version":"e7bdf27afeb9d08824c7a3405940907e3c37096b90b87ba949696068ec504d19","signature":"fa8ebdc4924396eeabe50ec1c3b53d62b99861b032d6c54d0a9c61aa422a6bd9"},{"version":"512e872300d42b9ff2ab21bf709789e3c0b64666db17e8b411f7e4824ebcdbae","signature":"dbc61f2b3c21bea4608cd290c5e4f7d7ef86067f646ef54b2327a0f888df66cc"}],"root":[62,[132,139]],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7},"fileIdsList":[[67],[66],[63,64,65],[63],[64],[66,68,72,75],[66,69,70,71],[73,74],[94,96,97,98,99,100],[94,95],[96],[95,96],[94,96],[85,87],[86,88],[83,84,85,86,87,88,89,90,91,92],[85,86,87,88],[88],[86],[86,93,103,104],[105],[93,101,105,117],[93,105,115,117,118,119,120,121,130],[101,105,119],[101,105],[93],[118,119,122,123],[118,119,122,123,124],[93,119],[130],[78,115,125,127],[77],[78,79,127,128,129],[80],[80,81,82,106,107,126],[80,125],[108,109,110,112,113,114],[108,109,110,112],[108,115],[109,110,111],[109,110,112],[103,116],[101],[101,102],[76,136,138],[76,132,133,134,135,138],[130,132],[76,138],[76,131,138],[62,76,136,137,138]],"referencedMap":[[68,1],[67,2],[66,3],[64,4],[65,5],[76,6],[69,2],[71,2],[72,7],[75,8],[73,2],[74,2],[101,9],[96,10],[97,11],[98,11],[99,12],[100,12],[95,13],[88,14],[89,15],[93,16],[92,17],[86,18],[91,19],[87,19],[105,20],[104,21],[118,22],[122,23],[121,24],[119,25],[124,26],[131,27],[125,28],[120,29],[123,30],[128,31],[78,32],[130,33],[81,34],[107,34],[106,21],[127,35],[126,36],[115,37],[114,38],[109,39],[112,40],[111,41],[102,25],[117,42],[116,43],[103,44],[137,45],[136,46],[133,47],[134,48],[135,48],[132,49],[139,50],[138,48]],"exportedModulesMap":[[68,1],[67,2],[66,3],[64,4],[65,5],[76,6],[69,2],[71,2],[72,7],[75,8],[73,2],[74,2],[101,9],[96,10],[97,11],[98,11],[99,12],[100,12],[95,13],[88,14],[89,15],[93,16],[92,17],[86,18],[91,19],[87,19],[105,20],[104,21],[118,22],[122,23],[121,24],[119,25],[124,26],[131,27],[125,28],[120,29],[123,30],[128,31],[78,32],[130,33],[81,34],[107,34],[106,21],[127,35],[126,36],[115,37],[114,38],[109,39],[112,40],[111,41],[102,25],[117,42],[116,43],[103,44],[137,45],[136,46],[133,47],[134,48],[135,48],[132,49],[139,50],[138,48]],"semanticDiagnosticsPerFile":[68,67,63,66,64,65,76,69,70,71,72,75,73,74,94,101,96,97,98,99,100,95,60,61,12,13,15,14,2,16,17,18,19,20,21,22,23,3,4,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,10,1,11,59,83,84,88,89,90,93,92,85,86,91,87,105,104,118,122,121,119,124,131,125,120,123,128,129,78,130,79,77,81,107,82,106,80,127,126,115,108,114,113,109,110,112,111,102,117,116,103,62,137,136,133,134,135,132,139,138],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"5.1.6"}
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/chains.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.0.1/node_modules/@wallet-standard/base/lib/types/identifier.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.0.1/node_modules/@wallet-standard/base/lib/types/wallet.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.0.1/node_modules/@wallet-standard/base/lib/types/window.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.0.1/node_modules/@wallet-standard/base/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+app@1.0.1/node_modules/@wallet-standard/app/lib/types/wallets.d.ts","../../../node_modules/.pnpm/@wallet-standard+app@1.0.1/node_modules/@wallet-standard/app/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.0.3/node_modules/@wallet-standard/features/lib/types/connect.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.0.3/node_modules/@wallet-standard/features/lib/types/disconnect.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.0.3/node_modules/@wallet-standard/features/lib/types/events.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.0.3/node_modules/@wallet-standard/features/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.0.1/node_modules/@wallet-standard/wallet/lib/types/register.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.0.1/node_modules/@wallet-standard/wallet/lib/types/util.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.0.1/node_modules/@wallet-standard/wallet/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+core@1.0.3/node_modules/@wallet-standard/core/lib/types/index.d.ts","../../typescript/dist/cjs/client/rpc-websocket-client.d.ts","../../typescript/dist/cjs/client/http-transport.d.ts","../../typescript/dist/cjs/client/network.d.ts","../../typescript/dist/cjs/client/types/generated.d.ts","../../typescript/dist/cjs/client/types/chain.d.ts","../../typescript/dist/cjs/client/types/coins.d.ts","../../bcs/dist/cjs/b58.d.ts","../../bcs/dist/cjs/b64.d.ts","../../bcs/dist/cjs/reader.d.ts","../../bcs/dist/cjs/types.d.ts","../../bcs/dist/cjs/writer.d.ts","../../bcs/dist/cjs/bcs-type.d.ts","../../bcs/dist/cjs/bcs.d.ts","../../bcs/dist/cjs/hex.d.ts","../../bcs/dist/cjs/utils.d.ts","../../bcs/dist/cjs/legacy-registry.d.ts","../../bcs/dist/cjs/index.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/error.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/utils.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/struct.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/structs/coercions.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/structs/refinements.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/structs/types.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/structs/utilities.d.ts","../../../node_modules/.pnpm/superstruct@1.0.3/node_modules/superstruct/dist/index.d.ts","../../typescript/dist/cjs/types/common.d.ts","../../typescript/dist/cjs/types/objects.d.ts","../../typescript/dist/cjs/bcs/type-tag-serializer.d.ts","../../typescript/dist/cjs/bcs/index.d.ts","../../typescript/dist/cjs/client/types/common.d.ts","../../typescript/dist/cjs/client/types/changes.d.ts","../../typescript/dist/cjs/cryptography/intent.d.ts","../../typescript/dist/cjs/cryptography/publickey.d.ts","../../typescript/dist/cjs/cryptography/signature-scheme.d.ts","../../typescript/dist/cjs/multisig/publickey.d.ts","../../typescript/dist/cjs/cryptography/signature.d.ts","../../typescript/dist/cjs/cryptography/mnemonics.d.ts","../../typescript/dist/cjs/cryptography/keypair.d.ts","../../typescript/dist/cjs/cryptography/index.d.ts","../../typescript/dist/cjs/types/normalized.d.ts","../../typescript/dist/cjs/types/index.d.ts","../../typescript/dist/cjs/builder/Inputs.d.ts","../../typescript/dist/cjs/builder/Transactions.d.ts","../../typescript/dist/cjs/builder/pure.d.ts","../../typescript/dist/cjs/builder/TransactionBlockData.d.ts","../../typescript/dist/cjs/builder/TransactionBlock.d.ts","../../typescript/dist/cjs/builder/serializer.d.ts","../../typescript/dist/cjs/builder/bcs.d.ts","../../typescript/dist/cjs/builder/index.d.ts","../../typescript/dist/cjs/client/types/params.d.ts","../../typescript/dist/cjs/client/types/index.d.ts","../../typescript/dist/cjs/client/client.d.ts","../../typescript/dist/cjs/client/errors.d.ts","../../typescript/dist/cjs/client/index.d.ts","../../typescript/dist/cjs/builder/export.d.ts","../src/features/suiSignTransactionBlock.ts","../src/features/suiSignAndExecuteTransactionBlock.ts","../src/features/suiSignMessage.ts","../src/features/suiSignPersonalMessage.ts","../src/features/index.ts","../src/detect.ts","../src/wallet.ts","../src/index.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"99fc77a0db124b2a6185113e88f28ea0cb053623eac3b96f2fec65afdc182051","signature":"48bea1a672b929c96c86a2ab5d6ca49603fae5a43bcf0188786fe2f1fecd535e"},"1c2721a7c0e3bfd40d2119c745cdbb2a7d253191f32612c2bfbc093f206c0ea0","7604be58758aee8f56e20781ad8e0f23f10cdc577951592c4d35b2b2265f8f3c","3ff489e3a6d73ddfff98ba3220aaee264e25bfe765043d16e2a71aecdbdf4a3e","65ed5d7571de8a0078798425a27f4e20d1ea07a7940343ecc6f6ba96f737335d","bad4e2f09849144d3e584003fa38cb7c0b08fc3c3de2578fab0a806bb7fe4394","8910c30772a9a086a139bcf0203a714db70a299d361627273df880e9dea4cd5c","84df60bc54528b2a82cf8d3c5bad5543cc42d6b57430aaabb47ab84c3839bf60","3b9e5343d2773e4ae236b18e79b1fa760dbf54a1a31f1bd0eab5c45e8fd1eb83","6b813a6885d6bb337098377628eacfbf32f9269383896f769f6bd966c31013d7","3abd0c256c08dfcd3d452051f6b7da35fbe08d77d0b55ec0f98cd74d74d858f9","ec4853a5dba45ffc33259e6b84a65ea4f2c5fb3719e0ea4728a3803bba91b80f","441d66ac8f5873ef0dff31147864c6a1c188899f7af8ba7bbd255a8a8c0b01d7","bdb0f27cd425bdb555de6cddf8a751ae9b6472d3a96e80f24b45e492909e2a22","e2dc8aae9b080ec472308b22599100ccbce6ce5af8754006f200cc33a10492db","6d68d23b4426718f335edcb10a26ffa873d155a4d6678f3660f36f4df5ea5a73","672f2984ea0180d19d72c3b49cd90a4a4f0f98e511f6aa01248168217c8add1d","3ac7c43ef8ba2fbcaade1891039ed9b74cb3f40219360495b939c868f93db28d","a295bd6c1e044b63f35bd1c2a0bd6311712fb88d1107a1fc3e0695279dacf022","964bd6aefed84b3c9fb3b69a48dee86b7700dc79a6976db75e38ebdcb71a34e4","7142789577fd90bacde1a3d92ed9da5c86c25b2d5deace47e0ebfb32eaa4e5de","b304a0dbc45734f46afbc75f40510b68f8c8575ef0b5cb8cd3e9b1e91bf1e169","5354a072b3ac903eb7fd90335dc277df9c1f41c650ddb495e7d3837870ce8f37","ec95aac5334a7f581ca3703334d605fd099255c4e7ae6cc0f758a8a61bd2583d","d312a279203f83e7dc60d23135820fd4c3b93a6f5b7f4aba6780c3e99e02dcc1","763bfc2a8911c4b6e4b81bf60b129d194d5db024609bf8f26b65e163e9e1552b","279945d96a86deee3252f9587af1013eca5027d6989c11da3e0e109f73b7064d","860ce8146a712fc5d88bfc6c3a2b8f6b835238a8009941b306871663ee920ebe","da0d6e82a836d320b4aedffcdbeda8444263533483ec4fc36a188da9995beee8","877a5f022af5433e1e2d9aeecfb92e35d10635812cec615c4b64fc16234201c7","15d652995d4fc8b2b019cdf0c14f424a536cfba2acedceed14bceab4c46ddc9f","1047322d9c62521bf58c817ad4579730e394f284e848d7e7e52199a2fc057920","5041d1e151f77eb97f762c51fade8d268f271de2f8b165b050e7caa4b7f8c4bd","0296071bdd869379505de371c04065cc68ddfb9564d6b75cda2373b0130bf57f","00cac821c5c6466146321dc8192f48c84d9f7c321f862b9a4a01a6a832ce6a2f","c6eff85f66b05eba0a5af516cfa2e7ce0c6d2a2cc71bc4c543915c823cea9ce8","434272013d17121b677ec280c2309b16442cd47060af926d1deba5a00fa26856","b55144428bf4cdc9d7f5027035b45e165feb6064538a06339aa3d7186aead0fb","0c7192e40da80243d167d93fd23c11d2efba22dc27fda3602d99889ed02ade86","0706139fea91b191554d605cc00192d295832707c54782c14b2e770f84786576","7a66b004fbf03f4388a4b1cab9c56e8d7783cde6dffe11740b4d4a5fd8ea2962","40f629bb8dbdcca0d098f515980fe12d8c3d8016e5f171f5974dc3a365d124dc","a7ac1b038e5708a8146a6a033a325f578c579e4a9ca33ea370dc71f08e4cf412","617149ab95b9af0071b7f97d6eab5a329818c2e00c27f07819ec4d07be9eff05","17e850a4aa91db529a27a63ab8c1060c1dc2bab9e59c2e15f92b27b23222a370","e07d4eac48bb68fe5fa8dc50136d2c0e494302f1d514e9bc8bbb49d676536f5d","8e92292bc3805f96d1988c3548dab65d3b941e7c975b4cdb76c8b50eef815152","4f77dc3fb5c167d70a3381ed6f0460e225cdcd1e92e57cf0561c1dbbf4b1d06b","85f34d2bd3cf830bd6eaf365f00a87399c63e056ea887d10a13fe2a426174c1b","6e2b929b96c3c3b9085dd03a1cb48b820d5cddd7d533e12c167d5efdcd3ecb94","3751bfdb6089fc635ac6670517387aaf0049f99c9b9bbb1cda7722a5ada6c126","eb3671ec7a51c0e20962ba24be3fd7a41919455739c123e774d5dd5f125eec25","fa4db2dc803d0eb7e08346318c9a7d21677f8cf98d462cfd0a6a12c8cfb31c92","6673741ec24a5e5dacd4e34642fd04246521b85ad5816447a359f941a3868337","4f32a56579111f4bae35cd512deb712e6c7e54d6166419efd950f906cfbb3bb9","4c91be8d873064981e9f0a16a4e30c54292cddf9c13cb71eed6e0d76eb8b75b4","d4a4aaaa115b2ff81485fd51383254e9726a9aed3032af71f6eae0cbb0b1d7ea","90342db9643b8f88b334cd9ce8ad8b952dd7c947162940c54baac6581db62fbf","9a1da17eba055daf804d9bc61805961f6cbd6265a10ab33d53293415462464a6","09848148e7d9056992861396dfd15807e66f62196483a85640141157f87e3e62","b1a0fcbf76ed96379e3757a44eec4f2de164e7018085933d14924e8c6de13df2","5f9226e66cd6358f5a9f82cb46ec091bacdd535d220e50e6af0f800e1dd0d2b8","143d16563c5b476d29ad8429d9cc65290bb20244bbe5fad6803252cfd36fa1cb","4d9edaa343cccb6138f68fe1ea88d6bb8915473442ed14dd3ac209260c8337b0","0770502837dc34fc1da48dab57a6bff1f3fcf97576990a7f58f49a359d6c57b5","1cc19398cebbcda80c612f0989bd1dc124097914402fa315fd2e2595b69812d9","2a4bf44344fddabb3095ca3a57582209fa7cb6cc7486f7ec8fe09008c1cc576b","fef1dcd2d08e4fa2d4617499beb25162894ecebf9032ea2037a7e4e33d896eb9","5d6243442242f523d700101991a98c94b97a82f5ea7cfea4506881eeae5712ed","a92eb3a0db5b455d6350b2fb6f23593721ebe6af71f7f442d0b2b0e8f36830ae",{"version":"bd3fac2a30f7a39bc4ed64fb2806a95eb6e8218517c7e586d24e0ce091f1684b","signature":"e459c3d03cee0b2f43f44660cddfdc005caeb615393f7e8140f1ab107c71ec0e"},{"version":"019721ae4de8eaf78794e4a8b001e9f59ce33819a49be811650aa19405e7f7b9","signature":"50da7eb4d73e1b01b7727bd0715687ba65be75372166dd8132408481498f7ad9"},{"version":"ba0b3a5badf183eb2fad920b471235d5698b7c66d4b43c5738ddc226abadc4d3","signature":"b98898c6f853b0a1c9dda2ea3e7fcddfb5bc81713e372ea9dc3c973f9df94876"},{"version":"501223a6372b2e03ce6a6c7bbe176084286d5b8d3e4d4d56186ed742a9b96eb2","signature":"c36e7c75953342a47f2a57f8d7188008f7cd3b6f10d08348968b7800f1c6ad99"},{"version":"6beeb1d9a164eebff0a55078e96fb46bdf3bf5bbef47adebcb32c07c0ebaaa1c","signature":"464757d3191b522ac194062a29d47c7f8900123ceaf45ae16cef4c8be21aa585"},{"version":"5488d46ae54a67b258493974091622ca6593186be38485bbef7b57bd7cfb521b","signature":"43f98a585598a791db913eb481e3490e94d64e3cc250ee26418e034c7a25890e"},{"version":"e7bdf27afeb9d08824c7a3405940907e3c37096b90b87ba949696068ec504d19","signature":"fa8ebdc4924396eeabe50ec1c3b53d62b99861b032d6c54d0a9c61aa422a6bd9"},{"version":"512e872300d42b9ff2ab21bf709789e3c0b64666db17e8b411f7e4824ebcdbae","signature":"dbc61f2b3c21bea4608cd290c5e4f7d7ef86067f646ef54b2327a0f888df66cc"}],"root":[62,[132,139]],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":2,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7},"fileIdsList":[[67],[66],[63,64,65],[63],[64],[66,68,72,75],[66,69,70,71],[73,74],[94,96,97,98,99,100],[94,95],[96],[95,96],[94,96],[85,87],[86,88],[83,84,85,86,87,88,89,90,91,92],[85,86,87,88],[88],[86],[86,93,103,104],[105],[93,101,105,117],[93,105,115,117,118,119,120,121,130],[101,105,119],[101,105],[93],[118,119,122,123],[118,119,122,123,124],[93,119],[130],[78,115,125,127],[77],[78,79,127,128,129],[80],[80,81,82,106,107,126],[80,125],[108,109,110,112,113,114],[108,109,110,112],[108,115],[109,110,111],[109,110,112],[103,116],[101],[101,102],[76,136,138],[76,132,133,134,135,138],[130,132],[76,138],[76,131,138],[62,76,136,137,138]],"referencedMap":[[68,1],[67,2],[66,3],[64,4],[65,5],[76,6],[69,2],[71,2],[72,7],[75,8],[73,2],[74,2],[101,9],[96,10],[97,11],[98,11],[99,12],[100,12],[95,13],[88,14],[89,15],[93,16],[92,17],[86,18],[91,19],[87,19],[105,20],[104,21],[118,22],[122,23],[121,24],[119,25],[124,26],[131,27],[125,28],[120,29],[123,30],[128,31],[78,32],[130,33],[81,34],[107,34],[106,21],[127,35],[126,36],[115,37],[114,38],[109,39],[112,40],[111,41],[102,25],[117,42],[116,43],[103,44],[137,45],[136,46],[133,47],[134,48],[135,48],[132,49],[139,50],[138,48]],"exportedModulesMap":[[68,1],[67,2],[66,3],[64,4],[65,5],[76,6],[69,2],[71,2],[72,7],[75,8],[73,2],[74,2],[101,9],[96,10],[97,11],[98,11],[99,12],[100,12],[95,13],[88,14],[89,15],[93,16],[92,17],[86,18],[91,19],[87,19],[105,20],[104,21],[118,22],[122,23],[121,24],[119,25],[124,26],[131,27],[125,28],[120,29],[123,30],[128,31],[78,32],[130,33],[81,34],[107,34],[106,21],[127,35],[126,36],[115,37],[114,38],[109,39],[112,40],[111,41],[102,25],[117,42],[116,43],[103,44],[137,45],[136,46],[133,47],[134,48],[135,48],[132,49],[139,50],[138,48]],"semanticDiagnosticsPerFile":[68,67,63,66,64,65,76,69,70,71,72,75,73,74,94,101,96,97,98,99,100,95,60,61,12,13,15,14,2,16,17,18,19,20,21,22,23,3,4,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,10,1,11,59,83,84,88,89,90,93,92,85,86,91,87,105,104,118,122,121,119,124,131,125,120,123,128,129,78,130,79,77,81,107,82,106,80,127,126,115,108,114,113,109,110,112,111,102,117,116,103,62,137,136,133,134,135,132,139,138],"latestChangedDtsFile":"./cjs/index.d.ts"},"version":"5.1.6"}
package/package.json CHANGED
@@ -1,39 +1,36 @@
1
1
  {
2
2
  "name": "@mysten/wallet-standard",
3
- "version": "0.9.0",
3
+ "version": "0.10.1",
4
4
  "description": "A suite of standard utilities for implementing wallets based on the Wallet Standard.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Mysten Labs <build@mystenlabs.com>",
7
- "main": "./dist/index.js",
8
- "module": "./dist/index.mjs",
9
- "types": "./dist/index.d.ts",
7
+ "type": "commonjs",
8
+ "main": "./dist/cjs/index.js",
9
+ "module": "./dist/esm/index.js",
10
+ "types": "./dist/cjs/index.d.ts",
10
11
  "exports": {
11
12
  ".": {
12
- "types": "./dist/index.d.ts",
13
- "import": "./dist/index.mjs",
14
- "require": "./dist/index.js"
13
+ "import": "./dist/esm/index.js",
14
+ "require": "./dist/cjs/index.js"
15
15
  }
16
16
  },
17
17
  "sideEffects": false,
18
18
  "files": [
19
+ "CHANGELOG.md",
19
20
  "dist",
20
- "src",
21
- "CHANGELOG.md"
21
+ "src"
22
22
  ],
23
23
  "dependencies": {
24
24
  "@wallet-standard/core": "1.0.3",
25
- "@mysten/sui.js": "0.48.1"
25
+ "@mysten/sui.js": "0.49.1"
26
26
  },
27
27
  "devDependencies": {
28
- "tsup": "^7.1.0",
29
- "typescript": "^5.1.6"
28
+ "typescript": "^5.1.6",
29
+ "@mysten/build-scripts": "0.0.0"
30
30
  },
31
31
  "scripts": {
32
32
  "clean": "rm -rf tsconfig.tsbuildinfo ./dist",
33
- "dev": "pnpm build --watch",
34
- "build": "pnpm build:types && pnpm build:tsup",
35
- "build:tsup": "tsup ./src/index.ts --format esm,cjs --sourcemap",
36
- "build:types": "tsc --build",
33
+ "build": "build-package",
37
34
  "prettier:check": "prettier -c --ignore-unknown .",
38
35
  "prettier:fix": "prettier -w --ignore-unknown .",
39
36
  "eslint:check": "eslint --max-warnings=0 .",
package/src/detect.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  // Copyright (c) Mysten Labs, Inc.
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
- import { Wallet, WalletWithFeatures } from '@wallet-standard/core';
4
+ import type { Wallet, WalletWithFeatures } from '@wallet-standard/core';
5
5
 
6
- import { MinimallyRequiredFeatures, WalletWithSuiFeatures } from './features';
6
+ import type { MinimallyRequiredFeatures, WalletWithSuiFeatures } from './features/index.js';
7
7
 
8
8
  // These features are absolutely required for wallets to function in the Sui ecosystem.
9
9
  // Eventually, as wallets have more consistent support of features, we may want to extend this list.
@@ -9,10 +9,10 @@ import type {
9
9
  WalletWithFeatures,
10
10
  } from '@wallet-standard/core';
11
11
 
12
- import type { SuiSignAndExecuteTransactionBlockFeature } from './suiSignAndExecuteTransactionBlock';
13
- import { SuiSignMessageFeature } from './suiSignMessage';
14
- import { SuiSignPersonalMessageFeature } from './suiSignPersonalMessage';
15
- import type { SuiSignTransactionBlockFeature } from './suiSignTransactionBlock';
12
+ import type { SuiSignAndExecuteTransactionBlockFeature } from './suiSignAndExecuteTransactionBlock.js';
13
+ import type { SuiSignMessageFeature } from './suiSignMessage.js';
14
+ import type { SuiSignPersonalMessageFeature } from './suiSignPersonalMessage.js';
15
+ import type { SuiSignTransactionBlockFeature } from './suiSignTransactionBlock.js';
16
16
 
17
17
  /**
18
18
  * Wallet Standard features that are unique to Sui, and that all Sui wallets are expected to implement.
@@ -43,7 +43,7 @@ export type WalletWithRequiredFeatures = WalletWithFeatures<
43
43
 
44
44
  export type MinimallyRequiredFeatures = StandardConnectFeature & StandardEventsFeature;
45
45
 
46
- export * from './suiSignMessage';
47
- export * from './suiSignTransactionBlock';
48
- export * from './suiSignAndExecuteTransactionBlock';
49
- export * from './suiSignPersonalMessage';
46
+ export * from './suiSignMessage.js';
47
+ export * from './suiSignTransactionBlock.js';
48
+ export * from './suiSignAndExecuteTransactionBlock.js';
49
+ export * from './suiSignPersonalMessage.js';
@@ -7,7 +7,7 @@ import type {
7
7
  SuiTransactionBlockResponseOptions,
8
8
  } from '@mysten/sui.js/client';
9
9
 
10
- import type { SuiSignTransactionBlockInput } from './suiSignTransactionBlock';
10
+ import type { SuiSignTransactionBlockInput } from './suiSignTransactionBlock.js';
11
11
 
12
12
  /** The latest API version of the signAndExecuteTransactionBlock API. */
13
13
  export type SuiSignAndExecuteTransactionBlockVersion = '1.0.0';
@@ -1,7 +1,7 @@
1
1
  // Copyright (c) Mysten Labs, Inc.
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
- import { TransactionBlock } from '@mysten/sui.js/transactions';
4
+ import type { TransactionBlock } from '@mysten/sui.js/transactions';
5
5
  import type { IdentifierString, WalletAccount } from '@wallet-standard/core';
6
6
 
7
7
  /** The latest API version of the signTransactionBlock API. */
package/src/index.ts CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  export * from '@wallet-standard/core';
5
5
 
6
- export type { Wallet } from './wallet';
7
- export * from './features';
8
- export * from './detect';
9
- export * from './chains';
6
+ export type { Wallet } from './wallet.js';
7
+ export * from './features/index.js';
8
+ export * from './detect.js';
9
+ export * from './chains.js';
package/dist/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- export * from '@wallet-standard/core';
2
- export type { Wallet } from './wallet';
3
- export * from './features';
4
- export * from './detect';
5
- export * from './chains';
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/index.ts","../src/detect.ts","../src/chains.ts"],"sourcesContent":["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport * from '@wallet-standard/core';\n\nexport type { Wallet } from './wallet';\nexport * from './features';\nexport * from './detect';\nexport * from './chains';\n","// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Wallet, WalletWithFeatures } from '@wallet-standard/core';\n\nimport { MinimallyRequiredFeatures, WalletWithSuiFeatures } from './features';\n\n// These features are absolutely required for wallets to function in the Sui ecosystem.\n// Eventually, as wallets have more consistent support of features, we may want to extend this list.\nconst REQUIRED_FEATURES: (keyof MinimallyRequiredFeatures)[] = [\n\t'standard:connect',\n\t'standard:events',\n];\n\n/** @deprecated Use isWalletWithRequiredFeatureSet instead since it provides more accurate typing! */\nexport function isWalletWithSuiFeatures(\n\twallet: Wallet,\n\t/** Extra features that are required to be present, in addition to the expected feature set. */\n\tfeatures: string[] = [],\n): wallet is WalletWithSuiFeatures {\n\treturn [...REQUIRED_FEATURES, ...features].every((feature) => feature in wallet.features);\n}\n\nexport function isWalletWithRequiredFeatureSet<AdditionalFeatures extends Wallet['features']>(\n\twallet: Wallet,\n\tadditionalFeatures: (keyof AdditionalFeatures)[] = [],\n): wallet is WalletWithFeatures<MinimallyRequiredFeatures & AdditionalFeatures> {\n\treturn [...REQUIRED_FEATURES, ...additionalFeatures].every(\n\t\t(feature) => feature in wallet.features,\n\t);\n}\n","// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n/** Sui Devnet */\nexport const SUI_DEVNET_CHAIN = 'sui:devnet';\n\n/** Sui Testnet */\nexport const SUI_TESTNET_CHAIN = 'sui:testnet';\n\n/** Sui Localnet */\nexport const SUI_LOCALNET_CHAIN = 'sui:localnet';\n\n/** Sui Mainnet */\nexport const SUI_MAINNET_CHAIN = 'sui:mainnet';\n\nexport const SUI_CHAINS = [\n\tSUI_DEVNET_CHAIN,\n\tSUI_TESTNET_CHAIN,\n\tSUI_LOCALNET_CHAIN,\n\tSUI_MAINNET_CHAIN,\n] as const;\n\nexport type SuiChain =\n\t| typeof SUI_DEVNET_CHAIN\n\t| typeof SUI_TESTNET_CHAIN\n\t| typeof SUI_LOCALNET_CHAIN\n\t| typeof SUI_MAINNET_CHAIN;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,wBAAc,kCAHd;;;ACSA,IAAM,oBAAyD;AAAA,EAC9D;AAAA,EACA;AACD;AAGO,SAAS,wBACf,QAEA,WAAqB,CAAC,GACY;AAClC,SAAO,CAAC,GAAG,mBAAmB,GAAG,QAAQ,EAAE,MAAM,CAAC,YAAY,WAAW,OAAO,QAAQ;AACzF;AAEO,SAAS,+BACf,QACA,qBAAmD,CAAC,GAC2B;AAC/E,SAAO,CAAC,GAAG,mBAAmB,GAAG,kBAAkB,EAAE;AAAA,IACpD,CAAC,YAAY,WAAW,OAAO;AAAA,EAChC;AACD;;;AC1BO,IAAM,mBAAmB;AAGzB,IAAM,oBAAoB;AAG1B,IAAM,qBAAqB;AAG3B,IAAM,oBAAoB;AAE1B,IAAM,aAAa;AAAA,EACzB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACD;","names":[]}
package/dist/index.mjs DELETED
@@ -1,38 +0,0 @@
1
- // src/index.ts
2
- export * from "@wallet-standard/core";
3
-
4
- // src/detect.ts
5
- var REQUIRED_FEATURES = [
6
- "standard:connect",
7
- "standard:events"
8
- ];
9
- function isWalletWithSuiFeatures(wallet, features = []) {
10
- return [...REQUIRED_FEATURES, ...features].every((feature) => feature in wallet.features);
11
- }
12
- function isWalletWithRequiredFeatureSet(wallet, additionalFeatures = []) {
13
- return [...REQUIRED_FEATURES, ...additionalFeatures].every(
14
- (feature) => feature in wallet.features
15
- );
16
- }
17
-
18
- // src/chains.ts
19
- var SUI_DEVNET_CHAIN = "sui:devnet";
20
- var SUI_TESTNET_CHAIN = "sui:testnet";
21
- var SUI_LOCALNET_CHAIN = "sui:localnet";
22
- var SUI_MAINNET_CHAIN = "sui:mainnet";
23
- var SUI_CHAINS = [
24
- SUI_DEVNET_CHAIN,
25
- SUI_TESTNET_CHAIN,
26
- SUI_LOCALNET_CHAIN,
27
- SUI_MAINNET_CHAIN
28
- ];
29
- export {
30
- SUI_CHAINS,
31
- SUI_DEVNET_CHAIN,
32
- SUI_LOCALNET_CHAIN,
33
- SUI_MAINNET_CHAIN,
34
- SUI_TESTNET_CHAIN,
35
- isWalletWithRequiredFeatureSet,
36
- isWalletWithSuiFeatures
37
- };
38
- //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/index.ts","../src/detect.ts","../src/chains.ts"],"sourcesContent":["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport * from '@wallet-standard/core';\n\nexport type { Wallet } from './wallet';\nexport * from './features';\nexport * from './detect';\nexport * from './chains';\n","// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { Wallet, WalletWithFeatures } from '@wallet-standard/core';\n\nimport { MinimallyRequiredFeatures, WalletWithSuiFeatures } from './features';\n\n// These features are absolutely required for wallets to function in the Sui ecosystem.\n// Eventually, as wallets have more consistent support of features, we may want to extend this list.\nconst REQUIRED_FEATURES: (keyof MinimallyRequiredFeatures)[] = [\n\t'standard:connect',\n\t'standard:events',\n];\n\n/** @deprecated Use isWalletWithRequiredFeatureSet instead since it provides more accurate typing! */\nexport function isWalletWithSuiFeatures(\n\twallet: Wallet,\n\t/** Extra features that are required to be present, in addition to the expected feature set. */\n\tfeatures: string[] = [],\n): wallet is WalletWithSuiFeatures {\n\treturn [...REQUIRED_FEATURES, ...features].every((feature) => feature in wallet.features);\n}\n\nexport function isWalletWithRequiredFeatureSet<AdditionalFeatures extends Wallet['features']>(\n\twallet: Wallet,\n\tadditionalFeatures: (keyof AdditionalFeatures)[] = [],\n): wallet is WalletWithFeatures<MinimallyRequiredFeatures & AdditionalFeatures> {\n\treturn [...REQUIRED_FEATURES, ...additionalFeatures].every(\n\t\t(feature) => feature in wallet.features,\n\t);\n}\n","// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n/** Sui Devnet */\nexport const SUI_DEVNET_CHAIN = 'sui:devnet';\n\n/** Sui Testnet */\nexport const SUI_TESTNET_CHAIN = 'sui:testnet';\n\n/** Sui Localnet */\nexport const SUI_LOCALNET_CHAIN = 'sui:localnet';\n\n/** Sui Mainnet */\nexport const SUI_MAINNET_CHAIN = 'sui:mainnet';\n\nexport const SUI_CHAINS = [\n\tSUI_DEVNET_CHAIN,\n\tSUI_TESTNET_CHAIN,\n\tSUI_LOCALNET_CHAIN,\n\tSUI_MAINNET_CHAIN,\n] as const;\n\nexport type SuiChain =\n\t| typeof SUI_DEVNET_CHAIN\n\t| typeof SUI_TESTNET_CHAIN\n\t| typeof SUI_LOCALNET_CHAIN\n\t| typeof SUI_MAINNET_CHAIN;\n"],"mappings":";AAGA,cAAc;;;ACMd,IAAM,oBAAyD;AAAA,EAC9D;AAAA,EACA;AACD;AAGO,SAAS,wBACf,QAEA,WAAqB,CAAC,GACY;AAClC,SAAO,CAAC,GAAG,mBAAmB,GAAG,QAAQ,EAAE,MAAM,CAAC,YAAY,WAAW,OAAO,QAAQ;AACzF;AAEO,SAAS,+BACf,QACA,qBAAmD,CAAC,GAC2B;AAC/E,SAAO,CAAC,GAAG,mBAAmB,GAAG,kBAAkB,EAAE;AAAA,IACpD,CAAC,YAAY,WAAW,OAAO;AAAA,EAChC;AACD;;;AC1BO,IAAM,mBAAmB;AAGzB,IAAM,oBAAoB;AAG1B,IAAM,qBAAqB;AAG3B,IAAM,oBAAoB;AAE1B,IAAM,aAAa;AAAA,EACzB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACD;","names":[]}
File without changes
File without changes