@haneullabs/wallet-standard 0.1.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/CHANGELOG.md +1438 -0
- package/README.md +6 -0
- package/dist/cjs/chains.d.ts +16 -0
- package/dist/cjs/chains.js +42 -0
- package/dist/cjs/chains.js.map +7 -0
- package/dist/cjs/detect.d.ts +3 -0
- package/dist/cjs/detect.js +31 -0
- package/dist/cjs/detect.js.map +7 -0
- package/dist/cjs/features/haneulGetCapabilities.d.ts +15 -0
- package/dist/cjs/features/haneulGetCapabilities.js +25 -0
- package/dist/cjs/features/haneulGetCapabilities.js.map +7 -0
- package/dist/cjs/features/haneulReportTransactionEffects.d.ts +26 -0
- package/dist/cjs/features/haneulReportTransactionEffects.js +25 -0
- package/dist/cjs/features/haneulReportTransactionEffects.js.map +7 -0
- package/dist/cjs/features/haneulSignAndExecuteTransaction.d.ts +28 -0
- package/dist/cjs/features/haneulSignAndExecuteTransaction.js +25 -0
- package/dist/cjs/features/haneulSignAndExecuteTransaction.js.map +7 -0
- package/dist/cjs/features/haneulSignAndExecuteTransactionBlock.d.ts +36 -0
- package/dist/cjs/features/haneulSignAndExecuteTransactionBlock.js +25 -0
- package/dist/cjs/features/haneulSignAndExecuteTransactionBlock.js.map +7 -0
- package/dist/cjs/features/haneulSignMessage.d.ts +45 -0
- package/dist/cjs/features/haneulSignMessage.js +25 -0
- package/dist/cjs/features/haneulSignMessage.js.map +7 -0
- package/dist/cjs/features/haneulSignPersonalMessage.d.ts +33 -0
- package/dist/cjs/features/haneulSignPersonalMessage.js +25 -0
- package/dist/cjs/features/haneulSignPersonalMessage.js.map +7 -0
- package/dist/cjs/features/haneulSignTransaction.d.ts +34 -0
- package/dist/cjs/features/haneulSignTransaction.js +25 -0
- package/dist/cjs/features/haneulSignTransaction.js.map +7 -0
- package/dist/cjs/features/haneulSignTransactionBlock.d.ts +38 -0
- package/dist/cjs/features/haneulSignTransactionBlock.js +25 -0
- package/dist/cjs/features/haneulSignTransactionBlock.js.map +7 -0
- package/dist/cjs/features/index.d.ts +28 -0
- package/dist/cjs/features/index.js +26 -0
- package/dist/cjs/features/index.js.map +7 -0
- package/dist/cjs/index.d.ts +6 -0
- package/dist/cjs/index.js +32 -0
- package/dist/cjs/index.js.map +7 -0
- package/dist/cjs/package.json +5 -0
- package/dist/cjs/types.d.ts +159 -0
- package/dist/cjs/types.js +17 -0
- package/dist/cjs/types.js.map +7 -0
- package/dist/cjs/wallet.d.ts +18 -0
- package/dist/cjs/wallet.js +80 -0
- package/dist/cjs/wallet.js.map +7 -0
- package/dist/esm/chains.d.ts +16 -0
- package/dist/esm/chains.js +22 -0
- package/dist/esm/chains.js.map +7 -0
- package/dist/esm/detect.d.ts +3 -0
- package/dist/esm/detect.js +11 -0
- package/dist/esm/detect.js.map +7 -0
- package/dist/esm/features/haneulGetCapabilities.d.ts +15 -0
- package/dist/esm/features/haneulGetCapabilities.js +5 -0
- package/dist/esm/features/haneulGetCapabilities.js.map +7 -0
- package/dist/esm/features/haneulReportTransactionEffects.d.ts +26 -0
- package/dist/esm/features/haneulReportTransactionEffects.js +5 -0
- package/dist/esm/features/haneulReportTransactionEffects.js.map +7 -0
- package/dist/esm/features/haneulSignAndExecuteTransaction.d.ts +28 -0
- package/dist/esm/features/haneulSignAndExecuteTransaction.js +5 -0
- package/dist/esm/features/haneulSignAndExecuteTransaction.js.map +7 -0
- package/dist/esm/features/haneulSignAndExecuteTransactionBlock.d.ts +36 -0
- package/dist/esm/features/haneulSignAndExecuteTransactionBlock.js +5 -0
- package/dist/esm/features/haneulSignAndExecuteTransactionBlock.js.map +7 -0
- package/dist/esm/features/haneulSignMessage.d.ts +45 -0
- package/dist/esm/features/haneulSignMessage.js +5 -0
- package/dist/esm/features/haneulSignMessage.js.map +7 -0
- package/dist/esm/features/haneulSignPersonalMessage.d.ts +33 -0
- package/dist/esm/features/haneulSignPersonalMessage.js +5 -0
- package/dist/esm/features/haneulSignPersonalMessage.js.map +7 -0
- package/dist/esm/features/haneulSignTransaction.d.ts +34 -0
- package/dist/esm/features/haneulSignTransaction.js +5 -0
- package/dist/esm/features/haneulSignTransaction.js.map +7 -0
- package/dist/esm/features/haneulSignTransactionBlock.d.ts +38 -0
- package/dist/esm/features/haneulSignTransactionBlock.js +5 -0
- package/dist/esm/features/haneulSignTransactionBlock.js.map +7 -0
- package/dist/esm/features/index.d.ts +28 -0
- package/dist/esm/features/index.js +9 -0
- package/dist/esm/features/index.js.map +7 -0
- package/dist/esm/index.d.ts +6 -0
- package/dist/esm/index.js +11 -0
- package/dist/esm/index.js.map +7 -0
- package/dist/esm/package.json +5 -0
- package/dist/esm/types.d.ts +159 -0
- package/dist/esm/types.js +1 -0
- package/dist/esm/types.js.map +7 -0
- package/dist/esm/wallet.d.ts +18 -0
- package/dist/esm/wallet.js +60 -0
- package/dist/esm/wallet.js.map +7 -0
- package/dist/tsconfig.esm.tsbuildinfo +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +50 -0
- package/src/chains.ts +33 -0
- package/src/detect.ts +20 -0
- package/src/features/haneulGetCapabilities.ts +21 -0
- package/src/features/haneulReportTransactionEffects.ts +36 -0
- package/src/features/haneulSignAndExecuteTransaction.ts +38 -0
- package/src/features/haneulSignAndExecuteTransactionBlock.ts +51 -0
- package/src/features/haneulSignMessage.ts +54 -0
- package/src/features/haneulSignPersonalMessage.ts +44 -0
- package/src/features/haneulSignTransaction.ts +44 -0
- package/src/features/haneulSignTransactionBlock.ts +49 -0
- package/src/features/index.ts +61 -0
- package/src/index.ts +10 -0
- package/src/types.ts +175 -0
- package/src/wallet.ts +100 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { WalletWithFeatures } from '@wallet-standard/core';
|
|
2
|
+
import type { HaneulSignAndExecuteTransactionInput, HaneulSignTransactionInput, HaneulWalletFeatures } from './features/index.js';
|
|
3
|
+
declare module '@wallet-standard/core' {
|
|
4
|
+
interface Wallet {
|
|
5
|
+
/**
|
|
6
|
+
* Unique identifier of the Wallet.
|
|
7
|
+
*
|
|
8
|
+
* If not provided, the wallet name will be used as the identifier.
|
|
9
|
+
*/
|
|
10
|
+
readonly id?: string;
|
|
11
|
+
}
|
|
12
|
+
interface StandardConnectOutput {
|
|
13
|
+
supportedIntents?: string[];
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export type { Wallet } from '@wallet-standard/core';
|
|
17
|
+
export declare function signAndExecuteTransaction(wallet: WalletWithFeatures<Partial<HaneulWalletFeatures>>, input: HaneulSignAndExecuteTransactionInput): Promise<import("./features/haneulSignAndExecuteTransaction.js").HaneulSignAndExecuteTransactionOutput>;
|
|
18
|
+
export declare function signTransaction(wallet: WalletWithFeatures<Partial<HaneulWalletFeatures>>, input: HaneulSignTransactionInput): Promise<import("./features/haneulSignTransaction.js").SignedTransaction>;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { bcs } from "@haneullabs/haneul/bcs";
|
|
2
|
+
import { Transaction } from "@haneullabs/haneul/transactions";
|
|
3
|
+
import { fromBase64, toBase64 } from "@haneullabs/haneul/utils";
|
|
4
|
+
async function signAndExecuteTransaction(wallet, input) {
|
|
5
|
+
if (wallet.features["sui:signAndExecuteTransaction"]) {
|
|
6
|
+
return wallet.features["sui:signAndExecuteTransaction"].signAndExecuteTransaction(input);
|
|
7
|
+
}
|
|
8
|
+
if (!wallet.features["sui:signAndExecuteTransactionBlock"]) {
|
|
9
|
+
throw new Error(
|
|
10
|
+
`Provided wallet (${wallet.name}) does not support the signAndExecuteTransaction feature.`
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
const { signAndExecuteTransactionBlock } = wallet.features["sui:signAndExecuteTransactionBlock"];
|
|
14
|
+
const transactionBlock = Transaction.from(await input.transaction.toJSON());
|
|
15
|
+
const { digest, rawEffects, rawTransaction } = await signAndExecuteTransactionBlock({
|
|
16
|
+
account: input.account,
|
|
17
|
+
chain: input.chain,
|
|
18
|
+
transactionBlock,
|
|
19
|
+
options: {
|
|
20
|
+
showRawEffects: true,
|
|
21
|
+
showRawInput: true
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
const [
|
|
25
|
+
{
|
|
26
|
+
txSignatures: [signature],
|
|
27
|
+
intentMessage: { value: bcsTransaction }
|
|
28
|
+
}
|
|
29
|
+
] = bcs.SenderSignedData.parse(fromBase64(rawTransaction));
|
|
30
|
+
const bytes = bcs.TransactionData.serialize(bcsTransaction).toBase64();
|
|
31
|
+
return {
|
|
32
|
+
digest,
|
|
33
|
+
signature,
|
|
34
|
+
bytes,
|
|
35
|
+
effects: toBase64(new Uint8Array(rawEffects))
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
async function signTransaction(wallet, input) {
|
|
39
|
+
if (wallet.features["sui:signTransaction"]) {
|
|
40
|
+
return wallet.features["sui:signTransaction"].signTransaction(input);
|
|
41
|
+
}
|
|
42
|
+
if (!wallet.features["sui:signTransactionBlock"]) {
|
|
43
|
+
throw new Error(
|
|
44
|
+
`Provided wallet (${wallet.name}) does not support the signTransaction feature.`
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
const { signTransactionBlock } = wallet.features["sui:signTransactionBlock"];
|
|
48
|
+
const transaction = Transaction.from(await input.transaction.toJSON());
|
|
49
|
+
const { transactionBlockBytes, signature } = await signTransactionBlock({
|
|
50
|
+
transactionBlock: transaction,
|
|
51
|
+
account: input.account,
|
|
52
|
+
chain: input.chain
|
|
53
|
+
});
|
|
54
|
+
return { bytes: transactionBlockBytes, signature };
|
|
55
|
+
}
|
|
56
|
+
export {
|
|
57
|
+
signAndExecuteTransaction,
|
|
58
|
+
signTransaction
|
|
59
|
+
};
|
|
60
|
+
//# sourceMappingURL=wallet.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/wallet.ts"],
|
|
4
|
+
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { bcs } from '@haneullabs/haneul/bcs';\nimport { Transaction } from '@haneullabs/haneul/transactions';\nimport { fromBase64, toBase64 } from '@haneullabs/haneul/utils';\nimport type { WalletWithFeatures } from '@wallet-standard/core';\n\nimport type {\n\tHaneulSignAndExecuteTransactionInput,\n\tHaneulSignTransactionInput,\n\tHaneulWalletFeatures,\n} from './features/index.js';\n\ndeclare module '@wallet-standard/core' {\n\texport interface Wallet {\n\t\t/**\n\t\t * Unique identifier of the Wallet.\n\t\t *\n\t\t * If not provided, the wallet name will be used as the identifier.\n\t\t */\n\t\treadonly id?: string;\n\t}\n\n\texport interface StandardConnectOutput {\n\t\tsupportedIntents?: string[];\n\t}\n}\n\nexport type { Wallet } from '@wallet-standard/core';\n\nexport async function signAndExecuteTransaction(\n\twallet: WalletWithFeatures<Partial<HaneulWalletFeatures>>,\n\tinput: HaneulSignAndExecuteTransactionInput,\n) {\n\tif (wallet.features['sui:signAndExecuteTransaction']) {\n\t\treturn wallet.features['sui:signAndExecuteTransaction'].signAndExecuteTransaction(input);\n\t}\n\n\tif (!wallet.features['sui:signAndExecuteTransactionBlock']) {\n\t\tthrow new Error(\n\t\t\t`Provided wallet (${wallet.name}) does not support the signAndExecuteTransaction feature.`,\n\t\t);\n\t}\n\n\tconst { signAndExecuteTransactionBlock } = wallet.features['sui:signAndExecuteTransactionBlock'];\n\n\tconst transactionBlock = Transaction.from(await input.transaction.toJSON());\n\tconst { digest, rawEffects, rawTransaction } = await signAndExecuteTransactionBlock({\n\t\taccount: input.account,\n\t\tchain: input.chain,\n\t\ttransactionBlock,\n\t\toptions: {\n\t\t\tshowRawEffects: true,\n\t\t\tshowRawInput: true,\n\t\t},\n\t});\n\n\tconst [\n\t\t{\n\t\t\ttxSignatures: [signature],\n\t\t\tintentMessage: { value: bcsTransaction },\n\t\t},\n\t] = bcs.SenderSignedData.parse(fromBase64(rawTransaction!));\n\n\tconst bytes = bcs.TransactionData.serialize(bcsTransaction).toBase64();\n\n\treturn {\n\t\tdigest,\n\t\tsignature,\n\t\tbytes,\n\t\teffects: toBase64(new Uint8Array(rawEffects!)),\n\t};\n}\n\nexport async function signTransaction(\n\twallet: WalletWithFeatures<Partial<HaneulWalletFeatures>>,\n\tinput: HaneulSignTransactionInput,\n) {\n\tif (wallet.features['sui:signTransaction']) {\n\t\treturn wallet.features['sui:signTransaction'].signTransaction(input);\n\t}\n\n\tif (!wallet.features['sui:signTransactionBlock']) {\n\t\tthrow new Error(\n\t\t\t`Provided wallet (${wallet.name}) does not support the signTransaction feature.`,\n\t\t);\n\t}\n\n\tconst { signTransactionBlock } = wallet.features['sui:signTransactionBlock'];\n\n\tconst transaction = Transaction.from(await input.transaction.toJSON());\n\tconst { transactionBlockBytes, signature } = await signTransactionBlock({\n\t\ttransactionBlock: transaction,\n\t\taccount: input.account,\n\t\tchain: input.chain,\n\t});\n\n\treturn { bytes: transactionBlockBytes, signature };\n}\n"],
|
|
5
|
+
"mappings": "AAGA,SAAS,WAAW;AACpB,SAAS,mBAAmB;AAC5B,SAAS,YAAY,gBAAgB;AA0BrC,eAAsB,0BACrB,QACA,OACC;AACD,MAAI,OAAO,SAAS,+BAA+B,GAAG;AACrD,WAAO,OAAO,SAAS,+BAA+B,EAAE,0BAA0B,KAAK;AAAA,EACxF;AAEA,MAAI,CAAC,OAAO,SAAS,oCAAoC,GAAG;AAC3D,UAAM,IAAI;AAAA,MACT,oBAAoB,OAAO,IAAI;AAAA,IAChC;AAAA,EACD;AAEA,QAAM,EAAE,+BAA+B,IAAI,OAAO,SAAS,oCAAoC;AAE/F,QAAM,mBAAmB,YAAY,KAAK,MAAM,MAAM,YAAY,OAAO,CAAC;AAC1E,QAAM,EAAE,QAAQ,YAAY,eAAe,IAAI,MAAM,+BAA+B;AAAA,IACnF,SAAS,MAAM;AAAA,IACf,OAAO,MAAM;AAAA,IACb;AAAA,IACA,SAAS;AAAA,MACR,gBAAgB;AAAA,MAChB,cAAc;AAAA,IACf;AAAA,EACD,CAAC;AAED,QAAM;AAAA,IACL;AAAA,MACC,cAAc,CAAC,SAAS;AAAA,MACxB,eAAe,EAAE,OAAO,eAAe;AAAA,IACxC;AAAA,EACD,IAAI,IAAI,iBAAiB,MAAM,WAAW,cAAe,CAAC;AAE1D,QAAM,QAAQ,IAAI,gBAAgB,UAAU,cAAc,EAAE,SAAS;AAErE,SAAO;AAAA,IACN;AAAA,IACA;AAAA,IACA;AAAA,IACA,SAAS,SAAS,IAAI,WAAW,UAAW,CAAC;AAAA,EAC9C;AACD;AAEA,eAAsB,gBACrB,QACA,OACC;AACD,MAAI,OAAO,SAAS,qBAAqB,GAAG;AAC3C,WAAO,OAAO,SAAS,qBAAqB,EAAE,gBAAgB,KAAK;AAAA,EACpE;AAEA,MAAI,CAAC,OAAO,SAAS,0BAA0B,GAAG;AACjD,UAAM,IAAI;AAAA,MACT,oBAAoB,OAAO,IAAI;AAAA,IAChC;AAAA,EACD;AAEA,QAAM,EAAE,qBAAqB,IAAI,OAAO,SAAS,0BAA0B;AAE3E,QAAM,cAAc,YAAY,KAAK,MAAM,MAAM,YAAY,OAAO,CAAC;AACrE,QAAM,EAAE,uBAAuB,UAAU,IAAI,MAAM,qBAAqB;AAAA,IACvE,kBAAkB;AAAA,IAClB,SAAS,MAAM;AAAA,IACf,OAAO,MAAM;AAAA,EACd,CAAC;AAED,SAAO,EAAE,OAAO,uBAAuB,UAAU;AAClD;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/bytes.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/identifier.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/wallet.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/window.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+app@1.1.0/node_modules/@wallet-standard/app/lib/types/wallets.d.ts","../../../node_modules/.pnpm/@wallet-standard+app@1.1.0/node_modules/@wallet-standard/app/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/codes.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/context.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/error.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/stack-trace.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.1.0/node_modules/@wallet-standard/features/lib/types/connect.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.1.0/node_modules/@wallet-standard/features/lib/types/disconnect.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.1.0/node_modules/@wallet-standard/features/lib/types/events.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.1.0/node_modules/@wallet-standard/features/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.1.0/node_modules/@wallet-standard/wallet/lib/types/register.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.1.0/node_modules/@wallet-standard/wallet/lib/types/util.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.1.0/node_modules/@wallet-standard/wallet/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+core@1.1.1/node_modules/@wallet-standard/core/lib/types/index.d.ts","../src/chains.ts","../src/features/haneulreporttransactioneffects.ts","../src/features/haneulsigntransaction.ts","../src/features/haneulsignandexecutetransaction.ts","../../typescript/dist/cjs/jsonrpc/rpc-websocket-client.d.ts","../../typescript/dist/cjs/jsonrpc/http-transport.d.ts","../../typescript/dist/cjs/client/network.d.ts","../../typescript/dist/cjs/jsonrpc/types/generated.d.ts","../../typescript/dist/cjs/jsonrpc/types/chain.d.ts","../../typescript/dist/cjs/jsonrpc/types/coins.d.ts","../../typescript/dist/cjs/jsonrpc/types/common.d.ts","../../typescript/dist/cjs/jsonrpc/types/changes.d.ts","../../typescript/dist/cjs/utils/haneul-types.d.ts","../../typescript/dist/cjs/experimental/cache.d.ts","../../../node_modules/.pnpm/valibot@1.2.0_typescript@5.9.3/node_modules/valibot/dist/index.d.mts","../../utils/dist/cjs/b58.d.ts","../../utils/dist/cjs/b64.d.ts","../../utils/dist/cjs/hex.d.ts","../../utils/dist/cjs/types.d.ts","../../utils/dist/cjs/chunk.d.ts","../../utils/dist/cjs/with-resolver.d.ts","../../utils/dist/cjs/dataloader.d.ts","../../utils/dist/cjs/index.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/utils.d.ts","../../bcs/dist/cjs/index.d.ts","../../typescript/dist/cjs/transactions/data/internal.d.ts","../../typescript/dist/cjs/bcs/types.d.ts","../../typescript/dist/cjs/transactions/data/v1.d.ts","../../typescript/dist/cjs/transactions/data/v2.d.ts","../../typescript/dist/cjs/bcs/bcs.d.ts","../../typescript/dist/cjs/bcs/type-tag-serializer.d.ts","../../typescript/dist/cjs/bcs/pure.d.ts","../../typescript/dist/cjs/bcs/index.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/experimental/types.d.ts","../../typescript/dist/cjs/experimental/core.d.ts","../../typescript/dist/cjs/experimental/client.d.ts","../../typescript/dist/cjs/experimental/transports/utils.d.ts","../../typescript/dist/cjs/experimental/index.d.ts","../../typescript/dist/cjs/cryptography/keypair.d.ts","../../typescript/dist/cjs/zklogin/bcs.d.ts","../../typescript/dist/cjs/zklogin/publickey.d.ts","../../typescript/dist/cjs/multisig/signer.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/index.d.ts","../../typescript/dist/cjs/transactions/commands.d.ts","../../typescript/dist/cjs/transactions/inputs.d.ts","../../typescript/dist/cjs/transactions/resolve.d.ts","../../typescript/dist/cjs/transactions/object.d.ts","../../typescript/dist/cjs/transactions/pure.d.ts","../../typescript/dist/cjs/transactions/transaction.d.ts","../../typescript/dist/cjs/transactions/transactiondata.d.ts","../../typescript/dist/cjs/experimental/mvr.d.ts","../../typescript/dist/cjs/transactions/serializer.d.ts","../../typescript/dist/cjs/transactions/objectcache.d.ts","../../typescript/dist/cjs/transactions/executor/serial.d.ts","../../typescript/dist/cjs/transactions/executor/parallel.d.ts","../../typescript/dist/cjs/transactions/intents/coinwithbalance.d.ts","../../typescript/dist/cjs/transactions/arguments.d.ts","../../typescript/dist/cjs/transactions/plugins/namedpackagesplugin.d.ts","../../typescript/dist/cjs/transactions/utils.d.ts","../../typescript/dist/cjs/transactions/index.d.ts","../../typescript/dist/cjs/jsonrpc/types/params.d.ts","../../typescript/dist/cjs/jsonrpc/types/index.d.ts","../../typescript/dist/cjs/jsonrpc/core.d.ts","../../typescript/dist/cjs/jsonrpc/client.d.ts","../../typescript/dist/cjs/jsonrpc/errors.d.ts","../../typescript/dist/cjs/client/index.d.ts","../src/features/haneulsigntransactionblock.ts","../src/features/haneulsignandexecutetransactionblock.ts","../src/features/haneulsignmessage.ts","../src/features/haneulsignpersonalmessage.ts","../src/features/haneulgetcapabilities.ts","../src/features/index.ts","../src/detect.ts","../../typescript/dist/cjs/utils/format.d.ts","../../typescript/dist/cjs/utils/haneulns.d.ts","../../typescript/dist/cjs/utils/constants.d.ts","../../typescript/dist/cjs/utils/move-registry.d.ts","../../typescript/dist/cjs/utils/dynamic-fields.d.ts","../../typescript/dist/cjs/utils/derived-objects.d.ts","../../typescript/dist/cjs/utils/index.d.ts","../src/wallet.ts","../src/types.ts","../src/index.ts"],"fileIdsList":[[88],[87],[83,84,85,86],[83,84],[85],[87,89,94,98,101],[90],[90,91],[90,92,93],[87,95,96,97],[99,100],[126,127,128],[127,129],[125,126,127,128,129,130,131],[125,129],[127],[132,134],[127,132,134,137,138,139],[132],[134],[108,109,175,177,178],[141,142,143,149,154,155],[140],[141,142,143,148,162],[141],[142,143,153],[116,125,144,145],[144,146,173],[116,144,145,146,147],[115,116,144,163],[144],[116,146,173],[108,144,146,156,162,175,176],[144,145,159,163,177],[107],[110],[110,111,112,113,114,174],[110,173],[142,143,149,151,152],[153,156],[133,158,161,162],[117,133,162],[117,125,132],[117,132,133,134],[117,132],[156,162,166,179],[140,149,162,166,179],[133,135,136,157,158,159,162,163,164,165,166,167,168,169,170,171,172],[132,133],[159,162,179],[162],[133,140,159],[145,159,163,164],[132,139],[148,163],[132,133,179],[117,132,133,134,145,156,157,158,159,160,161],[117,133,135,136,162],[133,179],[137],[115,132,138,187,188,189,190,191,192],[142,144,150],[118,119,120,121,122,123,124],[102,194],[102,185,194],[105],[179,180],[102,173,194],[102,104,105,106,180,181,182,183,184,194],[102,103,185,186,194,195],[102,140,173,185,193,194]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"dfd85bb9018f85a16f56b2bdb06712550c72ad43771c984f0740933562716b9f","impliedFormat":99},{"version":"25b4ea24da7466384d81d69032e567677fca0513b0b44cea20d129ff6096c289","impliedFormat":99},{"version":"96355d8065d0c096957b951e23a16988f9f5f18e1bf680213af92de3a2071a5d","impliedFormat":99},{"version":"2f9c7e500eac01c5a7338a3cd95ef8a9e9e08295d4a8b2f4c84ef647bd4fd977","impliedFormat":99},{"version":"1a810061be5ef5057426198bed4dc914b1995bc525152bd4af593c2a51a799b7","impliedFormat":99},{"version":"7e45e414bb41c94e14e8c7bb642490f47728696a2880e73433eafbab59e03d6e","impliedFormat":99},{"version":"8910c30772a9a086a139bcf0203a714db70a299d361627273df880e9dea4cd5c","impliedFormat":99},{"version":"8aecd8b54577c214f7ef5246a2eec935410bc6284c60078f277079bf90800e21","impliedFormat":99},{"version":"22aaf953dc7c21b8c1ae6d300244da8ddf834b4549dd6fa08b1f6f151572b354","impliedFormat":99},{"version":"f89df9110a9046d071ecc2867ff33117b3cbc259b8fbdf174df533402368c1f3","impliedFormat":99},{"version":"967f3d11be9604e6259c1bca6d69c914d76c6ee48970ece36ea6b6c1d85c668a","impliedFormat":99},{"version":"23f6a6b14d5de502e44fa1919c21c0558a445eddee137d993ce0c9599ab46c42","impliedFormat":99},{"version":"48998ffd6da8e45e175564b60600f5eeb0e0bb8535ac3406104cb392dca16a67","impliedFormat":99},{"version":"ecb017e1aa6e9639cbfa5022b9609e3f925bf5a0fec1fc42cf1b069e9ec4ee06","impliedFormat":99},{"version":"994d246e044aa50e3ae6805b2df313eaa0c9b47592ad9aca9bf512a6d6da24ba","impliedFormat":99},{"version":"0e9b283fc85241f6309eb2e0cc86335a00f19357641b763bd5b35e4b4a185852","impliedFormat":99},{"version":"ec4853a5dba45ffc33259e6b84a65ea4f2c5fb3719e0ea4728a3803bba91b80f","impliedFormat":99},{"version":"8307bc95a7d9cfbf2fa7ef1b6c11d5448a63c4f71d4c6e9f6c8c39972c90aaa0","impliedFormat":99},{"version":"bdb0f27cd425bdb555de6cddf8a751ae9b6472d3a96e80f24b45e492909e2a22","impliedFormat":99},{"version":"e8137d8a29ae7ea65412842b64dba0a5a5ec6b38168d61bdde9ac9da363247d1","impliedFormat":99},{"version":"d8ffe8b227f57392942c79d4d75995d57901f8355c4cc5167ef3727bc5c6b602","signature":"837382efdde44efa9bf2f895a3d2c788b23c0c78042d7d4cfa82a453c2937e49"},{"version":"6b142414d9f04161e31569e3a76368e734dbed85f254606c144181383396a4ac","signature":"387a2e3bc1a2f9e684a4df75e08307bc11eb946c1aca4226cd68f005d823395c"},{"version":"9bfa33376524e4f9a37044cf7c8f96d096de9648519a96126567697d7ea6632c","signature":"e3e7a964de626409337f5f42515e1cef7d5f30dd50bc3ad9a354f7f11aabfd08"},{"version":"c53932cc0ec11a77ea11f9976255076e2545dd1cd50184ba6facf7c092f3cc2b","signature":"f0ad9101889f88959e5c74414649238d2c684627a59554e44448517733447f2b"},"ca2cb26c683c28e46e00db9f7fc44a4fa907e655dd069e18e92d99cd5425a149","3aad2e9bd9c9f650860491e3518ee45c22c9ea2c372b142483d9f0a907d72da6","3ac7c43ef8ba2fbcaade1891039ed9b74cb3f40219360495b939c868f93db28d","d881d9c7c7789b0ffbe70ad2a999dd4080a8da98cfa6fe280804e05494b188e5","bc0c3ad6b457672402f6a753fd306a904716fe8dca4339124d593a3a4cca689c","7142789577fd90bacde1a3d92ed9da5c86c25b2d5deace47e0ebfb32eaa4e5de","aefe5f5213976a6e1a954303ac2dd0d4da22a71534866b33b74b36648895c674","386476b10a482926bba1f3b694bc8658c5b9bdd8643df79bf93a95a5784fe518","a9e28490049be53e6055f87102980a3810352a23fc53ed39ffce715d510fe439","b4fd31dd32c28f8eb1ae99486f49cc346968c19f1969e6f6037808bf4464b111",{"version":"1a86d5d23dfb656002bc90facad9d11ccc3310ec1c3df2ec236e7cf55d13cc8b","impliedFormat":99},"bdb2cc4c5a0570a3286b1a0702fcb6c8f72ae5d0a5a35044c923193aed2bb6a1","31b79ffd0e4a10e1fd4843dfed5bc96256e2630b92e24650b07395936933605a","3f897119acae077b426029ea33e7337dd21369740ddf651d25abaf2f49c62915","7ce397e27f352b2017c185002b5efc8664ad567f88efe38277271d041ab0d722","209e116166312b46ec827eb6f9d429172919497b553fe1bc0b51947e4e021aec","68dda8f30950718cc8992987864d2eaee7a68521924027befebf39e3540fee4c","5c95565f34cd4fa1c6ee4b7440ef83beeb8b78a190068b9c8c4cd84261b3f886","87b42991cc53932366cd08e4eb409de575dd989f0d02e6b79ffd481e11687eaf","ec95aac5334a7f581ca3703334d605fd099255c4e7ae6cc0f758a8a61bd2583d","3bb498816e3fa6666a1b6324a76f2d28374fce94655e5ffdfa2e8c8c77290e0d","04c5db4edb03d4b668b9ebdcacd640a18fc15fd1ebf3ebf4ef43ecfc44aaf023","df4c4034c586d7c1ae1a5f433a06898b137e2bc8d3def6e57b6075caf57efe65","f11730a1154515dd671e76fa629ff46a08693197a6153dfe93705b3a77d39907","e7cbc9607192046650bc722e2d4106d71c6c6159267f93e88ea683f539261fc7","de3e5c8f3d749bc128f79f273f34eb4d29db576dc9e329e523998742e78f36f9","d232023c052ee3c541edb6ea9a5456bb515c07e7f14104e2dd97ec164fae8ce3","b1d02a85c9f04d82e4b00f55427f74e764b6682cd19edbcff2f29d0e327e5ba0","95aa1b28bd583a47a2995735171d9cfc5031d2d9679470571eb3c13844dfe03e","895594ff8798818ba96b82d77929c4333c615b0a8a073c361d8e66d168aedc17","e2e44df189040c4f82337a5558697e3e3705afd655b5f4f1ba8e22ca3173489b","aac4a89f94360b0f11920f96c6147ba6ce77bbd7af92880754add8831d895c23","dee2d3dad91b5c04315773f7f0aba337687a3e2667f1c1c9a078ae6261684e22","2eaeb7e6db1e28a83b15e73517e82749ad9edca8225c1bbee1948fd6427f0338","cdcf8cf84b182d070597db8def57a81247c812888dee0b879106e81e4fd4f1b7","318b715e42488ee690958c3514d7c97a3c687f3748d6590f195d9a80e6c6bd20","63981f41158318b6fed13c500b79a82a46c041faf8daa3c2311d174c454868c1","c7764087019ab029da46b6ff1f0bc5b5614ae4484b100072943bbcbe6e9a4541","0ad6ba5f48806fa759987dd4b7abd36bd7c9fba45a880ac69766cdf8c646da86","8f863cd32b9e0586fec7500aa6ce080f3b62058dddc316446747f595e5e8fc3b","52e49f82d4974e235e5da5190e3143884e0f2a6f6bbd4c12177a00d34a2310ea","2b91da7caf874b7f839b3a62c613c956da0a7ae06b746f85b5ff0ab3dc3b029b","16e3e821e55dc52cae4c1f596a170263bfb2ac30dcfc458a7226192f07d8ecfa","f58a63f1c65836cfa7a1bdc7dbb4f5bdb532ca47ce415f81cd4bb2f1cd1d3666","33133eef13bbf61e5a17fd70e56bfff7de831068c4465b818471e7594c25a13b","932ee5261690ca53eb4c5de4d5dd9ea4ca68e983a6bf7660ef83df08aae042ca","29e477895964a9cf2a352c1e78732c1ac343ed8a280eada446f23e070a64c970","c31a8a62d5cf2e9f354aa4dc6b7d3a85cae1802c826cea14109afee413cc2195","eb3671ec7a51c0e20962ba24be3fd7a41919455739c123e774d5dd5f125eec25","2ffa5e22e7a34350b8227f603abaa0a2cb6baa0c940c7e6bef98125c617639be","3613aa0b504c7f042f5f145d5201307e8eee57e5e990ca1b30cd83cc8b7bdbeb","13c95555bcb96b279ddf963c8610e93844d94c5562ef1a88dbc7ffc08d94b158","109d0dac000b5193fdd2ca4cb4a23a277863e00162587285e6398a785d16c6f9","b4719c4d26b81145f314614138ba7a36ad71001dfc25721aee537564a429f58d","b6c3e22815655be589e6a9f49879a029ad71e2eb6102a51e4915690f57191e4f","04a59b7ee5e8aa610e3ffb4670db1c62e5652394ec8dbc31da74687ba8aab219","82fc4319667b24082cf6424faf8695b38d471cd3a3371a5d9980e799ec68bdc3","e41d8a66a15a6056f9ca8841567cc903362f80761d7d96a025c453b9e417c6c8","168be3b155304e964678fc63ea9863f582a12c48e95365bba69efca8127b2f8b","3862dfdd19d7037f1689c0ded194a97c5c2a0cb90747b937465ce13f1bd40154","e70896629cc4510ebcbccea7931067cecd08836460b01364517819149c83ce55","ed75436dbab3763368617401f36a812f2ea0e9c9e7d80d86506d863fea8b56c8","21e660ecdc4535bd84d16333f536da80774837a6585fbb50b066718db2ff2837","b84bd35d255be1231813319a3281eb9b07fac5d0e14d6971cf274261cb30b3e4","3177c0960f32aacebd3ddc744fb99c27b2dd839b78e0e1fa1634a2300833f269","d3eaf1f5fb98867ae6510d9d241dc669c51ef00bbdf6bcf44837b0f7e034061e","92730ecadefdfc2fd2cdfe8b0dcf33d9bdac447b0f36c4348199d947987333eb","5b7288afe00b4d6f1a6d17764fb783717f27dcef1342eaff854e00c3b7ebd15a","5ab270cc2d274e06f8f17b3d03864ca588d064f6049b30f4231ab990386fe180","9af5f46de3177813cdaeef9760da42a58047fcd6bc0f6024c76a99b6f2eddd60","56afecebf29dbb41b0f8a68578e52c5f1c375f028356e924a2815c162317976e","646b6ad6c4eb08b04ffe289c9c419862334e612cb2a11cc31176da5bb5260365","31022eb281701bc49d2df242870fa4917e171cbe143224bf88c28abc53a9b05c",{"version":"27fd5011f8f9807fd0c4c4eba31bc181a6998284b36443e4be25b5200fe84e4d","signature":"37da56c2c182d76a4eb4c534fdd5ed1058d3d1bc8ddc8c92ff20adfb4ca2a0f8"},{"version":"ffbcae522701219bb4537957e810689fb9129b1230e40f7f8afab2415cdb8191","signature":"01a33209451ccaa2871c6a73d87865802ffc8968d2dbdb99217a6885f4f9713a"},{"version":"04ecf3f233ff337d7874f3471c3846a28f5b3772101ca3755b10aa1d237cb93d","signature":"aac20a5f48360ab934f1ed6a185e969c173080629721d829663c3f42aab64a6e"},{"version":"da438a1af178007367ed37bb8def8354b82a5666f26f0fd012b6d19554d0ec8d","signature":"29910d7cce985084b06a67876abb0f1536303548a4646b6b12ea8c192535f239"},{"version":"e5f39bc9304b545af888efa01ffdebecf6593e682c177f606d40b1bf6469b800","signature":"043c897347a06d5dd8b9d2b814b1d34525cd90df93300fd7d8246cee7ffb8e56"},{"version":"097812df2d859c8c8497bb871265f59e57fbc9eb19fc4592211e20cb1242434e","signature":"b91907ec1e035c7e8baa4bd490ad155bd243d08ecd169a67ff6beb8ddb78ee70"},{"version":"25659f01b2bb4a21e739c96c5fd0776a993672e9a49c3874554e2febc9399913","signature":"cab761ad1df1e686e9f8d5acf82ca64e81af9aeac121d52a830149edc6dcf51a"},"ddc8c232a5b14c7cb91899a5c5fc74b798a441de0d6816eca6ef622f4100460c","5bff754e6f04bd885b915f32c7ab2236675ab400f37905bc981e90858d1934c9","877b5f0d16877d42b6896fd126b9ab6c1de9763585dfeb5a811b9f5425216152","4c435b4ce3ff67eca38bb0ac3ab1f2a1ba75eac667634ba41030e6907a417116","0e3379c229196c273c4848fae0ac4cc842c81705cfc00ca664573768d9eb668a","c0d41ef3a03824cb75c14a3c82c57ddaf6e328a07c443c331dc613f17538bf21","998138fb4face3da02b4713e84730ade7c5af5f5935c9958c511f03a9392795e",{"version":"b5cc80cfaa2483385761c63217d8532537069d741db98e0396dcd28b47dbb2dd","signature":"c271df8bb7326e68bf5ddc9f0e52779af202e1609b9d3f8a99fa53fc09b56a48"},{"version":"5c4468fccad48f87ff511349ddff164a2f466dac8ffff94d88740b2144febcc7","signature":"ab557b512cda66c49d010eccb4d494e6788d7d4c494caa57defb9dd816822085"},{"version":"bcbddb5c3b2b4af8145b12b483c7f9182cdd62d3953e21d5689d97163db86fd7","signature":"9dea12b8a9b671dace98a11531be2aadc3604d1b73c842e60c482419d0cc2f7d"}],"root":[[103,106],[180,186],[194,196]],"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},"referencedMap":[[89,1],[88,2],[87,3],[85,4],[86,5],[102,6],[91,7],[92,8],[94,9],[95,2],[97,2],[98,10],[101,11],[99,2],[100,2],[129,12],[130,13],[132,14],[127,15],[131,16],[128,16],[137,17],[140,18],[139,19],[138,20],[179,21],[156,22],[141,23],[149,24],[142,25],[154,26],[146,27],[145,28],[148,29],[164,30],[147,31],[144,32],[177,33],[176,34],[108,35],[111,36],[114,36],[175,37],[174,38],[153,39],[152,40],[170,41],[157,42],[133,43],[135,44],[136,45],[168,46],[167,47],[173,48],[158,49],[169,50],[160,51],[166,52],[171,53],[161,54],[159,55],[165,56],[162,57],[163,58],[172,59],[192,60],[191,60],[193,61],[150,19],[151,62],[125,63],[103,64],[186,65],[104,64],[106,66],[181,67],[182,64],[183,64],[105,64],[180,68],[185,69],[196,70],[194,71]],"latestChangedDtsFile":"./esm/index.d.ts","version":"5.9.3"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/bytes.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/identifier.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/wallet.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/window.d.ts","../../../node_modules/.pnpm/@wallet-standard+base@1.1.0/node_modules/@wallet-standard/base/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+app@1.1.0/node_modules/@wallet-standard/app/lib/types/wallets.d.ts","../../../node_modules/.pnpm/@wallet-standard+app@1.1.0/node_modules/@wallet-standard/app/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/codes.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/context.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/error.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/stack-trace.d.ts","../../../node_modules/.pnpm/@wallet-standard+errors@0.1.1/node_modules/@wallet-standard/errors/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.1.0/node_modules/@wallet-standard/features/lib/types/connect.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.1.0/node_modules/@wallet-standard/features/lib/types/disconnect.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.1.0/node_modules/@wallet-standard/features/lib/types/events.d.ts","../../../node_modules/.pnpm/@wallet-standard+features@1.1.0/node_modules/@wallet-standard/features/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.1.0/node_modules/@wallet-standard/wallet/lib/types/register.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.1.0/node_modules/@wallet-standard/wallet/lib/types/util.d.ts","../../../node_modules/.pnpm/@wallet-standard+wallet@1.1.0/node_modules/@wallet-standard/wallet/lib/types/index.d.ts","../../../node_modules/.pnpm/@wallet-standard+core@1.1.1/node_modules/@wallet-standard/core/lib/types/index.d.ts","../src/chains.ts","../src/features/haneulreporttransactioneffects.ts","../src/features/haneulsigntransaction.ts","../src/features/haneulsignandexecutetransaction.ts","../../typescript/dist/cjs/jsonrpc/rpc-websocket-client.d.ts","../../typescript/dist/cjs/jsonrpc/http-transport.d.ts","../../typescript/dist/cjs/client/network.d.ts","../../typescript/dist/cjs/jsonrpc/types/generated.d.ts","../../typescript/dist/cjs/jsonrpc/types/chain.d.ts","../../typescript/dist/cjs/jsonrpc/types/coins.d.ts","../../typescript/dist/cjs/jsonrpc/types/common.d.ts","../../typescript/dist/cjs/jsonrpc/types/changes.d.ts","../../typescript/dist/cjs/utils/haneul-types.d.ts","../../typescript/dist/cjs/experimental/cache.d.ts","../../../node_modules/.pnpm/valibot@1.2.0_typescript@5.9.3/node_modules/valibot/dist/index.d.mts","../../utils/dist/cjs/b58.d.ts","../../utils/dist/cjs/b64.d.ts","../../utils/dist/cjs/hex.d.ts","../../utils/dist/cjs/types.d.ts","../../utils/dist/cjs/chunk.d.ts","../../utils/dist/cjs/with-resolver.d.ts","../../utils/dist/cjs/dataloader.d.ts","../../utils/dist/cjs/index.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/utils.d.ts","../../bcs/dist/cjs/index.d.ts","../../typescript/dist/cjs/transactions/data/internal.d.ts","../../typescript/dist/cjs/bcs/types.d.ts","../../typescript/dist/cjs/transactions/data/v1.d.ts","../../typescript/dist/cjs/transactions/data/v2.d.ts","../../typescript/dist/cjs/bcs/bcs.d.ts","../../typescript/dist/cjs/bcs/type-tag-serializer.d.ts","../../typescript/dist/cjs/bcs/pure.d.ts","../../typescript/dist/cjs/bcs/index.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/experimental/types.d.ts","../../typescript/dist/cjs/experimental/core.d.ts","../../typescript/dist/cjs/experimental/client.d.ts","../../typescript/dist/cjs/experimental/transports/utils.d.ts","../../typescript/dist/cjs/experimental/index.d.ts","../../typescript/dist/cjs/cryptography/keypair.d.ts","../../typescript/dist/cjs/zklogin/bcs.d.ts","../../typescript/dist/cjs/zklogin/publickey.d.ts","../../typescript/dist/cjs/multisig/signer.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/index.d.ts","../../typescript/dist/cjs/transactions/commands.d.ts","../../typescript/dist/cjs/transactions/inputs.d.ts","../../typescript/dist/cjs/transactions/resolve.d.ts","../../typescript/dist/cjs/transactions/object.d.ts","../../typescript/dist/cjs/transactions/pure.d.ts","../../typescript/dist/cjs/transactions/transaction.d.ts","../../typescript/dist/cjs/transactions/transactiondata.d.ts","../../typescript/dist/cjs/experimental/mvr.d.ts","../../typescript/dist/cjs/transactions/serializer.d.ts","../../typescript/dist/cjs/transactions/objectcache.d.ts","../../typescript/dist/cjs/transactions/executor/serial.d.ts","../../typescript/dist/cjs/transactions/executor/parallel.d.ts","../../typescript/dist/cjs/transactions/intents/coinwithbalance.d.ts","../../typescript/dist/cjs/transactions/arguments.d.ts","../../typescript/dist/cjs/transactions/plugins/namedpackagesplugin.d.ts","../../typescript/dist/cjs/transactions/utils.d.ts","../../typescript/dist/cjs/transactions/index.d.ts","../../typescript/dist/cjs/jsonrpc/types/params.d.ts","../../typescript/dist/cjs/jsonrpc/types/index.d.ts","../../typescript/dist/cjs/jsonrpc/core.d.ts","../../typescript/dist/cjs/jsonrpc/client.d.ts","../../typescript/dist/cjs/jsonrpc/errors.d.ts","../../typescript/dist/cjs/client/index.d.ts","../src/features/haneulsigntransactionblock.ts","../src/features/haneulsignandexecutetransactionblock.ts","../src/features/haneulsignmessage.ts","../src/features/haneulsignpersonalmessage.ts","../src/features/haneulgetcapabilities.ts","../src/features/index.ts","../src/detect.ts","../../typescript/dist/cjs/utils/format.d.ts","../../typescript/dist/cjs/utils/haneulns.d.ts","../../typescript/dist/cjs/utils/constants.d.ts","../../typescript/dist/cjs/utils/move-registry.d.ts","../../typescript/dist/cjs/utils/dynamic-fields.d.ts","../../typescript/dist/cjs/utils/derived-objects.d.ts","../../typescript/dist/cjs/utils/index.d.ts","../src/wallet.ts","../src/types.ts","../src/index.ts"],"fileIdsList":[[88],[87],[83,84,85,86],[83,84],[85],[87,89,94,98,101],[90],[90,91],[90,92,93],[87,95,96,97],[99,100],[126,127,128],[127,129],[125,126,127,128,129,130,131],[125,129],[127],[132,134],[127,132,134,137,138,139],[132],[134],[108,109,175,177,178],[141,142,143,149,154,155],[140],[141,142,143,148,162],[141],[142,143,153],[116,125,144,145],[144,146,173],[116,144,145,146,147],[115,116,144,163],[144],[116,146,173],[108,144,146,156,162,175,176],[144,145,159,163,177],[107],[110],[110,111,112,113,114,174],[110,173],[142,143,149,151,152],[153,156],[133,158,161,162],[117,133,162],[117,125,132],[117,132,133,134],[117,132],[156,162,166,179],[140,149,162,166,179],[133,135,136,157,158,159,162,163,164,165,166,167,168,169,170,171,172],[132,133],[159,162,179],[162],[133,140,159],[145,159,163,164],[132,139],[148,163],[132,133,179],[117,132,133,134,145,156,157,158,159,160,161],[117,133,135,136,162],[133,179],[137],[115,132,138,187,188,189,190,191,192],[142,144,150],[118,119,120,121,122,123,124],[102,194],[102,185,194],[105],[179,180],[102,173,194],[102,104,105,106,180,181,182,183,184,194],[102,103,185,186,194,195],[102,140,173,185,193,194]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"dfd85bb9018f85a16f56b2bdb06712550c72ad43771c984f0740933562716b9f","impliedFormat":99},{"version":"25b4ea24da7466384d81d69032e567677fca0513b0b44cea20d129ff6096c289","impliedFormat":99},{"version":"96355d8065d0c096957b951e23a16988f9f5f18e1bf680213af92de3a2071a5d","impliedFormat":99},{"version":"2f9c7e500eac01c5a7338a3cd95ef8a9e9e08295d4a8b2f4c84ef647bd4fd977","impliedFormat":99},{"version":"1a810061be5ef5057426198bed4dc914b1995bc525152bd4af593c2a51a799b7","impliedFormat":99},{"version":"7e45e414bb41c94e14e8c7bb642490f47728696a2880e73433eafbab59e03d6e","impliedFormat":99},{"version":"8910c30772a9a086a139bcf0203a714db70a299d361627273df880e9dea4cd5c","impliedFormat":99},{"version":"8aecd8b54577c214f7ef5246a2eec935410bc6284c60078f277079bf90800e21","impliedFormat":99},{"version":"22aaf953dc7c21b8c1ae6d300244da8ddf834b4549dd6fa08b1f6f151572b354","impliedFormat":99},{"version":"f89df9110a9046d071ecc2867ff33117b3cbc259b8fbdf174df533402368c1f3","impliedFormat":99},{"version":"967f3d11be9604e6259c1bca6d69c914d76c6ee48970ece36ea6b6c1d85c668a","impliedFormat":99},{"version":"23f6a6b14d5de502e44fa1919c21c0558a445eddee137d993ce0c9599ab46c42","impliedFormat":99},{"version":"48998ffd6da8e45e175564b60600f5eeb0e0bb8535ac3406104cb392dca16a67","impliedFormat":99},{"version":"ecb017e1aa6e9639cbfa5022b9609e3f925bf5a0fec1fc42cf1b069e9ec4ee06","impliedFormat":99},{"version":"994d246e044aa50e3ae6805b2df313eaa0c9b47592ad9aca9bf512a6d6da24ba","impliedFormat":99},{"version":"0e9b283fc85241f6309eb2e0cc86335a00f19357641b763bd5b35e4b4a185852","impliedFormat":99},{"version":"ec4853a5dba45ffc33259e6b84a65ea4f2c5fb3719e0ea4728a3803bba91b80f","impliedFormat":99},{"version":"8307bc95a7d9cfbf2fa7ef1b6c11d5448a63c4f71d4c6e9f6c8c39972c90aaa0","impliedFormat":99},{"version":"bdb0f27cd425bdb555de6cddf8a751ae9b6472d3a96e80f24b45e492909e2a22","impliedFormat":99},{"version":"e8137d8a29ae7ea65412842b64dba0a5a5ec6b38168d61bdde9ac9da363247d1","impliedFormat":99},{"version":"d8ffe8b227f57392942c79d4d75995d57901f8355c4cc5167ef3727bc5c6b602","signature":"837382efdde44efa9bf2f895a3d2c788b23c0c78042d7d4cfa82a453c2937e49"},{"version":"6b142414d9f04161e31569e3a76368e734dbed85f254606c144181383396a4ac","signature":"387a2e3bc1a2f9e684a4df75e08307bc11eb946c1aca4226cd68f005d823395c"},{"version":"9bfa33376524e4f9a37044cf7c8f96d096de9648519a96126567697d7ea6632c","signature":"e3e7a964de626409337f5f42515e1cef7d5f30dd50bc3ad9a354f7f11aabfd08"},{"version":"c53932cc0ec11a77ea11f9976255076e2545dd1cd50184ba6facf7c092f3cc2b","signature":"f0ad9101889f88959e5c74414649238d2c684627a59554e44448517733447f2b"},"ca2cb26c683c28e46e00db9f7fc44a4fa907e655dd069e18e92d99cd5425a149","3aad2e9bd9c9f650860491e3518ee45c22c9ea2c372b142483d9f0a907d72da6","3ac7c43ef8ba2fbcaade1891039ed9b74cb3f40219360495b939c868f93db28d","d881d9c7c7789b0ffbe70ad2a999dd4080a8da98cfa6fe280804e05494b188e5","bc0c3ad6b457672402f6a753fd306a904716fe8dca4339124d593a3a4cca689c","7142789577fd90bacde1a3d92ed9da5c86c25b2d5deace47e0ebfb32eaa4e5de","aefe5f5213976a6e1a954303ac2dd0d4da22a71534866b33b74b36648895c674","386476b10a482926bba1f3b694bc8658c5b9bdd8643df79bf93a95a5784fe518","a9e28490049be53e6055f87102980a3810352a23fc53ed39ffce715d510fe439","b4fd31dd32c28f8eb1ae99486f49cc346968c19f1969e6f6037808bf4464b111",{"version":"1a86d5d23dfb656002bc90facad9d11ccc3310ec1c3df2ec236e7cf55d13cc8b","impliedFormat":99},"bdb2cc4c5a0570a3286b1a0702fcb6c8f72ae5d0a5a35044c923193aed2bb6a1","31b79ffd0e4a10e1fd4843dfed5bc96256e2630b92e24650b07395936933605a","3f897119acae077b426029ea33e7337dd21369740ddf651d25abaf2f49c62915","7ce397e27f352b2017c185002b5efc8664ad567f88efe38277271d041ab0d722","209e116166312b46ec827eb6f9d429172919497b553fe1bc0b51947e4e021aec","68dda8f30950718cc8992987864d2eaee7a68521924027befebf39e3540fee4c","5c95565f34cd4fa1c6ee4b7440ef83beeb8b78a190068b9c8c4cd84261b3f886","87b42991cc53932366cd08e4eb409de575dd989f0d02e6b79ffd481e11687eaf","ec95aac5334a7f581ca3703334d605fd099255c4e7ae6cc0f758a8a61bd2583d","3bb498816e3fa6666a1b6324a76f2d28374fce94655e5ffdfa2e8c8c77290e0d","04c5db4edb03d4b668b9ebdcacd640a18fc15fd1ebf3ebf4ef43ecfc44aaf023","df4c4034c586d7c1ae1a5f433a06898b137e2bc8d3def6e57b6075caf57efe65","f11730a1154515dd671e76fa629ff46a08693197a6153dfe93705b3a77d39907","e7cbc9607192046650bc722e2d4106d71c6c6159267f93e88ea683f539261fc7","de3e5c8f3d749bc128f79f273f34eb4d29db576dc9e329e523998742e78f36f9","d232023c052ee3c541edb6ea9a5456bb515c07e7f14104e2dd97ec164fae8ce3","b1d02a85c9f04d82e4b00f55427f74e764b6682cd19edbcff2f29d0e327e5ba0","95aa1b28bd583a47a2995735171d9cfc5031d2d9679470571eb3c13844dfe03e","895594ff8798818ba96b82d77929c4333c615b0a8a073c361d8e66d168aedc17","e2e44df189040c4f82337a5558697e3e3705afd655b5f4f1ba8e22ca3173489b","aac4a89f94360b0f11920f96c6147ba6ce77bbd7af92880754add8831d895c23","dee2d3dad91b5c04315773f7f0aba337687a3e2667f1c1c9a078ae6261684e22","2eaeb7e6db1e28a83b15e73517e82749ad9edca8225c1bbee1948fd6427f0338","cdcf8cf84b182d070597db8def57a81247c812888dee0b879106e81e4fd4f1b7","318b715e42488ee690958c3514d7c97a3c687f3748d6590f195d9a80e6c6bd20","63981f41158318b6fed13c500b79a82a46c041faf8daa3c2311d174c454868c1","c7764087019ab029da46b6ff1f0bc5b5614ae4484b100072943bbcbe6e9a4541","0ad6ba5f48806fa759987dd4b7abd36bd7c9fba45a880ac69766cdf8c646da86","8f863cd32b9e0586fec7500aa6ce080f3b62058dddc316446747f595e5e8fc3b","52e49f82d4974e235e5da5190e3143884e0f2a6f6bbd4c12177a00d34a2310ea","2b91da7caf874b7f839b3a62c613c956da0a7ae06b746f85b5ff0ab3dc3b029b","16e3e821e55dc52cae4c1f596a170263bfb2ac30dcfc458a7226192f07d8ecfa","f58a63f1c65836cfa7a1bdc7dbb4f5bdb532ca47ce415f81cd4bb2f1cd1d3666","33133eef13bbf61e5a17fd70e56bfff7de831068c4465b818471e7594c25a13b","932ee5261690ca53eb4c5de4d5dd9ea4ca68e983a6bf7660ef83df08aae042ca","29e477895964a9cf2a352c1e78732c1ac343ed8a280eada446f23e070a64c970","c31a8a62d5cf2e9f354aa4dc6b7d3a85cae1802c826cea14109afee413cc2195","eb3671ec7a51c0e20962ba24be3fd7a41919455739c123e774d5dd5f125eec25","2ffa5e22e7a34350b8227f603abaa0a2cb6baa0c940c7e6bef98125c617639be","3613aa0b504c7f042f5f145d5201307e8eee57e5e990ca1b30cd83cc8b7bdbeb","13c95555bcb96b279ddf963c8610e93844d94c5562ef1a88dbc7ffc08d94b158","109d0dac000b5193fdd2ca4cb4a23a277863e00162587285e6398a785d16c6f9","b4719c4d26b81145f314614138ba7a36ad71001dfc25721aee537564a429f58d","b6c3e22815655be589e6a9f49879a029ad71e2eb6102a51e4915690f57191e4f","04a59b7ee5e8aa610e3ffb4670db1c62e5652394ec8dbc31da74687ba8aab219","82fc4319667b24082cf6424faf8695b38d471cd3a3371a5d9980e799ec68bdc3","e41d8a66a15a6056f9ca8841567cc903362f80761d7d96a025c453b9e417c6c8","168be3b155304e964678fc63ea9863f582a12c48e95365bba69efca8127b2f8b","3862dfdd19d7037f1689c0ded194a97c5c2a0cb90747b937465ce13f1bd40154","e70896629cc4510ebcbccea7931067cecd08836460b01364517819149c83ce55","ed75436dbab3763368617401f36a812f2ea0e9c9e7d80d86506d863fea8b56c8","21e660ecdc4535bd84d16333f536da80774837a6585fbb50b066718db2ff2837","b84bd35d255be1231813319a3281eb9b07fac5d0e14d6971cf274261cb30b3e4","3177c0960f32aacebd3ddc744fb99c27b2dd839b78e0e1fa1634a2300833f269","d3eaf1f5fb98867ae6510d9d241dc669c51ef00bbdf6bcf44837b0f7e034061e","92730ecadefdfc2fd2cdfe8b0dcf33d9bdac447b0f36c4348199d947987333eb","5b7288afe00b4d6f1a6d17764fb783717f27dcef1342eaff854e00c3b7ebd15a","5ab270cc2d274e06f8f17b3d03864ca588d064f6049b30f4231ab990386fe180","9af5f46de3177813cdaeef9760da42a58047fcd6bc0f6024c76a99b6f2eddd60","56afecebf29dbb41b0f8a68578e52c5f1c375f028356e924a2815c162317976e","646b6ad6c4eb08b04ffe289c9c419862334e612cb2a11cc31176da5bb5260365","31022eb281701bc49d2df242870fa4917e171cbe143224bf88c28abc53a9b05c",{"version":"27fd5011f8f9807fd0c4c4eba31bc181a6998284b36443e4be25b5200fe84e4d","signature":"37da56c2c182d76a4eb4c534fdd5ed1058d3d1bc8ddc8c92ff20adfb4ca2a0f8"},{"version":"ffbcae522701219bb4537957e810689fb9129b1230e40f7f8afab2415cdb8191","signature":"01a33209451ccaa2871c6a73d87865802ffc8968d2dbdb99217a6885f4f9713a"},{"version":"04ecf3f233ff337d7874f3471c3846a28f5b3772101ca3755b10aa1d237cb93d","signature":"aac20a5f48360ab934f1ed6a185e969c173080629721d829663c3f42aab64a6e"},{"version":"da438a1af178007367ed37bb8def8354b82a5666f26f0fd012b6d19554d0ec8d","signature":"29910d7cce985084b06a67876abb0f1536303548a4646b6b12ea8c192535f239"},{"version":"e5f39bc9304b545af888efa01ffdebecf6593e682c177f606d40b1bf6469b800","signature":"043c897347a06d5dd8b9d2b814b1d34525cd90df93300fd7d8246cee7ffb8e56"},{"version":"097812df2d859c8c8497bb871265f59e57fbc9eb19fc4592211e20cb1242434e","signature":"b91907ec1e035c7e8baa4bd490ad155bd243d08ecd169a67ff6beb8ddb78ee70"},{"version":"25659f01b2bb4a21e739c96c5fd0776a993672e9a49c3874554e2febc9399913","signature":"cab761ad1df1e686e9f8d5acf82ca64e81af9aeac121d52a830149edc6dcf51a"},"ddc8c232a5b14c7cb91899a5c5fc74b798a441de0d6816eca6ef622f4100460c","5bff754e6f04bd885b915f32c7ab2236675ab400f37905bc981e90858d1934c9","877b5f0d16877d42b6896fd126b9ab6c1de9763585dfeb5a811b9f5425216152","4c435b4ce3ff67eca38bb0ac3ab1f2a1ba75eac667634ba41030e6907a417116","0e3379c229196c273c4848fae0ac4cc842c81705cfc00ca664573768d9eb668a","c0d41ef3a03824cb75c14a3c82c57ddaf6e328a07c443c331dc613f17538bf21","998138fb4face3da02b4713e84730ade7c5af5f5935c9958c511f03a9392795e",{"version":"b5cc80cfaa2483385761c63217d8532537069d741db98e0396dcd28b47dbb2dd","signature":"c271df8bb7326e68bf5ddc9f0e52779af202e1609b9d3f8a99fa53fc09b56a48"},{"version":"5c4468fccad48f87ff511349ddff164a2f466dac8ffff94d88740b2144febcc7","signature":"ab557b512cda66c49d010eccb4d494e6788d7d4c494caa57defb9dd816822085"},{"version":"bcbddb5c3b2b4af8145b12b483c7f9182cdd62d3953e21d5689d97163db86fd7","signature":"9dea12b8a9b671dace98a11531be2aadc3604d1b73c842e60c482419d0cc2f7d"}],"root":[[103,106],[180,186],[194,196]],"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},"referencedMap":[[89,1],[88,2],[87,3],[85,4],[86,5],[102,6],[91,7],[92,8],[94,9],[95,2],[97,2],[98,10],[101,11],[99,2],[100,2],[129,12],[130,13],[132,14],[127,15],[131,16],[128,16],[137,17],[140,18],[139,19],[138,20],[179,21],[156,22],[141,23],[149,24],[142,25],[154,26],[146,27],[145,28],[148,29],[164,30],[147,31],[144,32],[177,33],[176,34],[108,35],[111,36],[114,36],[175,37],[174,38],[153,39],[152,40],[170,41],[157,42],[133,43],[135,44],[136,45],[168,46],[167,47],[173,48],[158,49],[169,50],[160,51],[166,52],[171,53],[161,54],[159,55],[165,56],[162,57],[163,58],[172,59],[192,60],[191,60],[193,61],[150,19],[151,62],[125,63],[103,64],[186,65],[104,64],[106,66],[181,67],[182,64],[183,64],[105,64],[180,68],[185,69],[196,70],[194,71]],"latestChangedDtsFile":"./cjs/index.d.ts","version":"5.9.3"}
|
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@haneullabs/wallet-standard",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A suite of standard utilities for implementing wallets based on the Wallet Standard.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Haneul Labs <build@haneullabs.com>",
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"main": "./dist/cjs/index.js",
|
|
9
|
+
"module": "./dist/esm/index.js",
|
|
10
|
+
"types": "./dist/cjs/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/esm/index.js",
|
|
14
|
+
"require": "./dist/cjs/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"sideEffects": false,
|
|
18
|
+
"files": [
|
|
19
|
+
"CHANGELOG.md",
|
|
20
|
+
"dist",
|
|
21
|
+
"src"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/GeunhwaJeong/haneul-ts-sdks.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/GeunhwaJeong/haneul-ts-sdks/issues/new"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@wallet-standard/core": "1.1.1",
|
|
32
|
+
"@haneullabs/haneul": "0.1.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"typescript": "^5.9.3",
|
|
36
|
+
"typescript-json-schema": "^0.67.0",
|
|
37
|
+
"@haneullabs/build-scripts": "0.1.0"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
|
|
41
|
+
"build": "build-package",
|
|
42
|
+
"prettier:check": "prettier -c --ignore-unknown .",
|
|
43
|
+
"prettier:fix": "prettier -w --ignore-unknown .",
|
|
44
|
+
"eslint:check": "eslint --max-warnings=0 .",
|
|
45
|
+
"eslint:fix": "pnpm run eslint:check --fix",
|
|
46
|
+
"lint": "pnpm run eslint:check && pnpm run prettier:check",
|
|
47
|
+
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
|
|
48
|
+
"json-schema": "typescript-json-schema src/types.ts SerializedTransactionDataV2 --required --strictNullChecks > serialized-transaction-data-v2.schema.json && prettier -w serialized-transaction-data-v2.schema.json"
|
|
49
|
+
}
|
|
50
|
+
}
|
package/src/chains.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// Copyright (c) Mysten Labs, Inc.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
import type { IdentifierString } from '@wallet-standard/core';
|
|
5
|
+
|
|
6
|
+
/** Haneul Devnet */
|
|
7
|
+
export const HANEUL_DEVNET_CHAIN = 'haneul:devnet';
|
|
8
|
+
|
|
9
|
+
/** Haneul Testnet */
|
|
10
|
+
export const HANEUL_TESTNET_CHAIN = 'haneul:testnet';
|
|
11
|
+
|
|
12
|
+
/** Haneul Localnet */
|
|
13
|
+
export const HANEUL_LOCALNET_CHAIN = 'haneul:localnet';
|
|
14
|
+
|
|
15
|
+
/** Haneul Mainnet */
|
|
16
|
+
export const HANEUL_MAINNET_CHAIN = 'haneul:mainnet';
|
|
17
|
+
|
|
18
|
+
export const HANEUL_CHAINS = [
|
|
19
|
+
HANEUL_DEVNET_CHAIN,
|
|
20
|
+
HANEUL_TESTNET_CHAIN,
|
|
21
|
+
HANEUL_LOCALNET_CHAIN,
|
|
22
|
+
HANEUL_MAINNET_CHAIN,
|
|
23
|
+
] as const;
|
|
24
|
+
|
|
25
|
+
export type HaneulChain = (typeof HANEUL_CHAINS)[number];
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Utility that returns whether or not a chain identifier is a valid Haneul chain.
|
|
29
|
+
* @param chain a chain identifier in the form of `${string}:{$string}`
|
|
30
|
+
*/
|
|
31
|
+
export function isHaneulChain(chain: IdentifierString): chain is HaneulChain {
|
|
32
|
+
return HANEUL_CHAINS.includes(chain as HaneulChain);
|
|
33
|
+
}
|
package/src/detect.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Copyright (c) Mysten Labs, Inc.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
import { StandardConnect, StandardEvents } from '@wallet-standard/core';
|
|
5
|
+
import type { Wallet, WalletWithFeatures } from '@wallet-standard/core';
|
|
6
|
+
|
|
7
|
+
import type { MinimallyRequiredFeatures } from './features/index.js';
|
|
8
|
+
|
|
9
|
+
// These features are absolutely required for wallets to function in the Haneul ecosystem.
|
|
10
|
+
// Eventually, as wallets have more consistent support of features, we may want to extend this list.
|
|
11
|
+
const REQUIRED_FEATURES: (keyof MinimallyRequiredFeatures)[] = [StandardConnect, StandardEvents];
|
|
12
|
+
|
|
13
|
+
export function isWalletWithRequiredFeatureSet<AdditionalFeatures extends Wallet['features']>(
|
|
14
|
+
wallet: Wallet,
|
|
15
|
+
additionalFeatures: (keyof AdditionalFeatures)[] = [],
|
|
16
|
+
): wallet is WalletWithFeatures<MinimallyRequiredFeatures & AdditionalFeatures> {
|
|
17
|
+
return [...REQUIRED_FEATURES, ...additionalFeatures].every(
|
|
18
|
+
(feature) => feature in wallet.features,
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// Copyright (c) Mysten Labs, Inc.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
export const HaneulGetCapabilities = 'sui:getCapabilities';
|
|
5
|
+
|
|
6
|
+
/** The latest API version of the getCapabilities API. */
|
|
7
|
+
export type HaneulGetCapabilitiesVersion = '1.0.0';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* A Wallet Standard feature for reporting intents supported by the wallet.
|
|
11
|
+
*/
|
|
12
|
+
export type HaneulGetCapabilitiesFeature = {
|
|
13
|
+
[HaneulGetCapabilities]: {
|
|
14
|
+
version: HaneulGetCapabilitiesVersion;
|
|
15
|
+
getCapabilities: HaneulGetCapabilitiesMethod;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export type HaneulGetCapabilitiesMethod = () => Promise<{
|
|
20
|
+
supportedIntents?: string[];
|
|
21
|
+
}>;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// Copyright (c) Mysten Labs, Inc.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
import type { IdentifierString, WalletAccount } from '@wallet-standard/core';
|
|
5
|
+
|
|
6
|
+
/** Name of the feature. */
|
|
7
|
+
export const HaneulReportTransactionEffects = 'sui:reportTransactionEffects';
|
|
8
|
+
|
|
9
|
+
/** The latest API version of the reportTransactionEffects API. */
|
|
10
|
+
export type HaneulReportTransactionEffectsVersion = '1.0.0';
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* A Wallet Standard feature for reporting the effects of a transaction block executed by a dapp
|
|
14
|
+
* The feature allows wallets to updated their caches using the effects of the transaction
|
|
15
|
+
* executed outside of the wallet
|
|
16
|
+
*/
|
|
17
|
+
export type HaneulReportTransactionEffectsFeature = {
|
|
18
|
+
/** Namespace for the feature. */
|
|
19
|
+
[HaneulReportTransactionEffects]: {
|
|
20
|
+
/** Version of the feature API. */
|
|
21
|
+
version: HaneulReportTransactionEffectsVersion;
|
|
22
|
+
reportTransactionEffects: HaneulReportTransactionEffectsMethod;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export type HaneulReportTransactionEffectsMethod = (
|
|
27
|
+
input: HaneulReportTransactionEffectsInput,
|
|
28
|
+
) => Promise<void>;
|
|
29
|
+
|
|
30
|
+
/** Input for signing transactions. */
|
|
31
|
+
export interface HaneulReportTransactionEffectsInput {
|
|
32
|
+
account: WalletAccount;
|
|
33
|
+
chain: IdentifierString;
|
|
34
|
+
/** Transaction effects as base64 encoded bcs. */
|
|
35
|
+
effects: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// Copyright (c) Mysten Labs, Inc.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
import type { SignedTransaction, HaneulSignTransactionInput } from './haneulSignTransaction.js';
|
|
5
|
+
|
|
6
|
+
/** Name of the feature. */
|
|
7
|
+
export const HaneulSignAndExecuteTransaction = 'sui:signAndExecuteTransaction';
|
|
8
|
+
|
|
9
|
+
/** The latest API version of the signAndExecuteTransactionBlock API. */
|
|
10
|
+
export type HaneulSignAndExecuteTransactionVersion = '2.0.0';
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* A Wallet Standard feature for signing a transaction, and submitting it to the
|
|
14
|
+
* network. The wallet is expected to submit the transaction to the network via RPC,
|
|
15
|
+
* and return the transaction response.
|
|
16
|
+
*/
|
|
17
|
+
export type HaneulSignAndExecuteTransactionFeature = {
|
|
18
|
+
/** Namespace for the feature. */
|
|
19
|
+
[HaneulSignAndExecuteTransaction]: {
|
|
20
|
+
/** Version of the feature API. */
|
|
21
|
+
version: HaneulSignAndExecuteTransactionVersion;
|
|
22
|
+
signAndExecuteTransaction: HaneulSignAndExecuteTransactionMethod;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export type HaneulSignAndExecuteTransactionMethod = (
|
|
27
|
+
input: HaneulSignAndExecuteTransactionInput,
|
|
28
|
+
) => Promise<HaneulSignAndExecuteTransactionOutput>;
|
|
29
|
+
|
|
30
|
+
/** Input for signing and sending transactions. */
|
|
31
|
+
export interface HaneulSignAndExecuteTransactionInput extends HaneulSignTransactionInput {}
|
|
32
|
+
|
|
33
|
+
/** Output of signing and sending transactions. */
|
|
34
|
+
export interface HaneulSignAndExecuteTransactionOutput extends SignedTransaction {
|
|
35
|
+
digest: string;
|
|
36
|
+
/** Transaction effects as base64 encoded bcs. */
|
|
37
|
+
effects: string;
|
|
38
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// Copyright (c) Mysten Labs, Inc.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
import type {
|
|
5
|
+
ExecuteTransactionRequestType,
|
|
6
|
+
HaneulTransactionBlockResponse,
|
|
7
|
+
HaneulTransactionBlockResponseOptions,
|
|
8
|
+
} from '@haneullabs/haneul/client';
|
|
9
|
+
|
|
10
|
+
import type { HaneulSignTransactionBlockInput } from './haneulSignTransactionBlock.js';
|
|
11
|
+
|
|
12
|
+
/** Name of the feature. */
|
|
13
|
+
export const HaneulSignAndExecuteTransactionBlock = 'sui:signAndExecuteTransactionBlock';
|
|
14
|
+
|
|
15
|
+
/** The latest API version of the signAndExecuteTransactionBlock API. */
|
|
16
|
+
export type HaneulSignAndExecuteTransactionBlockVersion = '1.0.0';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated Use `sui:signAndExecuteTransaction` instead.
|
|
20
|
+
*
|
|
21
|
+
* A Wallet Standard feature for signing a transaction, and submitting it to the
|
|
22
|
+
* network. The wallet is expected to submit the transaction to the network via RPC,
|
|
23
|
+
* and return the transaction response.
|
|
24
|
+
*/
|
|
25
|
+
export type HaneulSignAndExecuteTransactionBlockFeature = {
|
|
26
|
+
/** Namespace for the feature. */
|
|
27
|
+
[HaneulSignAndExecuteTransactionBlock]: {
|
|
28
|
+
/** Version of the feature API. */
|
|
29
|
+
version: HaneulSignAndExecuteTransactionBlockVersion;
|
|
30
|
+
/** @deprecated Use `sui:signAndExecuteTransaction` instead. */
|
|
31
|
+
signAndExecuteTransactionBlock: HaneulSignAndExecuteTransactionBlockMethod;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
/** @deprecated Use `sui:signAndExecuteTransaction` instead. */
|
|
36
|
+
export type HaneulSignAndExecuteTransactionBlockMethod = (
|
|
37
|
+
input: HaneulSignAndExecuteTransactionBlockInput,
|
|
38
|
+
) => Promise<HaneulSignAndExecuteTransactionBlockOutput>;
|
|
39
|
+
|
|
40
|
+
/** Input for signing and sending transactions. */
|
|
41
|
+
export interface HaneulSignAndExecuteTransactionBlockInput extends HaneulSignTransactionBlockInput {
|
|
42
|
+
/**
|
|
43
|
+
* @deprecated requestType will be ignored by JSON RPC in the future
|
|
44
|
+
*/
|
|
45
|
+
requestType?: ExecuteTransactionRequestType;
|
|
46
|
+
/** specify which fields to return (e.g., transaction, effects, events, etc). By default, only the transaction digest will be returned. */
|
|
47
|
+
options?: HaneulTransactionBlockResponseOptions;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/** Output of signing and sending transactions. */
|
|
51
|
+
export interface HaneulSignAndExecuteTransactionBlockOutput extends HaneulTransactionBlockResponse {}
|