@otim/sdk-core 0.0.19 → 0.0.20
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/.tsbuildinfo +1 -1
- package/dist/account/index.d.cts +1 -1
- package/dist/account/index.d.mts +1 -1
- package/dist/authorization-BnF84ABo.d.cts.map +1 -1
- package/dist/clients/index.cjs +1 -1
- package/dist/clients/index.d.cts +3 -3
- package/dist/clients/index.d.mts +3 -3
- package/dist/clients/index.mjs +1 -1
- package/dist/{clients-Dkt56jVn.mjs → clients-BpUkaSb-.mjs} +3 -3
- package/dist/clients-BpUkaSb-.mjs.map +1 -0
- package/dist/{clients-CAKAVAKd.cjs → clients-jegPyhCH.cjs} +2 -2
- package/dist/clients-jegPyhCH.cjs.map +1 -0
- package/dist/{index-D6ncjdSF.d.mts → index-BRCDIv2-.d.mts} +2 -2
- package/dist/{index-D6ncjdSF.d.mts.map → index-BRCDIv2-.d.mts.map} +1 -1
- package/dist/{index-Dclw8n-r.d.cts → index-BmrWgMvx.d.cts} +2 -2
- package/dist/{index-CT89rCH1.d.mts.map → index-BmrWgMvx.d.cts.map} +1 -1
- package/dist/{index-CT89rCH1.d.mts → index-nalKWiJB.d.mts} +2 -2
- package/dist/{index-Dclw8n-r.d.cts.map → index-nalKWiJB.d.mts.map} +1 -1
- package/dist/{index-_2bU9FSx.d.cts → index-tt-bw0Dh.d.cts} +2 -2
- package/dist/{index-_2bU9FSx.d.cts.map → index-tt-bw0Dh.d.cts.map} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +1 -1
- package/dist/{rpc-C-51kawS.d.cts → rpc-B2EqDraY.d.cts} +13 -3
- package/dist/rpc-B2EqDraY.d.cts.map +1 -0
- package/dist/{rpc-BWDaWzVn.d.mts → rpc-CMGNtfHM.d.mts} +13 -3
- package/dist/rpc-CMGNtfHM.d.mts.map +1 -0
- package/dist/signing/index.d.cts +2 -2
- package/dist/signing/index.d.mts +2 -2
- package/package.json +4 -4
- package/dist/clients-CAKAVAKd.cjs.map +0 -1
- package/dist/clients-Dkt56jVn.mjs.map +0 -1
- package/dist/rpc-BWDaWzVn.d.mts.map +0 -1
- package/dist/rpc-C-51kawS.d.cts.map +0 -1
|
@@ -168,7 +168,7 @@ type _TypedDataParametersToAbiParameters<typedDataParameters extends readonly Ty
|
|
|
168
168
|
components: type extends keyof keyReferences ? Error$1<`Circular reference detected. '${typedDataParameter['type']}' is a circular reference.`> : _TypedDataParametersToAbiParameters<typedData[type], typedData, keyReferences & { [_ in type]: true }>;
|
|
169
169
|
} : typedDataParameter : never };
|
|
170
170
|
//#endregion
|
|
171
|
-
//#region ../../node_modules/.pnpm/abitype@1.
|
|
171
|
+
//#region ../../node_modules/.pnpm/abitype@1.2.3_typescript@5.9.3_zod@4.3.6/node_modules/abitype/dist/types/register.d.ts
|
|
172
172
|
interface Register$1 {}
|
|
173
173
|
type ResolvedRegister$2 = {
|
|
174
174
|
/**
|
|
@@ -244,6 +244,14 @@ type ResolvedRegister$2 = {
|
|
|
244
244
|
} ? type : Register$1 extends {
|
|
245
245
|
FixedArrayMaxLength: infer type extends number;
|
|
246
246
|
} ? type : DefaultRegister$1['fixedArrayMaxLength'];
|
|
247
|
+
/**
|
|
248
|
+
* Enables named tuple generation in {@link AbiParametersToPrimitiveTypes} for common ABI parameter names.
|
|
249
|
+
*
|
|
250
|
+
* @default false
|
|
251
|
+
*/
|
|
252
|
+
experimental_namedTuples: Register$1 extends {
|
|
253
|
+
experimental_namedTuples: infer type extends boolean;
|
|
254
|
+
} ? type : DefaultRegister$1['experimental_namedTuples'];
|
|
247
255
|
/**
|
|
248
256
|
* When set, validates {@link AbiParameter}'s `type` against {@link AbiType}
|
|
249
257
|
*
|
|
@@ -294,6 +302,8 @@ type DefaultRegister$1 = {
|
|
|
294
302
|
bigIntType: bigint;
|
|
295
303
|
/** TypeScript type to use for `int<M>` and `uint<M>` values, where `M <= 48` */
|
|
296
304
|
intType: number;
|
|
305
|
+
/** Enables named tuple generation in {@link AbiParametersToPrimitiveTypes} for common ABI parameter names */
|
|
306
|
+
experimental_namedTuples: false;
|
|
297
307
|
/** When set, validates {@link AbiParameter}'s `type` against {@link AbiType} */
|
|
298
308
|
strictAbiType: false;
|
|
299
309
|
/** @deprecated Use `arrayMaxDepth` instead */
|
|
@@ -317,7 +327,7 @@ type DefaultRegister$1 = {
|
|
|
317
327
|
StrictAbiType: DefaultRegister$1['strictAbiType'];
|
|
318
328
|
};
|
|
319
329
|
//#endregion
|
|
320
|
-
//#region ../../node_modules/.pnpm/abitype@1.
|
|
330
|
+
//#region ../../node_modules/.pnpm/abitype@1.2.3_typescript@5.9.3_zod@4.3.6/node_modules/abitype/dist/types/abi.d.ts
|
|
321
331
|
type Address$1 = ResolvedRegister$2['addressType'];
|
|
322
332
|
//#endregion
|
|
323
333
|
//#region ../../node_modules/.pnpm/ox@0.9.6_typescript@5.9.3_zod@4.3.6/node_modules/ox/_types/core/Hex.d.ts
|
|
@@ -6882,4 +6892,4 @@ type RpcUserOperation<entryPointVersion extends EntryPointVersion = EntryPointVe
|
|
|
6882
6892
|
type RpcUserOperationReceipt<entryPointVersion extends EntryPointVersion = EntryPointVersion> = UserOperationReceipt<entryPointVersion, Hex, Hex, Hex>;
|
|
6883
6893
|
//#endregion
|
|
6884
6894
|
export { Chain as a, RpcSchema as c, WalletActions as i, WalletRpcSchema as l, Client as n, Transport as o, PublicActions as r, PublicRpcSchema as s, Account as t };
|
|
6885
|
-
//# sourceMappingURL=rpc-
|
|
6895
|
+
//# sourceMappingURL=rpc-CMGNtfHM.d.mts.map
|