@t2000/sdk 10.24.0 → 10.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +37 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -1
- package/dist/index.d.ts +24 -1
- package/dist/index.js +34 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -425,6 +425,15 @@ declare const SUI_ADDRESS_STRICT_REGEX: RegExp;
|
|
|
425
425
|
* but every label must use only `[a-z0-9-]`.
|
|
426
426
|
*/
|
|
427
427
|
declare const SUINS_NAME_REGEX: RegExp;
|
|
428
|
+
/**
|
|
429
|
+
* Canonicalize user paste BEFORE address/SuiNS shape checks:
|
|
430
|
+
* - `label@audric` → `label.audric.sui` (lowercased) — the literal parent
|
|
431
|
+
* string deliberately matches `AUDRIC_PARENT_NAME` in
|
|
432
|
+
* `protocols/suins-leaf.ts` (not imported: that module pulls the heavy
|
|
433
|
+
* `@mysten/suins` client into every normalizer consumer).
|
|
434
|
+
* - everything else (0x, `.sui` names, garbage) passes through trimmed.
|
|
435
|
+
*/
|
|
436
|
+
declare function canonicalizeRecipientInput(raw: string): string;
|
|
428
437
|
declare class InvalidAddressError extends Error {
|
|
429
438
|
readonly raw: string;
|
|
430
439
|
constructor(raw: string);
|
|
@@ -713,6 +722,20 @@ declare function cancelOpenJob(base: string, signer: TransactionSigner, openingI
|
|
|
713
722
|
* only ever go back to the buyer. */
|
|
714
723
|
declare function refundOpenJob(base: string, signer: TransactionSigner, openingId: string): Promise<string>;
|
|
715
724
|
|
|
725
|
+
/** The shared `Opening` object minted by an Open post. */
|
|
726
|
+
declare const OPENING_TYPE_MARKER = "::opening::Opening<";
|
|
727
|
+
/** The escrow `Job` object minted by a hire or an Open claim. */
|
|
728
|
+
declare const ESCROW_JOB_TYPE_MARKER = "::escrow::Job<";
|
|
729
|
+
/**
|
|
730
|
+
* Pull the id of an object a transaction created/touched whose type contains
|
|
731
|
+
* `marker`. Waits for the tx (default 15s, the CLI's long-standing budget)
|
|
732
|
+
* and scans `objectTypes`. Returns `undefined` on timeout or absence —
|
|
733
|
+
* never throws.
|
|
734
|
+
*/
|
|
735
|
+
declare function resolveCreatedObjectId(client: SuiGrpcClient, digest: string, marker: string, opts?: {
|
|
736
|
+
timeoutMs?: number;
|
|
737
|
+
}): Promise<string | undefined>;
|
|
738
|
+
|
|
716
739
|
/**
|
|
717
740
|
* SPEC 7 v0.4 § Layer 0 — Canonical Write Architecture.
|
|
718
741
|
*
|
|
@@ -1237,4 +1260,4 @@ declare function fullHandle(label: string, parentName?: string): string;
|
|
|
1237
1260
|
*/
|
|
1238
1261
|
declare function displayHandle(label: string, parentName?: string): string;
|
|
1239
1262
|
|
|
1240
|
-
export { A2A_ESCROW_OPENING_PACKAGE_ID, A2A_ESCROW_PACKAGE_V2_ID, A2A_ESCROW_PACKAGE_V3_ID, AUDRIC_PARENT, AUDRIC_PARENT_NAME, AUDRIC_PARENT_NFT_ID, type ApiModel, type AppenderContext, BalanceResponse, type BuildAddLeafParams, type BuildRevokeLeafParams, type ChatMessage, type ChatParams, type ChatResult, type ChatUsage, type CheckStatus, type ComposeTxOptions, type ComposeTxResult, DEFAULT_API_BASE, type DailySpend, DepositInfo, InvalidAddressError, type LabelValidationResult, type LimitAssertInput, LimitEnforcer, LimitExceededError, type LimitKind, type LimitOperation, type LimitsConfig, type LimitsFile, MAX_OPEN_WINDOW_MS, type NormalizedAddress, OPENING_CLAIM_POLICY_ANY_ACTIVE, type OpenJobFilter, type OpenJobRow, type Opening, type OpeningTerms, OverlayFeeConfig, PayOptions, PayResult, PaymentRequest, SPONSORED_PYTH_DEPENDENT_PROVIDERS, SUINS_NAME_REGEX, SUI_ADDRESS_REGEX, SUI_ADDRESS_STRICT_REGEX, SendResult, type SendTransferInput, SendableAsset, SerializedCetusRoute, type StepPreview, SuinsNotRegisteredError, type SuinsParent, SuinsRpcError, SupportedAsset, type SwapExecuteInput, SwapQuoteResult, SwapResult, SwapRouteResult, T2000, T2000Error, T2000Options, TransactionRecord, TransactionSigner, type TrustMode, type UpstreamClaim, type VerifyAnchor, type VerifyCheck, type VerifyOptions, type VerifyResult, type VerifyUpstream, WRITE_APPENDER_REGISTRY, type WriteStep, type WriteToolName, ZkLoginProof, approxUsdValue, assertLimitConfig, buildAddLeafTx, buildCancelOpeningTx, buildClaimOpeningTx, buildCreateOpeningTx, buildRefundUnclaimedTx, buildRevokeLeafTx, cancelOpenJob, chatCompletion, chatCompletionStream, claimOpenJob, clearLimits, composeTx, dailySpentToday, deriveAllowedAddressesFromPtb, displayHandle, exportPrivateKey, fullHandle, generateKeypair, getAddress, getLimits, getOpenJob, getOpening, getSponsoredSwapProviders, getSwapQuote, hasLimits, keypairFromPrivateKey, listModels, listOpenJobs, loadKey, looksLikeSuiNs, normalizeAddressInput, postOpenJob, preflightCreateOpening, queryBalance, readLimitsFile, recordDailySpend, refundOpenJob, resolveAddressToSuinsViaRpc, resolveSuinsViaRpc, saveBech32, saveKey, setLimits, validateLabel, verifyReceipt, walletExists, writeLimitsFile };
|
|
1263
|
+
export { A2A_ESCROW_OPENING_PACKAGE_ID, A2A_ESCROW_PACKAGE_V2_ID, A2A_ESCROW_PACKAGE_V3_ID, AUDRIC_PARENT, AUDRIC_PARENT_NAME, AUDRIC_PARENT_NFT_ID, type ApiModel, type AppenderContext, BalanceResponse, type BuildAddLeafParams, type BuildRevokeLeafParams, type ChatMessage, type ChatParams, type ChatResult, type ChatUsage, type CheckStatus, type ComposeTxOptions, type ComposeTxResult, DEFAULT_API_BASE, type DailySpend, DepositInfo, ESCROW_JOB_TYPE_MARKER, InvalidAddressError, type LabelValidationResult, type LimitAssertInput, LimitEnforcer, LimitExceededError, type LimitKind, type LimitOperation, type LimitsConfig, type LimitsFile, MAX_OPEN_WINDOW_MS, type NormalizedAddress, OPENING_CLAIM_POLICY_ANY_ACTIVE, OPENING_TYPE_MARKER, type OpenJobFilter, type OpenJobRow, type Opening, type OpeningTerms, OverlayFeeConfig, PayOptions, PayResult, PaymentRequest, SPONSORED_PYTH_DEPENDENT_PROVIDERS, SUINS_NAME_REGEX, SUI_ADDRESS_REGEX, SUI_ADDRESS_STRICT_REGEX, SendResult, type SendTransferInput, SendableAsset, SerializedCetusRoute, type StepPreview, SuinsNotRegisteredError, type SuinsParent, SuinsRpcError, SupportedAsset, type SwapExecuteInput, SwapQuoteResult, SwapResult, SwapRouteResult, T2000, T2000Error, T2000Options, TransactionRecord, TransactionSigner, type TrustMode, type UpstreamClaim, type VerifyAnchor, type VerifyCheck, type VerifyOptions, type VerifyResult, type VerifyUpstream, WRITE_APPENDER_REGISTRY, type WriteStep, type WriteToolName, ZkLoginProof, approxUsdValue, assertLimitConfig, buildAddLeafTx, buildCancelOpeningTx, buildClaimOpeningTx, buildCreateOpeningTx, buildRefundUnclaimedTx, buildRevokeLeafTx, cancelOpenJob, canonicalizeRecipientInput, chatCompletion, chatCompletionStream, claimOpenJob, clearLimits, composeTx, dailySpentToday, deriveAllowedAddressesFromPtb, displayHandle, exportPrivateKey, fullHandle, generateKeypair, getAddress, getLimits, getOpenJob, getOpening, getSponsoredSwapProviders, getSwapQuote, hasLimits, keypairFromPrivateKey, listModels, listOpenJobs, loadKey, looksLikeSuiNs, normalizeAddressInput, postOpenJob, preflightCreateOpening, queryBalance, readLimitsFile, recordDailySpend, refundOpenJob, resolveAddressToSuinsViaRpc, resolveCreatedObjectId, resolveSuinsViaRpc, saveBech32, saveKey, setLimits, validateLabel, verifyReceipt, walletExists, writeLimitsFile };
|
package/dist/index.d.ts
CHANGED
|
@@ -425,6 +425,15 @@ declare const SUI_ADDRESS_STRICT_REGEX: RegExp;
|
|
|
425
425
|
* but every label must use only `[a-z0-9-]`.
|
|
426
426
|
*/
|
|
427
427
|
declare const SUINS_NAME_REGEX: RegExp;
|
|
428
|
+
/**
|
|
429
|
+
* Canonicalize user paste BEFORE address/SuiNS shape checks:
|
|
430
|
+
* - `label@audric` → `label.audric.sui` (lowercased) — the literal parent
|
|
431
|
+
* string deliberately matches `AUDRIC_PARENT_NAME` in
|
|
432
|
+
* `protocols/suins-leaf.ts` (not imported: that module pulls the heavy
|
|
433
|
+
* `@mysten/suins` client into every normalizer consumer).
|
|
434
|
+
* - everything else (0x, `.sui` names, garbage) passes through trimmed.
|
|
435
|
+
*/
|
|
436
|
+
declare function canonicalizeRecipientInput(raw: string): string;
|
|
428
437
|
declare class InvalidAddressError extends Error {
|
|
429
438
|
readonly raw: string;
|
|
430
439
|
constructor(raw: string);
|
|
@@ -713,6 +722,20 @@ declare function cancelOpenJob(base: string, signer: TransactionSigner, openingI
|
|
|
713
722
|
* only ever go back to the buyer. */
|
|
714
723
|
declare function refundOpenJob(base: string, signer: TransactionSigner, openingId: string): Promise<string>;
|
|
715
724
|
|
|
725
|
+
/** The shared `Opening` object minted by an Open post. */
|
|
726
|
+
declare const OPENING_TYPE_MARKER = "::opening::Opening<";
|
|
727
|
+
/** The escrow `Job` object minted by a hire or an Open claim. */
|
|
728
|
+
declare const ESCROW_JOB_TYPE_MARKER = "::escrow::Job<";
|
|
729
|
+
/**
|
|
730
|
+
* Pull the id of an object a transaction created/touched whose type contains
|
|
731
|
+
* `marker`. Waits for the tx (default 15s, the CLI's long-standing budget)
|
|
732
|
+
* and scans `objectTypes`. Returns `undefined` on timeout or absence —
|
|
733
|
+
* never throws.
|
|
734
|
+
*/
|
|
735
|
+
declare function resolveCreatedObjectId(client: SuiGrpcClient, digest: string, marker: string, opts?: {
|
|
736
|
+
timeoutMs?: number;
|
|
737
|
+
}): Promise<string | undefined>;
|
|
738
|
+
|
|
716
739
|
/**
|
|
717
740
|
* SPEC 7 v0.4 § Layer 0 — Canonical Write Architecture.
|
|
718
741
|
*
|
|
@@ -1237,4 +1260,4 @@ declare function fullHandle(label: string, parentName?: string): string;
|
|
|
1237
1260
|
*/
|
|
1238
1261
|
declare function displayHandle(label: string, parentName?: string): string;
|
|
1239
1262
|
|
|
1240
|
-
export { A2A_ESCROW_OPENING_PACKAGE_ID, A2A_ESCROW_PACKAGE_V2_ID, A2A_ESCROW_PACKAGE_V3_ID, AUDRIC_PARENT, AUDRIC_PARENT_NAME, AUDRIC_PARENT_NFT_ID, type ApiModel, type AppenderContext, BalanceResponse, type BuildAddLeafParams, type BuildRevokeLeafParams, type ChatMessage, type ChatParams, type ChatResult, type ChatUsage, type CheckStatus, type ComposeTxOptions, type ComposeTxResult, DEFAULT_API_BASE, type DailySpend, DepositInfo, InvalidAddressError, type LabelValidationResult, type LimitAssertInput, LimitEnforcer, LimitExceededError, type LimitKind, type LimitOperation, type LimitsConfig, type LimitsFile, MAX_OPEN_WINDOW_MS, type NormalizedAddress, OPENING_CLAIM_POLICY_ANY_ACTIVE, type OpenJobFilter, type OpenJobRow, type Opening, type OpeningTerms, OverlayFeeConfig, PayOptions, PayResult, PaymentRequest, SPONSORED_PYTH_DEPENDENT_PROVIDERS, SUINS_NAME_REGEX, SUI_ADDRESS_REGEX, SUI_ADDRESS_STRICT_REGEX, SendResult, type SendTransferInput, SendableAsset, SerializedCetusRoute, type StepPreview, SuinsNotRegisteredError, type SuinsParent, SuinsRpcError, SupportedAsset, type SwapExecuteInput, SwapQuoteResult, SwapResult, SwapRouteResult, T2000, T2000Error, T2000Options, TransactionRecord, TransactionSigner, type TrustMode, type UpstreamClaim, type VerifyAnchor, type VerifyCheck, type VerifyOptions, type VerifyResult, type VerifyUpstream, WRITE_APPENDER_REGISTRY, type WriteStep, type WriteToolName, ZkLoginProof, approxUsdValue, assertLimitConfig, buildAddLeafTx, buildCancelOpeningTx, buildClaimOpeningTx, buildCreateOpeningTx, buildRefundUnclaimedTx, buildRevokeLeafTx, cancelOpenJob, chatCompletion, chatCompletionStream, claimOpenJob, clearLimits, composeTx, dailySpentToday, deriveAllowedAddressesFromPtb, displayHandle, exportPrivateKey, fullHandle, generateKeypair, getAddress, getLimits, getOpenJob, getOpening, getSponsoredSwapProviders, getSwapQuote, hasLimits, keypairFromPrivateKey, listModels, listOpenJobs, loadKey, looksLikeSuiNs, normalizeAddressInput, postOpenJob, preflightCreateOpening, queryBalance, readLimitsFile, recordDailySpend, refundOpenJob, resolveAddressToSuinsViaRpc, resolveSuinsViaRpc, saveBech32, saveKey, setLimits, validateLabel, verifyReceipt, walletExists, writeLimitsFile };
|
|
1263
|
+
export { A2A_ESCROW_OPENING_PACKAGE_ID, A2A_ESCROW_PACKAGE_V2_ID, A2A_ESCROW_PACKAGE_V3_ID, AUDRIC_PARENT, AUDRIC_PARENT_NAME, AUDRIC_PARENT_NFT_ID, type ApiModel, type AppenderContext, BalanceResponse, type BuildAddLeafParams, type BuildRevokeLeafParams, type ChatMessage, type ChatParams, type ChatResult, type ChatUsage, type CheckStatus, type ComposeTxOptions, type ComposeTxResult, DEFAULT_API_BASE, type DailySpend, DepositInfo, ESCROW_JOB_TYPE_MARKER, InvalidAddressError, type LabelValidationResult, type LimitAssertInput, LimitEnforcer, LimitExceededError, type LimitKind, type LimitOperation, type LimitsConfig, type LimitsFile, MAX_OPEN_WINDOW_MS, type NormalizedAddress, OPENING_CLAIM_POLICY_ANY_ACTIVE, OPENING_TYPE_MARKER, type OpenJobFilter, type OpenJobRow, type Opening, type OpeningTerms, OverlayFeeConfig, PayOptions, PayResult, PaymentRequest, SPONSORED_PYTH_DEPENDENT_PROVIDERS, SUINS_NAME_REGEX, SUI_ADDRESS_REGEX, SUI_ADDRESS_STRICT_REGEX, SendResult, type SendTransferInput, SendableAsset, SerializedCetusRoute, type StepPreview, SuinsNotRegisteredError, type SuinsParent, SuinsRpcError, SupportedAsset, type SwapExecuteInput, SwapQuoteResult, SwapResult, SwapRouteResult, T2000, T2000Error, T2000Options, TransactionRecord, TransactionSigner, type TrustMode, type UpstreamClaim, type VerifyAnchor, type VerifyCheck, type VerifyOptions, type VerifyResult, type VerifyUpstream, WRITE_APPENDER_REGISTRY, type WriteStep, type WriteToolName, ZkLoginProof, approxUsdValue, assertLimitConfig, buildAddLeafTx, buildCancelOpeningTx, buildClaimOpeningTx, buildCreateOpeningTx, buildRefundUnclaimedTx, buildRevokeLeafTx, cancelOpenJob, canonicalizeRecipientInput, chatCompletion, chatCompletionStream, claimOpenJob, clearLimits, composeTx, dailySpentToday, deriveAllowedAddressesFromPtb, displayHandle, exportPrivateKey, fullHandle, generateKeypair, getAddress, getLimits, getOpenJob, getOpening, getSponsoredSwapProviders, getSwapQuote, hasLimits, keypairFromPrivateKey, listModels, listOpenJobs, loadKey, looksLikeSuiNs, normalizeAddressInput, postOpenJob, preflightCreateOpening, queryBalance, readLimitsFile, recordDailySpend, refundOpenJob, resolveAddressToSuinsViaRpc, resolveCreatedObjectId, resolveSuinsViaRpc, saveBech32, saveKey, setLimits, validateLabel, verifyReceipt, walletExists, writeLimitsFile };
|
package/dist/index.js
CHANGED
|
@@ -1936,10 +1936,19 @@ var REVERSE_NAME_QUERY = `query ReverseSuins($address: SuiAddress!) {
|
|
|
1936
1936
|
var SUI_ADDRESS_REGEX = /^0x[a-fA-F0-9]{1,64}$/i;
|
|
1937
1937
|
var SUI_ADDRESS_STRICT_REGEX = /^0x[a-fA-F0-9]{64}$/i;
|
|
1938
1938
|
var SUINS_NAME_REGEX = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.sui$/;
|
|
1939
|
+
var AUDRIC_HANDLE_RE = /^([a-z0-9-]+)@audric$/i;
|
|
1940
|
+
function canonicalizeRecipientInput(raw) {
|
|
1941
|
+
const trimmed = raw.trim();
|
|
1942
|
+
const m = AUDRIC_HANDLE_RE.exec(trimmed);
|
|
1943
|
+
if (m) {
|
|
1944
|
+
return `${m[1].toLowerCase()}.audric.sui`;
|
|
1945
|
+
}
|
|
1946
|
+
return trimmed;
|
|
1947
|
+
}
|
|
1939
1948
|
var InvalidAddressError = class extends Error {
|
|
1940
1949
|
constructor(raw) {
|
|
1941
1950
|
super(
|
|
1942
|
-
`"${raw}" isn't a valid Sui address or SuiNS name. Pass a 0x-prefixed hex address (e.g. 0x40cd\u20263e62)
|
|
1951
|
+
`"${raw}" isn't a valid Sui address or SuiNS name. Pass a 0x-prefixed hex address (e.g. 0x40cd\u20263e62), a SuiNS name ending in .sui (e.g. alex.sui), or a Passport handle (e.g. alex@audric).`
|
|
1943
1952
|
);
|
|
1944
1953
|
this.raw = raw;
|
|
1945
1954
|
this.name = "InvalidAddressError";
|
|
@@ -1963,10 +1972,10 @@ var SuinsRpcError = class extends Error {
|
|
|
1963
1972
|
};
|
|
1964
1973
|
function looksLikeSuiNs(value) {
|
|
1965
1974
|
if (!value) return false;
|
|
1966
|
-
return SUINS_NAME_REGEX.test(value
|
|
1975
|
+
return SUINS_NAME_REGEX.test(canonicalizeRecipientInput(value).toLowerCase());
|
|
1967
1976
|
}
|
|
1968
1977
|
async function resolveSuinsViaRpc(rawName, ctx = {}) {
|
|
1969
|
-
const name = rawName
|
|
1978
|
+
const name = canonicalizeRecipientInput(rawName).toLowerCase();
|
|
1970
1979
|
if (!SUINS_NAME_REGEX.test(name)) {
|
|
1971
1980
|
throw new InvalidAddressError(rawName);
|
|
1972
1981
|
}
|
|
@@ -2011,7 +2020,7 @@ async function resolveAddressToSuinsViaRpc(rawAddress, ctx = {}) {
|
|
|
2011
2020
|
return domain ? [domain] : [];
|
|
2012
2021
|
}
|
|
2013
2022
|
async function normalizeAddressInput(value, ctx = {}) {
|
|
2014
|
-
const trimmed = value
|
|
2023
|
+
const trimmed = canonicalizeRecipientInput(value);
|
|
2015
2024
|
if (SUI_ADDRESS_REGEX.test(trimmed)) {
|
|
2016
2025
|
return { address: trimmed.toLowerCase(), suinsName: null, raw: value };
|
|
2017
2026
|
}
|
|
@@ -3074,7 +3083,7 @@ var T2000 = class _T2000 extends EventEmitter {
|
|
|
3074
3083
|
* with the live execute path (never resolve the same input two ways).
|
|
3075
3084
|
*/
|
|
3076
3085
|
async resolveRecipient(input) {
|
|
3077
|
-
const trimmed = input
|
|
3086
|
+
const trimmed = canonicalizeRecipientInput(input);
|
|
3078
3087
|
if (SUI_ADDRESS_REGEX.test(trimmed)) {
|
|
3079
3088
|
return { address: trimmed.toLowerCase() };
|
|
3080
3089
|
}
|
|
@@ -3098,7 +3107,7 @@ var T2000 = class _T2000 extends EventEmitter {
|
|
|
3098
3107
|
}
|
|
3099
3108
|
throw new T2000Error(
|
|
3100
3109
|
"INVALID_ADDRESS",
|
|
3101
|
-
`Cannot resolve recipient "${input}". Provide a 0x address
|
|
3110
|
+
`Cannot resolve recipient "${input}". Provide a 0x address, a .sui name, or a Passport handle (name@audric).`
|
|
3102
3111
|
);
|
|
3103
3112
|
}
|
|
3104
3113
|
async balance() {
|
|
@@ -3765,6 +3774,24 @@ function refundOpenJob(base, signer, openingId) {
|
|
|
3765
3774
|
});
|
|
3766
3775
|
}
|
|
3767
3776
|
|
|
3777
|
+
// src/utils/resolve-created.ts
|
|
3778
|
+
var OPENING_TYPE_MARKER = "::opening::Opening<";
|
|
3779
|
+
var ESCROW_JOB_TYPE_MARKER = "::escrow::Job<";
|
|
3780
|
+
async function resolveCreatedObjectId(client, digest, marker, opts = {}) {
|
|
3781
|
+
try {
|
|
3782
|
+
const result = await client.core.waitForTransaction({
|
|
3783
|
+
digest,
|
|
3784
|
+
include: { objectTypes: true },
|
|
3785
|
+
timeout: opts.timeoutMs ?? 15e3
|
|
3786
|
+
});
|
|
3787
|
+
const txn = result.$kind === "Transaction" ? result.Transaction : result.FailedTransaction;
|
|
3788
|
+
const types = txn.objectTypes ?? {};
|
|
3789
|
+
return Object.keys(types).find((id) => types[id]?.includes(marker));
|
|
3790
|
+
} catch {
|
|
3791
|
+
return void 0;
|
|
3792
|
+
}
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3768
3795
|
// src/index.ts
|
|
3769
3796
|
init_coinSelection();
|
|
3770
3797
|
|
|
@@ -4183,6 +4210,6 @@ function displayHandle(label, parentName = AUDRIC_PARENT_NAME) {
|
|
|
4183
4210
|
// src/index.ts
|
|
4184
4211
|
init_preflight();
|
|
4185
4212
|
|
|
4186
|
-
export { A2A_ESCROW_FEE_CONFIG_ID, A2A_ESCROW_OPENING_PACKAGE_ID, A2A_ESCROW_PACKAGE_ID, A2A_ESCROW_PACKAGE_V2_ID, A2A_ESCROW_PACKAGE_V3_ID, AUDRIC_PARENT, AUDRIC_PARENT_NAME, AUDRIC_PARENT_NFT_ID, CETUS_USDC_SUI_POOL, CLOCK_ID, COIN_REGISTRY, DEFAULT_ACTIVITY_REPORT_URL, DEFAULT_API_BASE, DEFAULT_COMMERCE_API_BASE, DEFAULT_GRPC_URL, DEFAULT_NETWORK, ETH_TYPE, GASLESS_MIN_STABLE_AMOUNT, GASLESS_STABLE_TYPES, GAS_RESERVE_MIN, IKA_TYPE, InvalidAddressError, JOB_STATES, KNOWN_TARGETS, KeypairSigner, LABEL_PATTERNS, LOFI_TYPE, LimitEnforcer, LimitExceededError, MANIFEST_TYPE, MAX_DELIVER_HORIZON_MS, MAX_JOB_USDC, MAX_OPEN_WINDOW_MS, MAX_REVIEW_WINDOW_MS, MIST_PER_SUI, NAVX_TYPE, OPENING_CLAIM_POLICY_ANY_ACTIVE, OPERATION_ASSETS, OVERLAY_FEE_RATE, PREFLIGHT_MAX_AMOUNT, PREFLIGHT_OK, SENDABLE_ASSETS, SPONSORED_PYTH_DEPENDENT_PROVIDERS, STABLE_ASSETS, SUINS_NAME_REGEX, SUI_ADDRESS_REGEX, SUI_ADDRESS_STRICT_REGEX, SUI_DECIMALS, SUI_TYPE, SUPPORTED_ASSETS, SuinsNotRegisteredError, SuinsRpcError, T2000, T2000Error, T2000_OVERLAY_FEE_WALLET, TOKEN_MAP, USDC_DECIMALS, USDC_TYPE, USDE_TYPE, USDSUI_TYPE, USDT_TYPE, WAL_TYPE, WBTC_TYPE, WRITE_APPENDER_REGISTRY, ZkLoginSigner, addSendToTx, addSwapToTx, approxUsdValue, assertAllowedAsset, assertBuyerRequirements, assertLimitConfig, buildAddLeafTx, buildCancelOpeningTx, buildClaimOpeningTx, buildCreateJobTx, buildCreateOpeningTx, buildDeclineJobTx, buildDeliverJobTx, buildRefundJobTx, buildRefundUnclaimedTx, buildRejectJobTx, buildReleaseJobTx, buildRevokeLeafTx, buildSendTx, buildSwapTx, cancelOpenJob, chatCompletion, chatCompletionStream, checkPositiveAmount, checkSuiAddress, claimOpenJob, classifyAction, classifyLabel, classifyTransaction, clearLimits, composeTx, dailySpentToday, deriveAllowedAddressesFromPtb, deserializeCetusRoute, displayHandle, executeTx, exportPrivateKey, extractAllUserLegs, extractTransferDetails, extractTxCommands, extractTxSender, fallbackLabel, fetchAllCoins, fetchService, findSwapRoute, formatAssetAmount, formatSui, formatUsd, fullHandle, generateKeypair, getAddress, getCoinMeta, getDecimals, getDecimalsForCoinType, getJob, getJobSpec, getLimits, getOpenJob, getOpening, getSponsoredSwapProviders, getSuiClient, getSuiGrpcClient, getSwapQuote, hasLimits, isAllowedAsset, isCetusRouteFresh, isInRegistry, jobActionsFor, keypairFromPrivateKey, listModels, listOpenJobs, listServices, loadKey, looksLikeSuiNs, mapMoveAbortCode, mapWalletError, mistToSui, normalizeAddressInput, normalizeAsset, normalizeCoinType, parseSuiRpcTx, payWithX402, postOpenJob, preflightCreateJob, preflightCreateOpening, preflightFail, preflightPay, preflightSend, preflightSwap, putJobSpec, queryBalance, queryHistory, queryTransaction, rawToStable, rawToUsdc, readLimitsFile, recordDailySpend, refineLendingLabel, refundOpenJob, reportX402Activity, resolveAddressToSuinsViaRpc, resolveSuinsViaRpc, resolveSymbol, resolveTokenType, saveBech32, saveKey, selectAndSplitCoin, selectSuiCoin, serializeCetusRoute, setLimits, simulateTransaction, stableToRaw, suiToMist, throwIfSimulationFailed, truncateAddress, usdcToRaw, validateAddress, validateLabel, verifyCetusRouteCoinMatch, verifyJobForSeller, verifyReceipt, walletExists, writeLimitsFile };
|
|
4213
|
+
export { A2A_ESCROW_FEE_CONFIG_ID, A2A_ESCROW_OPENING_PACKAGE_ID, A2A_ESCROW_PACKAGE_ID, A2A_ESCROW_PACKAGE_V2_ID, A2A_ESCROW_PACKAGE_V3_ID, AUDRIC_PARENT, AUDRIC_PARENT_NAME, AUDRIC_PARENT_NFT_ID, CETUS_USDC_SUI_POOL, CLOCK_ID, COIN_REGISTRY, DEFAULT_ACTIVITY_REPORT_URL, DEFAULT_API_BASE, DEFAULT_COMMERCE_API_BASE, DEFAULT_GRPC_URL, DEFAULT_NETWORK, ESCROW_JOB_TYPE_MARKER, ETH_TYPE, GASLESS_MIN_STABLE_AMOUNT, GASLESS_STABLE_TYPES, GAS_RESERVE_MIN, IKA_TYPE, InvalidAddressError, JOB_STATES, KNOWN_TARGETS, KeypairSigner, LABEL_PATTERNS, LOFI_TYPE, LimitEnforcer, LimitExceededError, MANIFEST_TYPE, MAX_DELIVER_HORIZON_MS, MAX_JOB_USDC, MAX_OPEN_WINDOW_MS, MAX_REVIEW_WINDOW_MS, MIST_PER_SUI, NAVX_TYPE, OPENING_CLAIM_POLICY_ANY_ACTIVE, OPENING_TYPE_MARKER, OPERATION_ASSETS, OVERLAY_FEE_RATE, PREFLIGHT_MAX_AMOUNT, PREFLIGHT_OK, SENDABLE_ASSETS, SPONSORED_PYTH_DEPENDENT_PROVIDERS, STABLE_ASSETS, SUINS_NAME_REGEX, SUI_ADDRESS_REGEX, SUI_ADDRESS_STRICT_REGEX, SUI_DECIMALS, SUI_TYPE, SUPPORTED_ASSETS, SuinsNotRegisteredError, SuinsRpcError, T2000, T2000Error, T2000_OVERLAY_FEE_WALLET, TOKEN_MAP, USDC_DECIMALS, USDC_TYPE, USDE_TYPE, USDSUI_TYPE, USDT_TYPE, WAL_TYPE, WBTC_TYPE, WRITE_APPENDER_REGISTRY, ZkLoginSigner, addSendToTx, addSwapToTx, approxUsdValue, assertAllowedAsset, assertBuyerRequirements, assertLimitConfig, buildAddLeafTx, buildCancelOpeningTx, buildClaimOpeningTx, buildCreateJobTx, buildCreateOpeningTx, buildDeclineJobTx, buildDeliverJobTx, buildRefundJobTx, buildRefundUnclaimedTx, buildRejectJobTx, buildReleaseJobTx, buildRevokeLeafTx, buildSendTx, buildSwapTx, cancelOpenJob, canonicalizeRecipientInput, chatCompletion, chatCompletionStream, checkPositiveAmount, checkSuiAddress, claimOpenJob, classifyAction, classifyLabel, classifyTransaction, clearLimits, composeTx, dailySpentToday, deriveAllowedAddressesFromPtb, deserializeCetusRoute, displayHandle, executeTx, exportPrivateKey, extractAllUserLegs, extractTransferDetails, extractTxCommands, extractTxSender, fallbackLabel, fetchAllCoins, fetchService, findSwapRoute, formatAssetAmount, formatSui, formatUsd, fullHandle, generateKeypair, getAddress, getCoinMeta, getDecimals, getDecimalsForCoinType, getJob, getJobSpec, getLimits, getOpenJob, getOpening, getSponsoredSwapProviders, getSuiClient, getSuiGrpcClient, getSwapQuote, hasLimits, isAllowedAsset, isCetusRouteFresh, isInRegistry, jobActionsFor, keypairFromPrivateKey, listModels, listOpenJobs, listServices, loadKey, looksLikeSuiNs, mapMoveAbortCode, mapWalletError, mistToSui, normalizeAddressInput, normalizeAsset, normalizeCoinType, parseSuiRpcTx, payWithX402, postOpenJob, preflightCreateJob, preflightCreateOpening, preflightFail, preflightPay, preflightSend, preflightSwap, putJobSpec, queryBalance, queryHistory, queryTransaction, rawToStable, rawToUsdc, readLimitsFile, recordDailySpend, refineLendingLabel, refundOpenJob, reportX402Activity, resolveAddressToSuinsViaRpc, resolveCreatedObjectId, resolveSuinsViaRpc, resolveSymbol, resolveTokenType, saveBech32, saveKey, selectAndSplitCoin, selectSuiCoin, serializeCetusRoute, setLimits, simulateTransaction, stableToRaw, suiToMist, throwIfSimulationFailed, truncateAddress, usdcToRaw, validateAddress, validateLabel, verifyCetusRouteCoinMatch, verifyJobForSeller, verifyReceipt, walletExists, writeLimitsFile };
|
|
4187
4214
|
//# sourceMappingURL=index.js.map
|
|
4188
4215
|
//# sourceMappingURL=index.js.map
|