starknet 7.2.0 → 7.3.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 +11 -0
- package/dist/index.d.ts +225 -10
- package/dist/index.global.js +375 -9
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +376 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +372 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
# [7.3.0](https://github.com/starknet-io/starknet.js/compare/v7.2.0...v7.3.0) (2025-05-20)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- docs typos ([#1393](https://github.com/starknet-io/starknet.js/issues/1393)) ([1c08c87](https://github.com/starknet-io/starknet.js/commit/1c08c873daaf05f38a9274ed339ccc4da753e9ad))
|
|
6
|
+
- typos ([0506162](https://github.com/starknet-io/starknet.js/commit/050616221a58545d79eece7040b4abc205c220e0))
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- Implement SNIP29 ([#1377](https://github.com/starknet-io/starknet.js/issues/1377)) ([90c2811](https://github.com/starknet-io/starknet.js/commit/90c281190fbc87ab4103a08985b295e2743d1aad))
|
|
11
|
+
|
|
1
12
|
# [7.2.0](https://github.com/starknet-io/starknet.js/compare/v7.1.0...v7.2.0) (2025-05-09)
|
|
2
13
|
|
|
3
14
|
### Bug Fixes
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as RPCSPEC07 from 'starknet-types-07';
|
|
|
2
2
|
import { STRUCT_EVENT, EVENT_FIELD, ENUM_EVENT, BlockHash, TransactionHash, StarknetDomain, StarknetEnumType, StarknetMerkleType, StarknetType, TypedData, TypedDataRevision, StarknetWindowObject, Address, Permission, WatchAssetParameters as WatchAssetParameters$1, AddStarknetChainParameters as AddStarknetChainParameters$1, ChainId, AccountDeploymentData, AddInvokeTransactionParameters, AddInvokeTransactionResult, AddDeclareTransactionParameters, AddDeclareTransactionResult, Signature as Signature$2, SpecVersion, AccountChangeEventHandler as AccountChangeEventHandler$1, NetworkChangeEventHandler as NetworkChangeEventHandler$1 } from 'starknet-types-07';
|
|
3
3
|
export { StarknetDomain, StarknetEnumType, StarknetMerkleType, StarknetType, TypedData, TypedDataRevision } from 'starknet-types-07';
|
|
4
4
|
import * as RPCSPEC08 from 'starknet-types-08';
|
|
5
|
-
import { EDataAvailabilityMode as EDataAvailabilityMode$1, SUBSCRIPTION_BLOCK_TAG, BLOCK_WITH_TX_HASHES, PENDING_BLOCK_WITH_TX_HASHES, BlockWithTxHashes as BlockWithTxHashes$1, TransactionReceipt as TransactionReceipt$1, IsSucceeded, IsReverted, IsType, ETransactionVersion as ETransactionVersion$1, ETransactionVersion2 as ETransactionVersion2$1, ETransactionVersion3 as ETransactionVersion3$1, SubscriptionReorgResponse, SubscriptionNewHeadsResponse, SubscriptionEventsResponse, SubscriptionTransactionsStatusResponse, SubscriptionPendingTransactionsResponse, SUBSCRIPTION_ID, WebSocketMethods, BLOCK_STATUS, BLOCK_HEADER, BLOCK_BODY_WITH_RECEIPTS, PENDING_BLOCK_HEADER, BlockTransactionsTraces, L1L2MessagesStatus, CONTRACT_STORAGE_KEYS, StorageProof, CASM_COMPILED_CONTRACT_CLASS, AccountChangeEventHandler, NetworkChangeEventHandler, WatchAssetParameters, AddStarknetChainParameters, Signature as Signature$1, EDAMode as EDAMode$1, PRICE_UNIT as PRICE_UNIT$1, EmittedEvent as EmittedEvent$1, Methods as Methods$1 } from 'starknet-types-08';
|
|
5
|
+
import { PAYMASTER_API, EDataAvailabilityMode as EDataAvailabilityMode$1, SUBSCRIPTION_BLOCK_TAG, BLOCK_WITH_TX_HASHES, PENDING_BLOCK_WITH_TX_HASHES, BlockWithTxHashes as BlockWithTxHashes$1, TransactionReceipt as TransactionReceipt$1, IsSucceeded, IsReverted, IsType, OutsideExecutionTypedData, ETransactionVersion as ETransactionVersion$1, ETransactionVersion2 as ETransactionVersion2$1, ETransactionVersion3 as ETransactionVersion3$1, SubscriptionReorgResponse, SubscriptionNewHeadsResponse, SubscriptionEventsResponse, SubscriptionTransactionsStatusResponse, SubscriptionPendingTransactionsResponse, SUBSCRIPTION_ID, WebSocketMethods, BLOCK_STATUS, BLOCK_HEADER, BLOCK_BODY_WITH_RECEIPTS, PENDING_BLOCK_HEADER, BlockTransactionsTraces, L1L2MessagesStatus, CONTRACT_STORAGE_KEYS, StorageProof, CASM_COMPILED_CONTRACT_CLASS, AccountChangeEventHandler, NetworkChangeEventHandler, WatchAssetParameters, AddStarknetChainParameters, Signature as Signature$1, EDAMode as EDAMode$1, PRICE_UNIT as PRICE_UNIT$1, EmittedEvent as EmittedEvent$1, Methods as Methods$1 } from 'starknet-types-08';
|
|
6
6
|
import * as weierstrass from '@noble/curves/abstract/weierstrass';
|
|
7
7
|
import { RecoveredSignatureType } from '@noble/curves/abstract/weierstrass';
|
|
8
8
|
import { Abi as Abi$1, TypedContract } from 'abi-wan-kanabi';
|
|
@@ -68,6 +68,7 @@ declare namespace index$5 {
|
|
|
68
68
|
var index$4 = /*#__PURE__*/_mergeNamespaces({
|
|
69
69
|
__proto__: null,
|
|
70
70
|
JRPC: index$5,
|
|
71
|
+
PAYMASTER_API: PAYMASTER_API,
|
|
71
72
|
RPCSPEC07: RPCSPEC07,
|
|
72
73
|
RPCSPEC08: RPCSPEC08
|
|
73
74
|
}, [RPCSPEC08]);
|
|
@@ -828,6 +829,105 @@ type PendingStateUpdate = PENDING_STATE_UPDATE;
|
|
|
828
829
|
*/
|
|
829
830
|
type ContractClassResponse = LegacyContractClass | Omit<CompiledSierra, 'sierra_program_debug_info'>;
|
|
830
831
|
|
|
832
|
+
interface PaymasterOptions extends PaymasterRpcOptions {
|
|
833
|
+
}
|
|
834
|
+
type PaymasterRpcOptions = {
|
|
835
|
+
nodeUrl?: string | _NetworkName;
|
|
836
|
+
default?: boolean;
|
|
837
|
+
headers?: object;
|
|
838
|
+
baseFetch?: WindowOrWorkerGlobalScope['fetch'];
|
|
839
|
+
};
|
|
840
|
+
|
|
841
|
+
/**
|
|
842
|
+
* Common interface response
|
|
843
|
+
* Intersection (sequencer response ∩ (∪ rpc responses))
|
|
844
|
+
*/
|
|
845
|
+
|
|
846
|
+
type PaymasterFeeEstimate = {
|
|
847
|
+
gas_token_price_in_strk: BigNumberish;
|
|
848
|
+
estimated_fee_in_strk: BigNumberish;
|
|
849
|
+
estimated_fee_in_gas_token: BigNumberish;
|
|
850
|
+
suggested_max_fee_in_strk: BigNumberish;
|
|
851
|
+
suggested_max_fee_in_gas_token: BigNumberish;
|
|
852
|
+
};
|
|
853
|
+
type PreparedDeployTransaction = {
|
|
854
|
+
type: 'deploy';
|
|
855
|
+
deployment: PAYMASTER_API.ACCOUNT_DEPLOYMENT_DATA;
|
|
856
|
+
parameters: ExecutionParameters;
|
|
857
|
+
fee: PaymasterFeeEstimate;
|
|
858
|
+
};
|
|
859
|
+
type PreparedInvokeTransaction = {
|
|
860
|
+
type: 'invoke';
|
|
861
|
+
typed_data: OutsideExecutionTypedData;
|
|
862
|
+
parameters: ExecutionParameters;
|
|
863
|
+
fee: PaymasterFeeEstimate;
|
|
864
|
+
};
|
|
865
|
+
type PreparedDeployAndInvokeTransaction = {
|
|
866
|
+
type: 'deploy_and_invoke';
|
|
867
|
+
deployment: PAYMASTER_API.ACCOUNT_DEPLOYMENT_DATA;
|
|
868
|
+
typed_data: OutsideExecutionTypedData;
|
|
869
|
+
parameters: ExecutionParameters;
|
|
870
|
+
fee: PaymasterFeeEstimate;
|
|
871
|
+
};
|
|
872
|
+
type PreparedTransaction = PreparedDeployTransaction | PreparedInvokeTransaction | PreparedDeployAndInvokeTransaction;
|
|
873
|
+
interface TokenData {
|
|
874
|
+
token_address: string;
|
|
875
|
+
decimals: number;
|
|
876
|
+
priceInStrk: BigNumberish;
|
|
877
|
+
}
|
|
878
|
+
type DeployTransaction = {
|
|
879
|
+
type: 'deploy';
|
|
880
|
+
deployment: PAYMASTER_API.ACCOUNT_DEPLOYMENT_DATA;
|
|
881
|
+
};
|
|
882
|
+
type InvokeTransaction = {
|
|
883
|
+
type: 'invoke';
|
|
884
|
+
invoke: UserInvoke;
|
|
885
|
+
};
|
|
886
|
+
type UserInvoke = {
|
|
887
|
+
userAddress: string;
|
|
888
|
+
calls: Call[];
|
|
889
|
+
};
|
|
890
|
+
type DeployAndInvokeTransaction = {
|
|
891
|
+
type: 'deploy_and_invoke';
|
|
892
|
+
deployment: PAYMASTER_API.ACCOUNT_DEPLOYMENT_DATA;
|
|
893
|
+
invoke: UserInvoke;
|
|
894
|
+
};
|
|
895
|
+
type UserTransaction = DeployTransaction | InvokeTransaction | DeployAndInvokeTransaction;
|
|
896
|
+
type ExecutableDeployTransaction = {
|
|
897
|
+
type: 'deploy';
|
|
898
|
+
deployment: PAYMASTER_API.ACCOUNT_DEPLOYMENT_DATA;
|
|
899
|
+
};
|
|
900
|
+
type ExecutableInvokeTransaction = {
|
|
901
|
+
type: 'invoke';
|
|
902
|
+
invoke: ExecutableUserInvoke;
|
|
903
|
+
};
|
|
904
|
+
type ExecutableUserInvoke = {
|
|
905
|
+
userAddress: string;
|
|
906
|
+
typedData: OutsideExecutionTypedData;
|
|
907
|
+
signature: string[];
|
|
908
|
+
};
|
|
909
|
+
type ExecutableDeployAndInvokeTransaction = {
|
|
910
|
+
type: 'deploy_and_invoke';
|
|
911
|
+
deployment: PAYMASTER_API.ACCOUNT_DEPLOYMENT_DATA;
|
|
912
|
+
invoke: ExecutableUserInvoke;
|
|
913
|
+
};
|
|
914
|
+
type ExecutableUserTransaction = ExecutableDeployTransaction | ExecutableInvokeTransaction | ExecutableDeployAndInvokeTransaction;
|
|
915
|
+
type FeeMode = {
|
|
916
|
+
mode: 'sponsored';
|
|
917
|
+
} | {
|
|
918
|
+
mode: 'default';
|
|
919
|
+
gasToken: string;
|
|
920
|
+
};
|
|
921
|
+
type ExecutionParameters = {
|
|
922
|
+
version: '0x1';
|
|
923
|
+
feeMode: FeeMode;
|
|
924
|
+
timeBounds?: PaymasterTimeBounds;
|
|
925
|
+
};
|
|
926
|
+
interface PaymasterTimeBounds {
|
|
927
|
+
executeAfter?: Date;
|
|
928
|
+
executeBefore?: Date;
|
|
929
|
+
}
|
|
930
|
+
|
|
831
931
|
interface EstimateFee extends EstimateFeeResponse {
|
|
832
932
|
}
|
|
833
933
|
type UniversalSuggestedFee = {
|
|
@@ -846,6 +946,7 @@ interface UniversalDetails {
|
|
|
846
946
|
blockIdentifier?: BlockIdentifier;
|
|
847
947
|
maxFee?: BigNumberish;
|
|
848
948
|
tip?: BigNumberish;
|
|
949
|
+
paymaster?: PaymasterDetails;
|
|
849
950
|
paymasterData?: BigNumberish[];
|
|
850
951
|
accountDeploymentData?: BigNumberish[];
|
|
851
952
|
nonceDataAvailabilityMode?: EDataAvailabilityMode$1;
|
|
@@ -854,6 +955,11 @@ interface UniversalDetails {
|
|
|
854
955
|
resourceBounds?: ResourceBounds;
|
|
855
956
|
skipValidate?: boolean;
|
|
856
957
|
}
|
|
958
|
+
interface PaymasterDetails {
|
|
959
|
+
feeMode: FeeMode;
|
|
960
|
+
deploymentData?: PAYMASTER_API.AccountDeploymentData;
|
|
961
|
+
timeBounds?: PaymasterTimeBounds;
|
|
962
|
+
}
|
|
857
963
|
interface EstimateFeeDetails extends UniversalDetails {
|
|
858
964
|
}
|
|
859
965
|
interface DeployContractResponse {
|
|
@@ -1018,6 +1124,17 @@ type RPC_ERROR_SET = {
|
|
|
1018
1124
|
TOO_MANY_ADDRESSES_IN_FILTER: RPCSPEC08.TOO_MANY_ADDRESSES_IN_FILTER;
|
|
1019
1125
|
TOO_MANY_BLOCKS_BACK: RPCSPEC08.TOO_MANY_BLOCKS_BACK;
|
|
1020
1126
|
COMPILATION_ERROR: RPCSPEC08.COMPILATION_ERROR;
|
|
1127
|
+
INVALID_ADDRESS: PAYMASTER_API.INVALID_ADDRESS;
|
|
1128
|
+
TOKEN_NOT_SUPPORTED: PAYMASTER_API.TOKEN_NOT_SUPPORTED;
|
|
1129
|
+
INVALID_SIGNATURE: PAYMASTER_API.INVALID_SIGNATURE;
|
|
1130
|
+
MAX_AMOUNT_TOO_LOW: PAYMASTER_API.MAX_AMOUNT_TOO_LOW;
|
|
1131
|
+
CLASS_HASH_NOT_SUPPORTED: PAYMASTER_API.CLASS_HASH_NOT_SUPPORTED;
|
|
1132
|
+
PAYMASTER_TRANSACTION_EXECUTION_ERROR: PAYMASTER_API.TRANSACTION_EXECUTION_ERROR;
|
|
1133
|
+
INVALID_TIME_BOUNDS: PAYMASTER_API.INVALID_TIME_BOUNDS;
|
|
1134
|
+
INVALID_DEPLOYMENT_DATA: PAYMASTER_API.INVALID_DEPLOYMENT_DATA;
|
|
1135
|
+
INVALID_CLASS_HASH: PAYMASTER_API.INVALID_CLASS_HASH;
|
|
1136
|
+
INVALID_ID: PAYMASTER_API.INVALID_ID;
|
|
1137
|
+
UNKNOWN_ERROR: PAYMASTER_API.UNKNOWN_ERROR;
|
|
1021
1138
|
};
|
|
1022
1139
|
type RPC_ERROR = RPC_ERROR_SET[keyof RPC_ERROR_SET];
|
|
1023
1140
|
|
|
@@ -1219,8 +1336,10 @@ type index$3_DeployAccountContractPayload = DeployAccountContractPayload;
|
|
|
1219
1336
|
type index$3_DeployAccountContractTransaction = DeployAccountContractTransaction;
|
|
1220
1337
|
type index$3_DeployAccountSignerDetails = DeployAccountSignerDetails;
|
|
1221
1338
|
type index$3_DeployAccountTransactionReceiptResponse = DeployAccountTransactionReceiptResponse;
|
|
1339
|
+
type index$3_DeployAndInvokeTransaction = DeployAndInvokeTransaction;
|
|
1222
1340
|
type index$3_DeployContractResponse = DeployContractResponse;
|
|
1223
1341
|
type index$3_DeployContractUDCResponse = DeployContractUDCResponse;
|
|
1342
|
+
type index$3_DeployTransaction = DeployTransaction;
|
|
1224
1343
|
type index$3_DeployTransactionReceiptResponse = DeployTransactionReceiptResponse;
|
|
1225
1344
|
type index$3_DeployedAccountTransaction = DeployedAccountTransaction;
|
|
1226
1345
|
type index$3_Details = Details;
|
|
@@ -1244,10 +1363,17 @@ type index$3_EstimateFeeResponse = EstimateFeeResponse;
|
|
|
1244
1363
|
type index$3_EstimateFeeResponseBulk = EstimateFeeResponseBulk;
|
|
1245
1364
|
type index$3_EventEntry = EventEntry;
|
|
1246
1365
|
type index$3_EventFilter = EventFilter;
|
|
1366
|
+
type index$3_ExecutableDeployAndInvokeTransaction = ExecutableDeployAndInvokeTransaction;
|
|
1367
|
+
type index$3_ExecutableDeployTransaction = ExecutableDeployTransaction;
|
|
1368
|
+
type index$3_ExecutableInvokeTransaction = ExecutableInvokeTransaction;
|
|
1369
|
+
type index$3_ExecutableUserInvoke = ExecutableUserInvoke;
|
|
1370
|
+
type index$3_ExecutableUserTransaction = ExecutableUserTransaction;
|
|
1371
|
+
type index$3_ExecutionParameters = ExecutionParameters;
|
|
1247
1372
|
type index$3_FEE_ESTIMATE = FEE_ESTIMATE;
|
|
1248
1373
|
type index$3_FELT = FELT;
|
|
1249
1374
|
type index$3_FeeEstimate = FeeEstimate;
|
|
1250
1375
|
type index$3_FeeMarginPercentage = FeeMarginPercentage;
|
|
1376
|
+
type index$3_FeeMode = FeeMode;
|
|
1251
1377
|
type index$3_FunctionAbi = FunctionAbi;
|
|
1252
1378
|
type index$3_GetBlockResponse = GetBlockResponse;
|
|
1253
1379
|
type index$3_GetTransactionReceiptResponse = GetTransactionReceiptResponse;
|
|
@@ -1262,6 +1388,7 @@ type index$3_InvocationsDetailsWithNonce = InvocationsDetailsWithNonce;
|
|
|
1262
1388
|
type index$3_InvocationsSignerDetails = InvocationsSignerDetails;
|
|
1263
1389
|
type index$3_InvokeFunctionResponse = InvokeFunctionResponse;
|
|
1264
1390
|
type index$3_InvokeOptions = InvokeOptions;
|
|
1391
|
+
type index$3_InvokeTransaction = InvokeTransaction;
|
|
1265
1392
|
type index$3_InvokeTransactionReceiptResponse = InvokeTransactionReceiptResponse;
|
|
1266
1393
|
type index$3_InvokedTransaction = InvokedTransaction;
|
|
1267
1394
|
type index$3_L1HandlerTransactionReceiptResponse = L1HandlerTransactionReceiptResponse;
|
|
@@ -1294,9 +1421,18 @@ type index$3_PRICE_UNIT = PRICE_UNIT;
|
|
|
1294
1421
|
type index$3_ParsedEvent = ParsedEvent;
|
|
1295
1422
|
type index$3_ParsedEvents = ParsedEvents;
|
|
1296
1423
|
type index$3_ParsedStruct = ParsedStruct;
|
|
1424
|
+
type index$3_PaymasterDetails = PaymasterDetails;
|
|
1425
|
+
type index$3_PaymasterFeeEstimate = PaymasterFeeEstimate;
|
|
1426
|
+
type index$3_PaymasterOptions = PaymasterOptions;
|
|
1427
|
+
type index$3_PaymasterRpcOptions = PaymasterRpcOptions;
|
|
1428
|
+
type index$3_PaymasterTimeBounds = PaymasterTimeBounds;
|
|
1297
1429
|
type index$3_PendingBlock = PendingBlock;
|
|
1298
1430
|
type index$3_PendingReceipt = PendingReceipt;
|
|
1299
1431
|
type index$3_PendingStateUpdate = PendingStateUpdate;
|
|
1432
|
+
type index$3_PreparedDeployAndInvokeTransaction = PreparedDeployAndInvokeTransaction;
|
|
1433
|
+
type index$3_PreparedDeployTransaction = PreparedDeployTransaction;
|
|
1434
|
+
type index$3_PreparedInvokeTransaction = PreparedInvokeTransaction;
|
|
1435
|
+
type index$3_PreparedTransaction = PreparedTransaction;
|
|
1300
1436
|
type index$3_Program = Program;
|
|
1301
1437
|
type index$3_ProviderOptions = ProviderOptions;
|
|
1302
1438
|
type index$3_PythonicHints = PythonicHints;
|
|
@@ -1343,6 +1479,7 @@ type index$3_TRANSACTION_TRACE = TRANSACTION_TRACE;
|
|
|
1343
1479
|
type index$3_TXN_EXECUTION_STATUS = TXN_EXECUTION_STATUS;
|
|
1344
1480
|
type index$3_TXN_HASH = TXN_HASH;
|
|
1345
1481
|
type index$3_TXN_STATUS = TXN_STATUS;
|
|
1482
|
+
type index$3_TokenData = TokenData;
|
|
1346
1483
|
type index$3_TransactionExecutionStatus = TransactionExecutionStatus;
|
|
1347
1484
|
type index$3_TransactionFinalityStatus = TransactionFinalityStatus;
|
|
1348
1485
|
type index$3_TransactionReceipt = TransactionReceipt;
|
|
@@ -1364,6 +1501,8 @@ type index$3_Uint512 = Uint512;
|
|
|
1364
1501
|
type index$3_UniversalDeployerContractPayload = UniversalDeployerContractPayload;
|
|
1365
1502
|
type index$3_UniversalDetails = UniversalDetails;
|
|
1366
1503
|
type index$3_UniversalSuggestedFee = UniversalSuggestedFee;
|
|
1504
|
+
type index$3_UserInvoke = UserInvoke;
|
|
1505
|
+
type index$3_UserTransaction = UserTransaction;
|
|
1367
1506
|
type index$3_V2DeclareSignerDetails = V2DeclareSignerDetails;
|
|
1368
1507
|
type index$3_V2DeployAccountSignerDetails = V2DeployAccountSignerDetails;
|
|
1369
1508
|
type index$3_V2InvocationsSignerDetails = V2InvocationsSignerDetails;
|
|
@@ -1380,7 +1519,7 @@ declare const index$3_isRPC08_FeeEstimate: typeof isRPC08_FeeEstimate;
|
|
|
1380
1519
|
declare const index$3_isRPC08_ResourceBounds: typeof isRPC08_ResourceBounds;
|
|
1381
1520
|
type index$3_waitForTransactionOptions = waitForTransactionOptions;
|
|
1382
1521
|
declare namespace index$3 {
|
|
1383
|
-
export { type index$3_Abi as Abi, type index$3_AbiEntry as AbiEntry, type index$3_AbiEnum as AbiEnum, type index$3_AbiEnums as AbiEnums, type index$3_AbiEvent as AbiEvent, type index$3_AbiEvents as AbiEvents, type index$3_AbiInterfaces as AbiInterfaces, type index$3_AbiStruct as AbiStruct, type index$3_AbiStructs as AbiStructs, type index$3_AccountInvocationItem as AccountInvocationItem, type index$3_AccountInvocations as AccountInvocations, type index$3_AccountInvocationsFactoryDetails as AccountInvocationsFactoryDetails, type index$3_AllowArray as AllowArray, type index$3_Args as Args, type index$3_ArgsOrCalldata as ArgsOrCalldata, type index$3_ArgsOrCalldataWithOptions as ArgsOrCalldataWithOptions, type index$3_ArraySignatureType as ArraySignatureType, type index$3_AsyncContractFunction as AsyncContractFunction, type index$3_BLOCK_HASH as BLOCK_HASH, type index$3_BLOCK_NUMBER as BLOCK_NUMBER, type index$3_BigNumberish as BigNumberish, type Block$1 as Block, type index$3_BlockIdentifier as BlockIdentifier, type index$3_BlockNumber as BlockNumber, type index$3_BlockStatus as BlockStatus, type index$3_BlockTag as BlockTag, type index$3_BlockWithTxHashes as BlockWithTxHashes, type index$3_Builtins as Builtins, type index$3_ByteArray as ByteArray, type index$3_ByteCode as ByteCode, type index$3_CairoAssembly as CairoAssembly, type index$3_CairoContract as CairoContract, type index$3_CairoEnum as CairoEnum, type index$3_CairoEvent as CairoEvent, type index$3_CairoEventDefinition as CairoEventDefinition, type index$3_CairoEventVariant as CairoEventVariant, type index$3_CairoVersion as CairoVersion, type index$3_Call as Call, type index$3_CallContractResponse as CallContractResponse, type index$3_CallDetails as CallDetails, type index$3_CallOptions as CallOptions, type index$3_Calldata as Calldata, type index$3_CompiledContract as CompiledContract, type index$3_CompiledSierra as CompiledSierra, type index$3_CompiledSierraCasm as CompiledSierraCasm, type index$3_CompilerVersion as CompilerVersion, type index$3_CompleteDeclareContractPayload as CompleteDeclareContractPayload, type index$3_CompressedProgram as CompressedProgram, type index$3_ContractClass as ContractClass, type index$3_ContractClassIdentifier as ContractClassIdentifier, type index$3_ContractClassPayload as ContractClassPayload, type index$3_ContractClassResponse as ContractClassResponse, type index$3_ContractEntryPointFields as ContractEntryPointFields, type index$3_ContractFunction as ContractFunction, type index$3_ContractOptions as ContractOptions, type index$3_ContractVersion as ContractVersion, type index$3_DeclareAndDeployContractPayload as DeclareAndDeployContractPayload, type index$3_DeclareContractPayload as DeclareContractPayload, type index$3_DeclareContractResponse as DeclareContractResponse, type index$3_DeclareContractTransaction as DeclareContractTransaction, type index$3_DeclareDeployUDCResponse as DeclareDeployUDCResponse, type index$3_DeclareSignerDetails as DeclareSignerDetails, type index$3_DeclareTransactionReceiptResponse as DeclareTransactionReceiptResponse, type index$3_DeclaredTransaction as DeclaredTransaction, type index$3_DeployAccountContractPayload as DeployAccountContractPayload, type index$3_DeployAccountContractTransaction as DeployAccountContractTransaction, type index$3_DeployAccountSignerDetails as DeployAccountSignerDetails, type index$3_DeployAccountTransactionReceiptResponse as DeployAccountTransactionReceiptResponse, type index$3_DeployContractResponse as DeployContractResponse, type index$3_DeployContractUDCResponse as DeployContractUDCResponse, type index$3_DeployTransactionReceiptResponse as DeployTransactionReceiptResponse, type index$3_DeployedAccountTransaction as DeployedAccountTransaction, type index$3_Details as Details, index$3_EDAMode as EDAMode, index$3_EDataAvailabilityMode as EDataAvailabilityMode, index$3_ETH_ADDRESS as ETH_ADDRESS, index$3_ETransactionExecutionStatus as ETransactionExecutionStatus, index$3_ETransactionStatus as ETransactionStatus, index$3_ETransactionVersion as ETransactionVersion, index$3_ETransactionVersion2 as ETransactionVersion2, index$3_ETransactionVersion3 as ETransactionVersion3, type index$3_EVENTS_CHUNK as EVENTS_CHUNK, type index$3_EmittedEvent as EmittedEvent, type index$3_EntryPointType as EntryPointType, type index$3_EntryPointsByType as EntryPointsByType, type index$3_EstimateFee as EstimateFee, type index$3_EstimateFeeAction as EstimateFeeAction, type index$3_EstimateFeeBulk as EstimateFeeBulk, type index$3_EstimateFeeDetails as EstimateFeeDetails, type index$3_EstimateFeeResponse as EstimateFeeResponse, type index$3_EstimateFeeResponseBulk as EstimateFeeResponseBulk, type Event$1 as Event, type index$3_EventEntry as EventEntry, type index$3_EventFilter as EventFilter, type index$3_FEE_ESTIMATE as FEE_ESTIMATE, type index$3_FELT as FELT, type index$3_FeeEstimate as FeeEstimate, type index$3_FeeMarginPercentage as FeeMarginPercentage, type index$3_FunctionAbi as FunctionAbi, type index$3_GetBlockResponse as GetBlockResponse, type index$3_GetTransactionReceiptResponse as GetTransactionReceiptResponse, type index$3_GetTransactionResponse as GetTransactionResponse, type index$3_GetTxReceiptResponseWithoutHelper as GetTxReceiptResponseWithoutHelper, type index$3_HexCalldata as HexCalldata, type index$3_InterfaceAbi as InterfaceAbi, type index$3_Invocation as Invocation, type index$3_Invocations as Invocations, type index$3_InvocationsDetails as InvocationsDetails, type index$3_InvocationsDetailsWithNonce as InvocationsDetailsWithNonce, type index$3_InvocationsSignerDetails as InvocationsSignerDetails, type index$3_InvokeFunctionResponse as InvokeFunctionResponse, type index$3_InvokeOptions as InvokeOptions, type index$3_InvokeTransactionReceiptResponse as InvokeTransactionReceiptResponse, type index$3_InvokedTransaction as InvokedTransaction, type index$3_L1HandlerTransactionReceiptResponse as L1HandlerTransactionReceiptResponse, type index$3_L1Message as L1Message, type index$3_L1_HANDLER_TXN as L1_HANDLER_TXN, type index$3_LedgerPathCalculation as LedgerPathCalculation, type index$3_LegacyCompiledContract as LegacyCompiledContract, type index$3_LegacyContractClass as LegacyContractClass, type index$3_LegacyEvent as LegacyEvent, type index$3_Literal as Literal, type index$3_Methods as Methods, type index$3_MultiDeployContractResponse as MultiDeployContractResponse, type index$3_MultiType as MultiType, index$3_NON_ZERO_PREFIX as NON_ZERO_PREFIX, type index$3_Nonce as Nonce, type index$3_OptionalPayload as OptionalPayload, type index$3_OutsideCall as OutsideCall, type index$3_OutsideExecution as OutsideExecution, type index$3_OutsideExecutionOptions as OutsideExecutionOptions, index$3_OutsideExecutionTypesV1 as OutsideExecutionTypesV1, index$3_OutsideExecutionTypesV2 as OutsideExecutionTypesV2, type index$3_OutsideExecutionVersion as OutsideExecutionVersion, type index$3_OutsideTransaction as OutsideTransaction, type index$3_PENDING_DECLARE_TXN_RECEIPT as PENDING_DECLARE_TXN_RECEIPT, type index$3_PENDING_DEPLOY_ACCOUNT_TXN_RECEIPT as PENDING_DEPLOY_ACCOUNT_TXN_RECEIPT, type index$3_PENDING_INVOKE_TXN_RECEIPT as PENDING_INVOKE_TXN_RECEIPT, type index$3_PENDING_L1_HANDLER_TXN_RECEIPT as PENDING_L1_HANDLER_TXN_RECEIPT, type index$3_PENDING_STATE_UPDATE as PENDING_STATE_UPDATE, type index$3_PRICE_UNIT as PRICE_UNIT, type index$3_ParsedEvent as ParsedEvent, type index$3_ParsedEvents as ParsedEvents, type index$3_ParsedStruct as ParsedStruct, type index$3_PendingBlock as PendingBlock, type index$3_PendingReceipt as PendingReceipt, type index$3_PendingStateUpdate as PendingStateUpdate, type index$3_Program as Program, type index$3_ProviderOptions as ProviderOptions, type index$3_PythonicHints as PythonicHints, type index$3_RESOURCE_PRICE as RESOURCE_PRICE, index$4 as RPC, type index$3_RPC_ERROR as RPC_ERROR, type index$3_RPC_ERROR_SET as RPC_ERROR_SET, type index$3_RawArgs as RawArgs, type index$3_RawArgsArray as RawArgsArray, type index$3_RawArgsObject as RawArgsObject, type index$3_RawCalldata as RawCalldata, type index$3_Receipt as Receipt, type index$3_RequiredKeysOf as RequiredKeysOf, type index$3_ResourceBounds as ResourceBounds, type index$3_ResourceBoundsOverhead as ResourceBoundsOverhead, type index$3_ResourceBoundsOverheadRPC07 as ResourceBoundsOverheadRPC07, type index$3_ResourceBoundsOverheadRPC08 as ResourceBoundsOverheadRPC08, type index$3_Result as Result, type index$3_RevertedTransactionReceiptResponse as RevertedTransactionReceiptResponse, type index$3_RpcProviderOptions as RpcProviderOptions, type index$3_SIMULATION_FLAG as SIMULATION_FLAG, type index$3_STATE_UPDATE as STATE_UPDATE, type index$3_SierraContractClass as SierraContractClass, type index$3_SierraContractEntryPointFields as SierraContractEntryPointFields, type index$3_SierraEntryPointsByType as SierraEntryPointsByType, type index$3_SierraProgramDebugInfo as SierraProgramDebugInfo, type index$3_Signature as Signature, type index$3_Simplify as Simplify, type index$3_SimulateTransaction as SimulateTransaction, type index$3_SimulateTransactionDetails as SimulateTransactionDetails, type index$3_SimulateTransactionResponse as SimulateTransactionResponse, type index$3_SimulatedTransaction as SimulatedTransaction, type index$3_SimulationFlags as SimulationFlags, type index$3_StarkProfile as StarkProfile, index$3_StarknetDomain as StarknetDomain, index$3_StarknetEnumType as StarknetEnumType, index$3_StarknetMerkleType as StarknetMerkleType, index$3_StarknetType as StarknetType, type index$3_StateUpdate as StateUpdate, type index$3_StateUpdateResponse as StateUpdateResponse, type index$3_Storage as Storage, type index$3_SubscriptionBlockIdentifier as SubscriptionBlockIdentifier, type index$3_SuccessfulTransactionReceiptResponse as SuccessfulTransactionReceiptResponse, type index$3_TRANSACTION_TRACE as TRANSACTION_TRACE, type index$3_TXN_EXECUTION_STATUS as TXN_EXECUTION_STATUS, type index$3_TXN_HASH as TXN_HASH, type index$3_TXN_STATUS as TXN_STATUS, type index$3_TransactionExecutionStatus as TransactionExecutionStatus, type index$3_TransactionFinalityStatus as TransactionFinalityStatus, type index$3_TransactionReceipt as TransactionReceipt, type index$3_TransactionReceiptCallbacks as TransactionReceiptCallbacks, type index$3_TransactionReceiptCallbacksDefault as TransactionReceiptCallbacksDefault, type index$3_TransactionReceiptCallbacksDefined as TransactionReceiptCallbacksDefined, type index$3_TransactionReceiptStatus as TransactionReceiptStatus, type index$3_TransactionReceiptValue as TransactionReceiptValue, type index$3_TransactionStatus as TransactionStatus, type index$3_TransactionStatusReceiptSets as TransactionStatusReceiptSets, type index$3_TransactionType as TransactionType, type index$3_TransactionWithHash as TransactionWithHash, type index$3_Tupled as Tupled, index$3_TypedData as TypedData, index$3_TypedDataRevision as TypedDataRevision, type index$3_Uint as Uint, type index$3_Uint256 as Uint256, type index$3_Uint512 as Uint512, type index$3_UniversalDeployerContractPayload as UniversalDeployerContractPayload, type index$3_UniversalDetails as UniversalDetails, type index$3_UniversalSuggestedFee as UniversalSuggestedFee, type index$3_V2DeclareSignerDetails as V2DeclareSignerDetails, type index$3_V2DeployAccountSignerDetails as V2DeployAccountSignerDetails, type index$3_V2InvocationsSignerDetails as V2InvocationsSignerDetails, type index$3_V3DeclareSignerDetails as V3DeclareSignerDetails, type index$3_V3DeployAccountSignerDetails as V3DeployAccountSignerDetails, type index$3_V3InvocationsSignerDetails as V3InvocationsSignerDetails, type index$3_V3TransactionDetails as V3TransactionDetails, type index$3_ValidateType as ValidateType, type index$3_WeierstrassSignatureType as WeierstrassSignatureType, type index$3_getContractVersionOptions as getContractVersionOptions, type index$3_getEstimateFeeBulkOptions as getEstimateFeeBulkOptions, type index$3_getSimulateTransactionOptions as getSimulateTransactionOptions, index$3_isRPC08_FeeEstimate as isRPC08_FeeEstimate, index$3_isRPC08_ResourceBounds as isRPC08_ResourceBounds, type index$3_waitForTransactionOptions as waitForTransactionOptions };
|
|
1522
|
+
export { type index$3_Abi as Abi, type index$3_AbiEntry as AbiEntry, type index$3_AbiEnum as AbiEnum, type index$3_AbiEnums as AbiEnums, type index$3_AbiEvent as AbiEvent, type index$3_AbiEvents as AbiEvents, type index$3_AbiInterfaces as AbiInterfaces, type index$3_AbiStruct as AbiStruct, type index$3_AbiStructs as AbiStructs, type index$3_AccountInvocationItem as AccountInvocationItem, type index$3_AccountInvocations as AccountInvocations, type index$3_AccountInvocationsFactoryDetails as AccountInvocationsFactoryDetails, type index$3_AllowArray as AllowArray, type index$3_Args as Args, type index$3_ArgsOrCalldata as ArgsOrCalldata, type index$3_ArgsOrCalldataWithOptions as ArgsOrCalldataWithOptions, type index$3_ArraySignatureType as ArraySignatureType, type index$3_AsyncContractFunction as AsyncContractFunction, type index$3_BLOCK_HASH as BLOCK_HASH, type index$3_BLOCK_NUMBER as BLOCK_NUMBER, type index$3_BigNumberish as BigNumberish, type Block$1 as Block, type index$3_BlockIdentifier as BlockIdentifier, type index$3_BlockNumber as BlockNumber, type index$3_BlockStatus as BlockStatus, type index$3_BlockTag as BlockTag, type index$3_BlockWithTxHashes as BlockWithTxHashes, type index$3_Builtins as Builtins, type index$3_ByteArray as ByteArray, type index$3_ByteCode as ByteCode, type index$3_CairoAssembly as CairoAssembly, type index$3_CairoContract as CairoContract, type index$3_CairoEnum as CairoEnum, type index$3_CairoEvent as CairoEvent, type index$3_CairoEventDefinition as CairoEventDefinition, type index$3_CairoEventVariant as CairoEventVariant, type index$3_CairoVersion as CairoVersion, type index$3_Call as Call, type index$3_CallContractResponse as CallContractResponse, type index$3_CallDetails as CallDetails, type index$3_CallOptions as CallOptions, type index$3_Calldata as Calldata, type index$3_CompiledContract as CompiledContract, type index$3_CompiledSierra as CompiledSierra, type index$3_CompiledSierraCasm as CompiledSierraCasm, type index$3_CompilerVersion as CompilerVersion, type index$3_CompleteDeclareContractPayload as CompleteDeclareContractPayload, type index$3_CompressedProgram as CompressedProgram, type index$3_ContractClass as ContractClass, type index$3_ContractClassIdentifier as ContractClassIdentifier, type index$3_ContractClassPayload as ContractClassPayload, type index$3_ContractClassResponse as ContractClassResponse, type index$3_ContractEntryPointFields as ContractEntryPointFields, type index$3_ContractFunction as ContractFunction, type index$3_ContractOptions as ContractOptions, type index$3_ContractVersion as ContractVersion, type index$3_DeclareAndDeployContractPayload as DeclareAndDeployContractPayload, type index$3_DeclareContractPayload as DeclareContractPayload, type index$3_DeclareContractResponse as DeclareContractResponse, type index$3_DeclareContractTransaction as DeclareContractTransaction, type index$3_DeclareDeployUDCResponse as DeclareDeployUDCResponse, type index$3_DeclareSignerDetails as DeclareSignerDetails, type index$3_DeclareTransactionReceiptResponse as DeclareTransactionReceiptResponse, type index$3_DeclaredTransaction as DeclaredTransaction, type index$3_DeployAccountContractPayload as DeployAccountContractPayload, type index$3_DeployAccountContractTransaction as DeployAccountContractTransaction, type index$3_DeployAccountSignerDetails as DeployAccountSignerDetails, type index$3_DeployAccountTransactionReceiptResponse as DeployAccountTransactionReceiptResponse, type index$3_DeployAndInvokeTransaction as DeployAndInvokeTransaction, type index$3_DeployContractResponse as DeployContractResponse, type index$3_DeployContractUDCResponse as DeployContractUDCResponse, type index$3_DeployTransaction as DeployTransaction, type index$3_DeployTransactionReceiptResponse as DeployTransactionReceiptResponse, type index$3_DeployedAccountTransaction as DeployedAccountTransaction, type index$3_Details as Details, index$3_EDAMode as EDAMode, index$3_EDataAvailabilityMode as EDataAvailabilityMode, index$3_ETH_ADDRESS as ETH_ADDRESS, index$3_ETransactionExecutionStatus as ETransactionExecutionStatus, index$3_ETransactionStatus as ETransactionStatus, index$3_ETransactionVersion as ETransactionVersion, index$3_ETransactionVersion2 as ETransactionVersion2, index$3_ETransactionVersion3 as ETransactionVersion3, type index$3_EVENTS_CHUNK as EVENTS_CHUNK, type index$3_EmittedEvent as EmittedEvent, type index$3_EntryPointType as EntryPointType, type index$3_EntryPointsByType as EntryPointsByType, type index$3_EstimateFee as EstimateFee, type index$3_EstimateFeeAction as EstimateFeeAction, type index$3_EstimateFeeBulk as EstimateFeeBulk, type index$3_EstimateFeeDetails as EstimateFeeDetails, type index$3_EstimateFeeResponse as EstimateFeeResponse, type index$3_EstimateFeeResponseBulk as EstimateFeeResponseBulk, type Event$1 as Event, type index$3_EventEntry as EventEntry, type index$3_EventFilter as EventFilter, type index$3_ExecutableDeployAndInvokeTransaction as ExecutableDeployAndInvokeTransaction, type index$3_ExecutableDeployTransaction as ExecutableDeployTransaction, type index$3_ExecutableInvokeTransaction as ExecutableInvokeTransaction, type index$3_ExecutableUserInvoke as ExecutableUserInvoke, type index$3_ExecutableUserTransaction as ExecutableUserTransaction, type index$3_ExecutionParameters as ExecutionParameters, type index$3_FEE_ESTIMATE as FEE_ESTIMATE, type index$3_FELT as FELT, type index$3_FeeEstimate as FeeEstimate, type index$3_FeeMarginPercentage as FeeMarginPercentage, type index$3_FeeMode as FeeMode, type index$3_FunctionAbi as FunctionAbi, type index$3_GetBlockResponse as GetBlockResponse, type index$3_GetTransactionReceiptResponse as GetTransactionReceiptResponse, type index$3_GetTransactionResponse as GetTransactionResponse, type index$3_GetTxReceiptResponseWithoutHelper as GetTxReceiptResponseWithoutHelper, type index$3_HexCalldata as HexCalldata, type index$3_InterfaceAbi as InterfaceAbi, type index$3_Invocation as Invocation, type index$3_Invocations as Invocations, type index$3_InvocationsDetails as InvocationsDetails, type index$3_InvocationsDetailsWithNonce as InvocationsDetailsWithNonce, type index$3_InvocationsSignerDetails as InvocationsSignerDetails, type index$3_InvokeFunctionResponse as InvokeFunctionResponse, type index$3_InvokeOptions as InvokeOptions, type index$3_InvokeTransaction as InvokeTransaction, type index$3_InvokeTransactionReceiptResponse as InvokeTransactionReceiptResponse, type index$3_InvokedTransaction as InvokedTransaction, type index$3_L1HandlerTransactionReceiptResponse as L1HandlerTransactionReceiptResponse, type index$3_L1Message as L1Message, type index$3_L1_HANDLER_TXN as L1_HANDLER_TXN, type index$3_LedgerPathCalculation as LedgerPathCalculation, type index$3_LegacyCompiledContract as LegacyCompiledContract, type index$3_LegacyContractClass as LegacyContractClass, type index$3_LegacyEvent as LegacyEvent, type index$3_Literal as Literal, type index$3_Methods as Methods, type index$3_MultiDeployContractResponse as MultiDeployContractResponse, type index$3_MultiType as MultiType, index$3_NON_ZERO_PREFIX as NON_ZERO_PREFIX, type index$3_Nonce as Nonce, type index$3_OptionalPayload as OptionalPayload, type index$3_OutsideCall as OutsideCall, type index$3_OutsideExecution as OutsideExecution, type index$3_OutsideExecutionOptions as OutsideExecutionOptions, index$3_OutsideExecutionTypesV1 as OutsideExecutionTypesV1, index$3_OutsideExecutionTypesV2 as OutsideExecutionTypesV2, type index$3_OutsideExecutionVersion as OutsideExecutionVersion, type index$3_OutsideTransaction as OutsideTransaction, type index$3_PENDING_DECLARE_TXN_RECEIPT as PENDING_DECLARE_TXN_RECEIPT, type index$3_PENDING_DEPLOY_ACCOUNT_TXN_RECEIPT as PENDING_DEPLOY_ACCOUNT_TXN_RECEIPT, type index$3_PENDING_INVOKE_TXN_RECEIPT as PENDING_INVOKE_TXN_RECEIPT, type index$3_PENDING_L1_HANDLER_TXN_RECEIPT as PENDING_L1_HANDLER_TXN_RECEIPT, type index$3_PENDING_STATE_UPDATE as PENDING_STATE_UPDATE, type index$3_PRICE_UNIT as PRICE_UNIT, type index$3_ParsedEvent as ParsedEvent, type index$3_ParsedEvents as ParsedEvents, type index$3_ParsedStruct as ParsedStruct, type index$3_PaymasterDetails as PaymasterDetails, type index$3_PaymasterFeeEstimate as PaymasterFeeEstimate, type index$3_PaymasterOptions as PaymasterOptions, type index$3_PaymasterRpcOptions as PaymasterRpcOptions, type index$3_PaymasterTimeBounds as PaymasterTimeBounds, type index$3_PendingBlock as PendingBlock, type index$3_PendingReceipt as PendingReceipt, type index$3_PendingStateUpdate as PendingStateUpdate, type index$3_PreparedDeployAndInvokeTransaction as PreparedDeployAndInvokeTransaction, type index$3_PreparedDeployTransaction as PreparedDeployTransaction, type index$3_PreparedInvokeTransaction as PreparedInvokeTransaction, type index$3_PreparedTransaction as PreparedTransaction, type index$3_Program as Program, type index$3_ProviderOptions as ProviderOptions, type index$3_PythonicHints as PythonicHints, type index$3_RESOURCE_PRICE as RESOURCE_PRICE, index$4 as RPC, type index$3_RPC_ERROR as RPC_ERROR, type index$3_RPC_ERROR_SET as RPC_ERROR_SET, type index$3_RawArgs as RawArgs, type index$3_RawArgsArray as RawArgsArray, type index$3_RawArgsObject as RawArgsObject, type index$3_RawCalldata as RawCalldata, type index$3_Receipt as Receipt, type index$3_RequiredKeysOf as RequiredKeysOf, type index$3_ResourceBounds as ResourceBounds, type index$3_ResourceBoundsOverhead as ResourceBoundsOverhead, type index$3_ResourceBoundsOverheadRPC07 as ResourceBoundsOverheadRPC07, type index$3_ResourceBoundsOverheadRPC08 as ResourceBoundsOverheadRPC08, type index$3_Result as Result, type index$3_RevertedTransactionReceiptResponse as RevertedTransactionReceiptResponse, type index$3_RpcProviderOptions as RpcProviderOptions, type index$3_SIMULATION_FLAG as SIMULATION_FLAG, type index$3_STATE_UPDATE as STATE_UPDATE, type index$3_SierraContractClass as SierraContractClass, type index$3_SierraContractEntryPointFields as SierraContractEntryPointFields, type index$3_SierraEntryPointsByType as SierraEntryPointsByType, type index$3_SierraProgramDebugInfo as SierraProgramDebugInfo, type index$3_Signature as Signature, type index$3_Simplify as Simplify, type index$3_SimulateTransaction as SimulateTransaction, type index$3_SimulateTransactionDetails as SimulateTransactionDetails, type index$3_SimulateTransactionResponse as SimulateTransactionResponse, type index$3_SimulatedTransaction as SimulatedTransaction, type index$3_SimulationFlags as SimulationFlags, type index$3_StarkProfile as StarkProfile, index$3_StarknetDomain as StarknetDomain, index$3_StarknetEnumType as StarknetEnumType, index$3_StarknetMerkleType as StarknetMerkleType, index$3_StarknetType as StarknetType, type index$3_StateUpdate as StateUpdate, type index$3_StateUpdateResponse as StateUpdateResponse, type index$3_Storage as Storage, type index$3_SubscriptionBlockIdentifier as SubscriptionBlockIdentifier, type index$3_SuccessfulTransactionReceiptResponse as SuccessfulTransactionReceiptResponse, type index$3_TRANSACTION_TRACE as TRANSACTION_TRACE, type index$3_TXN_EXECUTION_STATUS as TXN_EXECUTION_STATUS, type index$3_TXN_HASH as TXN_HASH, type index$3_TXN_STATUS as TXN_STATUS, type index$3_TokenData as TokenData, type index$3_TransactionExecutionStatus as TransactionExecutionStatus, type index$3_TransactionFinalityStatus as TransactionFinalityStatus, type index$3_TransactionReceipt as TransactionReceipt, type index$3_TransactionReceiptCallbacks as TransactionReceiptCallbacks, type index$3_TransactionReceiptCallbacksDefault as TransactionReceiptCallbacksDefault, type index$3_TransactionReceiptCallbacksDefined as TransactionReceiptCallbacksDefined, type index$3_TransactionReceiptStatus as TransactionReceiptStatus, type index$3_TransactionReceiptValue as TransactionReceiptValue, type index$3_TransactionStatus as TransactionStatus, type index$3_TransactionStatusReceiptSets as TransactionStatusReceiptSets, type index$3_TransactionType as TransactionType, type index$3_TransactionWithHash as TransactionWithHash, type index$3_Tupled as Tupled, index$3_TypedData as TypedData, index$3_TypedDataRevision as TypedDataRevision, type index$3_Uint as Uint, type index$3_Uint256 as Uint256, type index$3_Uint512 as Uint512, type index$3_UniversalDeployerContractPayload as UniversalDeployerContractPayload, type index$3_UniversalDetails as UniversalDetails, type index$3_UniversalSuggestedFee as UniversalSuggestedFee, type index$3_UserInvoke as UserInvoke, type index$3_UserTransaction as UserTransaction, type index$3_V2DeclareSignerDetails as V2DeclareSignerDetails, type index$3_V2DeployAccountSignerDetails as V2DeployAccountSignerDetails, type index$3_V2InvocationsSignerDetails as V2InvocationsSignerDetails, type index$3_V3DeclareSignerDetails as V3DeclareSignerDetails, type index$3_V3DeployAccountSignerDetails as V3DeployAccountSignerDetails, type index$3_V3InvocationsSignerDetails as V3InvocationsSignerDetails, type index$3_V3TransactionDetails as V3TransactionDetails, type index$3_ValidateType as ValidateType, type index$3_WeierstrassSignatureType as WeierstrassSignatureType, type index$3_getContractVersionOptions as getContractVersionOptions, type index$3_getEstimateFeeBulkOptions as getEstimateFeeBulkOptions, type index$3_getSimulateTransactionOptions as getSimulateTransactionOptions, index$3_isRPC08_FeeEstimate as isRPC08_FeeEstimate, index$3_isRPC08_ResourceBounds as isRPC08_ResourceBounds, type index$3_waitForTransactionOptions as waitForTransactionOptions };
|
|
1384
1523
|
}
|
|
1385
1524
|
|
|
1386
1525
|
declare const LogLevelIndex: {
|
|
@@ -1726,6 +1865,10 @@ declare const RPC_DEFAULT_NODES: {
|
|
|
1726
1865
|
readonly SN_MAIN: readonly ["https://starknet-mainnet.public.blastapi.io/rpc/", "https://free-rpc.nethermind.io/mainnet-juno/"];
|
|
1727
1866
|
readonly SN_SEPOLIA: readonly ["https://starknet-sepolia.public.blastapi.io/rpc/", "https://free-rpc.nethermind.io/sepolia-juno/"];
|
|
1728
1867
|
};
|
|
1868
|
+
declare const PAYMASTER_RPC_NODES: {
|
|
1869
|
+
readonly SN_MAIN: readonly ["https://starknet.paymaster.avnu.fi"];
|
|
1870
|
+
readonly SN_SEPOLIA: readonly ["https://sepolia.paymaster.avnu.fi"];
|
|
1871
|
+
};
|
|
1729
1872
|
declare const SYSTEM_MESSAGES: {
|
|
1730
1873
|
legacyTxWarningMessage: string;
|
|
1731
1874
|
legacyTxRPC08Message: string;
|
|
@@ -1744,6 +1887,7 @@ declare const constants_MASK_250: typeof MASK_250;
|
|
|
1744
1887
|
declare const constants_MASK_31: typeof MASK_31;
|
|
1745
1888
|
declare const constants_MAX_STORAGE_ITEM_SIZE: typeof MAX_STORAGE_ITEM_SIZE;
|
|
1746
1889
|
declare const constants_OutsideExecutionCallerAny: typeof OutsideExecutionCallerAny;
|
|
1890
|
+
declare const constants_PAYMASTER_RPC_NODES: typeof PAYMASTER_RPC_NODES;
|
|
1747
1891
|
declare const constants_PRIME: typeof PRIME;
|
|
1748
1892
|
declare const constants_RANGE_FELT: typeof RANGE_FELT;
|
|
1749
1893
|
declare const constants_RANGE_I128: typeof RANGE_I128;
|
|
@@ -1758,7 +1902,7 @@ declare const constants_TRANSACTION_VERSION: typeof TRANSACTION_VERSION;
|
|
|
1758
1902
|
declare const constants_UDC: typeof UDC;
|
|
1759
1903
|
declare const constants_ZERO: typeof ZERO;
|
|
1760
1904
|
declare namespace constants {
|
|
1761
|
-
export { constants_ADDR_BOUND as ADDR_BOUND, constants_API_VERSION as API_VERSION, _BaseUrl as BaseUrl, constants_DEFAULT_GLOBAL_CONFIG as DEFAULT_GLOBAL_CONFIG, constants_HARDENING_4BYTES as HARDENING_4BYTES, constants_HARDENING_BYTE as HARDENING_BYTE, constants_IS_BROWSER as IS_BROWSER, constants_MASK_250 as MASK_250, constants_MASK_31 as MASK_31, constants_MAX_STORAGE_ITEM_SIZE as MAX_STORAGE_ITEM_SIZE, _NetworkName as NetworkName, constants_OutsideExecutionCallerAny as OutsideExecutionCallerAny, constants_PRIME as PRIME, constants_RANGE_FELT as RANGE_FELT, constants_RANGE_I128 as RANGE_I128, constants_RANGE_U128 as RANGE_U128, constants_RPC_DEFAULT_NODES as RPC_DEFAULT_NODES, constants_SNIP9_V1_INTERFACE_ID as SNIP9_V1_INTERFACE_ID, constants_SNIP9_V2_INTERFACE_ID as SNIP9_V2_INTERFACE_ID, constants_SYSTEM_MESSAGES as SYSTEM_MESSAGES, _StarknetChainId as StarknetChainId, _SupportedRpcVersion as SupportedRpcVersion, type constants_SupportedTransactionVersion as SupportedTransactionVersion, constants_TEXT_TO_FELT_MAX_LEN as TEXT_TO_FELT_MAX_LEN, constants_TRANSACTION_VERSION as TRANSACTION_VERSION, _TransactionHashPrefix as TransactionHashPrefix, constants_UDC as UDC, constants_ZERO as ZERO };
|
|
1905
|
+
export { constants_ADDR_BOUND as ADDR_BOUND, constants_API_VERSION as API_VERSION, _BaseUrl as BaseUrl, constants_DEFAULT_GLOBAL_CONFIG as DEFAULT_GLOBAL_CONFIG, constants_HARDENING_4BYTES as HARDENING_4BYTES, constants_HARDENING_BYTE as HARDENING_BYTE, constants_IS_BROWSER as IS_BROWSER, constants_MASK_250 as MASK_250, constants_MASK_31 as MASK_31, constants_MAX_STORAGE_ITEM_SIZE as MAX_STORAGE_ITEM_SIZE, _NetworkName as NetworkName, constants_OutsideExecutionCallerAny as OutsideExecutionCallerAny, constants_PAYMASTER_RPC_NODES as PAYMASTER_RPC_NODES, constants_PRIME as PRIME, constants_RANGE_FELT as RANGE_FELT, constants_RANGE_I128 as RANGE_I128, constants_RANGE_U128 as RANGE_U128, constants_RPC_DEFAULT_NODES as RPC_DEFAULT_NODES, constants_SNIP9_V1_INTERFACE_ID as SNIP9_V1_INTERFACE_ID, constants_SNIP9_V2_INTERFACE_ID as SNIP9_V2_INTERFACE_ID, constants_SYSTEM_MESSAGES as SYSTEM_MESSAGES, _StarknetChainId as StarknetChainId, _SupportedRpcVersion as SupportedRpcVersion, type constants_SupportedTransactionVersion as SupportedTransactionVersion, constants_TEXT_TO_FELT_MAX_LEN as TEXT_TO_FELT_MAX_LEN, constants_TRANSACTION_VERSION as TRANSACTION_VERSION, _TransactionHashPrefix as TransactionHashPrefix, constants_UDC as UDC, constants_ZERO as ZERO };
|
|
1762
1906
|
}
|
|
1763
1907
|
|
|
1764
1908
|
declare class RpcChannel$1 {
|
|
@@ -2739,7 +2883,7 @@ declare class RpcError<BaseErrorT extends RPC_ERROR = RPC_ERROR> extends Library
|
|
|
2739
2883
|
params: any;
|
|
2740
2884
|
};
|
|
2741
2885
|
constructor(baseError: BaseErrorT, method: string, params: any);
|
|
2742
|
-
get code(): 1 | 31 | 10 | 66 | 20 | 32 | 21 | 24 | 27 | 28 | 29 | 33 | 34 | 40 | 41 | 42 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 67 | 68 | 100;
|
|
2886
|
+
get code(): 1 | 31 | 10 | 66 | 20 | 32 | 21 | 24 | 27 | 28 | 29 | 33 | 34 | 40 | 41 | 42 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 67 | 68 | 100 | 150 | 151 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 163;
|
|
2743
2887
|
/**
|
|
2744
2888
|
* Verifies the underlying RPC error, also serves as a type guard for the _baseError_ property
|
|
2745
2889
|
* @example
|
|
@@ -3742,12 +3886,65 @@ declare abstract class AccountInterface extends ProviderInterface {
|
|
|
3742
3886
|
abstract getNonce(blockIdentifier?: BlockIdentifier): Promise<Nonce>;
|
|
3743
3887
|
}
|
|
3744
3888
|
|
|
3889
|
+
declare abstract class PaymasterInterface {
|
|
3890
|
+
abstract nodeUrl: string;
|
|
3891
|
+
abstract headers: object;
|
|
3892
|
+
abstract readonly baseFetch: NonNullable<RpcProviderOptions['baseFetch']>;
|
|
3893
|
+
/**
|
|
3894
|
+
* Returns the status of the paymaster service
|
|
3895
|
+
*
|
|
3896
|
+
* @returns If the paymaster service is correctly functioning, return true. Else, return false
|
|
3897
|
+
*/
|
|
3898
|
+
abstract isAvailable(): Promise<boolean>;
|
|
3899
|
+
/**
|
|
3900
|
+
* Receives the transaction the user wants to execute. Returns the typed data along with
|
|
3901
|
+
* the estimated gas cost and the maximum gas cost suggested to ensure execution
|
|
3902
|
+
*
|
|
3903
|
+
* @param transaction Transaction to be executed by the paymaster
|
|
3904
|
+
* @param parameters Execution parameters to be used when executing the transaction
|
|
3905
|
+
* @returns The transaction data required for execution along with an estimation of the fee
|
|
3906
|
+
*/
|
|
3907
|
+
abstract buildTransaction(transaction: UserTransaction, parameters: ExecutionParameters): Promise<PreparedTransaction>;
|
|
3908
|
+
/**
|
|
3909
|
+
* Sends the signed typed data to the paymaster service for execution
|
|
3910
|
+
*
|
|
3911
|
+
* @param transaction Typed data build by calling paymaster_buildTransaction signed by the user to be executed by the paymaster service
|
|
3912
|
+
* @param parameters Execution parameters to be used when executing the transaction
|
|
3913
|
+
* @returns The hash of the transaction broadcasted by the paymaster and the tracking ID corresponding to the user `execute` request
|
|
3914
|
+
*/
|
|
3915
|
+
abstract executeTransaction(transaction: ExecutableUserTransaction, parameters: ExecutionParameters): Promise<PAYMASTER_API.ExecuteResponse>;
|
|
3916
|
+
/**
|
|
3917
|
+
* Get a list of the tokens that the paymaster supports, together with their prices in STRK
|
|
3918
|
+
*
|
|
3919
|
+
* @returns An array of token data
|
|
3920
|
+
*/
|
|
3921
|
+
abstract getSupportedTokens(): Promise<TokenData[]>;
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
declare class PaymasterRpc implements PaymasterInterface {
|
|
3925
|
+
nodeUrl: string;
|
|
3926
|
+
headers: object;
|
|
3927
|
+
readonly baseFetch: NonNullable<RpcProviderOptions['baseFetch']>;
|
|
3928
|
+
requestId: number;
|
|
3929
|
+
constructor(options?: PaymasterOptions | PaymasterInterface | PaymasterRpc);
|
|
3930
|
+
fetch(method: string, params?: object, id?: string | number): Promise<Response>;
|
|
3931
|
+
protected errorHandler(method: string, params: any, rpcError?: Error$1, otherError?: any): void;
|
|
3932
|
+
protected fetchEndpoint<T extends keyof PAYMASTER_API.Methods>(method: T, params?: PAYMASTER_API.Methods[T]['params']): Promise<PAYMASTER_API.Methods[T]['result']>;
|
|
3933
|
+
isAvailable(): Promise<boolean>;
|
|
3934
|
+
buildTransaction(transaction: UserTransaction, parameters: ExecutionParameters): Promise<PreparedTransaction>;
|
|
3935
|
+
executeTransaction(transaction: ExecutableUserTransaction, parameters: ExecutionParameters): Promise<PAYMASTER_API.ExecuteResponse>;
|
|
3936
|
+
getSupportedTokens(): Promise<TokenData[]>;
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
declare const defaultPaymaster: PaymasterRpc;
|
|
3940
|
+
|
|
3745
3941
|
declare class Account extends RpcProvider implements AccountInterface {
|
|
3746
3942
|
signer: SignerInterface;
|
|
3747
3943
|
address: string;
|
|
3748
3944
|
cairoVersion: CairoVersion;
|
|
3749
3945
|
readonly transactionVersion: typeof ETransactionVersion.V2 | typeof ETransactionVersion.V3;
|
|
3750
|
-
|
|
3946
|
+
paymaster: PaymasterInterface;
|
|
3947
|
+
constructor(providerOrOptions: ProviderOptions | ProviderInterface, address: string, pkOrSigner: Uint8Array | string | SignerInterface, cairoVersion?: CairoVersion, transactionVersion?: SupportedTransactionVersion, paymaster?: PaymasterOptions | PaymasterInterface);
|
|
3751
3948
|
/** @deprecated @hidden */
|
|
3752
3949
|
static create(): Promise<never>;
|
|
3753
3950
|
protected getPreferredVersion(type12: ETransactionVersion, type3: ETransactionVersion): RPCSPEC08.ETransactionVersion;
|
|
@@ -3766,6 +3963,9 @@ declare class Account extends RpcProvider implements AccountInterface {
|
|
|
3766
3963
|
estimateFeeBulk(invocations: Invocations, details?: UniversalDetails): Promise<EstimateFeeBulk>;
|
|
3767
3964
|
simulateTransaction(invocations: Invocations, details?: SimulateTransactionDetails): Promise<SimulateTransactionResponse>;
|
|
3768
3965
|
execute(transactions: AllowArray<Call>, transactionsDetail?: UniversalDetails): Promise<InvokeFunctionResponse>;
|
|
3966
|
+
private buildPaymasterTransaction;
|
|
3967
|
+
estimatePaymasterTransactionFee(calls: Call[], paymasterDetails: PaymasterDetails): Promise<PaymasterFeeEstimate>;
|
|
3968
|
+
executePaymasterTransaction(calls: Call[], paymasterDetails: PaymasterDetails, maxFee?: BigNumberish): Promise<InvokeFunctionResponse>;
|
|
3769
3969
|
/**
|
|
3770
3970
|
* First check if contract is already declared, if not declare it
|
|
3771
3971
|
* If contract already declared returned transaction_hash is ''.
|
|
@@ -3876,7 +4076,7 @@ interface StarknetWalletProvider extends StarknetWindowObject {
|
|
|
3876
4076
|
|
|
3877
4077
|
declare class WalletAccount extends Account implements AccountInterface {
|
|
3878
4078
|
walletProvider: StarknetWalletProvider;
|
|
3879
|
-
constructor(providerOrOptions: ProviderOptions | ProviderInterface, walletProvider: StarknetWalletProvider, address: string, cairoVersion?: CairoVersion);
|
|
4079
|
+
constructor(providerOrOptions: ProviderOptions | ProviderInterface, walletProvider: StarknetWalletProvider, address: string, cairoVersion?: CairoVersion, paymaster?: PaymasterOptions | PaymasterInterface);
|
|
3880
4080
|
/**
|
|
3881
4081
|
* WALLET EVENTS
|
|
3882
4082
|
*/
|
|
@@ -3893,12 +4093,14 @@ declare class WalletAccount extends Account implements AccountInterface {
|
|
|
3893
4093
|
/**
|
|
3894
4094
|
* ACCOUNT METHODS
|
|
3895
4095
|
*/
|
|
3896
|
-
execute(calls: AllowArray<Call
|
|
4096
|
+
execute(calls: AllowArray<Call>, arg2?: Abi[] | UniversalDetails, transactionsDetail?: UniversalDetails): Promise<{
|
|
4097
|
+
transaction_hash: string;
|
|
4098
|
+
}>;
|
|
3897
4099
|
declare(payload: DeclareContractPayload): Promise<RPCSPEC07.AddDeclareTransactionResult>;
|
|
3898
4100
|
deploy(payload: UniversalDeployerContractPayload | UniversalDeployerContractPayload[]): Promise<MultiDeployContractResponse>;
|
|
3899
4101
|
signMessage(typedData: TypedData): Promise<Signature$1>;
|
|
3900
|
-
static connect(provider: ProviderInterface, walletProvider: StarknetWalletProvider, cairoVersion?: CairoVersion, silentMode?: boolean): Promise<WalletAccount>;
|
|
3901
|
-
static connectSilent(provider: ProviderInterface, walletProvider: StarknetWalletProvider, cairoVersion?: CairoVersion): Promise<WalletAccount>;
|
|
4102
|
+
static connect(provider: ProviderInterface, walletProvider: StarknetWalletProvider, cairoVersion?: CairoVersion, paymaster?: PaymasterOptions | PaymasterInterface, silentMode?: boolean): Promise<WalletAccount>;
|
|
4103
|
+
static connectSilent(provider: ProviderInterface, walletProvider: StarknetWalletProvider, cairoVersion?: CairoVersion, paymaster?: PaymasterOptions | PaymasterInterface): Promise<WalletAccount>;
|
|
3902
4104
|
}
|
|
3903
4105
|
|
|
3904
4106
|
declare module 'abi-wan-kanabi' {
|
|
@@ -6124,6 +6326,19 @@ declare namespace starknetId {
|
|
|
6124
6326
|
export { starknetId_StarknetIdContract as StarknetIdContract, starknetId_StarknetIdIdentityContract as StarknetIdIdentityContract, starknetId_StarknetIdMulticallContract as StarknetIdMulticallContract, starknetId_StarknetIdPfpContract as StarknetIdPfpContract, starknetId_StarknetIdPopContract as StarknetIdPopContract, starknetId_StarknetIdVerifierContract as StarknetIdVerifierContract, starknetId_dynamicCallData as dynamicCallData, starknetId_dynamicFelt as dynamicFelt, starknetId_execution as execution, starknetId_getStarknetIdContract as getStarknetIdContract, starknetId_getStarknetIdIdentityContract as getStarknetIdIdentityContract, starknetId_getStarknetIdMulticallContract as getStarknetIdMulticallContract, starknetId_getStarknetIdPfpContract as getStarknetIdPfpContract, starknetId_getStarknetIdPopContract as getStarknetIdPopContract, starknetId_getStarknetIdVerifierContract as getStarknetIdVerifierContract, starknetId_isStarkDomain as isStarkDomain, starknetId_useDecoded as useDecoded, starknetId_useEncoded as useEncoded };
|
|
6125
6327
|
}
|
|
6126
6328
|
|
|
6329
|
+
/**
|
|
6330
|
+
* Return randomly select available public paymaster node url
|
|
6331
|
+
* @param {NetworkName} networkName NetworkName
|
|
6332
|
+
* @param {boolean} mute mute public node warning
|
|
6333
|
+
* @returns {string} default node url
|
|
6334
|
+
*/
|
|
6335
|
+
declare const getDefaultPaymasterNodeUrl: (networkName?: _NetworkName, mute?: boolean) => string;
|
|
6336
|
+
|
|
6337
|
+
declare const paymaster_getDefaultPaymasterNodeUrl: typeof getDefaultPaymasterNodeUrl;
|
|
6338
|
+
declare namespace paymaster {
|
|
6339
|
+
export { paymaster_getDefaultPaymasterNodeUrl as getDefaultPaymasterNodeUrl };
|
|
6340
|
+
}
|
|
6341
|
+
|
|
6127
6342
|
/**
|
|
6128
6343
|
* Helper - Async Sleep for 'delay' time
|
|
6129
6344
|
*
|
|
@@ -7614,4 +7829,4 @@ declare class Logger {
|
|
|
7614
7829
|
*/
|
|
7615
7830
|
declare const logger: Logger;
|
|
7616
7831
|
|
|
7617
|
-
export { type Abi, type AbiEntry, type AbiEnum, type AbiEnums, type AbiEvent, type AbiEvents, type AbiInterfaces, type AbiStruct, type AbiStructs, Account, AccountInterface, type AccountInvocationItem, type AccountInvocations, type AccountInvocationsFactoryDetails, type AllowArray, type Args, type ArgsOrCalldata, type ArgsOrCalldataWithOptions, type ArraySignatureType, type AsyncContractFunction, type BLOCK_HASH, type BLOCK_NUMBER, BatchClient, type BatchClientOptions, type BigNumberish, type Block$1 as Block, type BlockIdentifier, type BlockNumber, BlockStatus, BlockTag, type BlockWithTxHashes, type Builtins, type ByteArray, type ByteCode, type CairoAssembly, type CairoContract, CairoCustomEnum, type CairoEnum, type CairoEnumRaw, type CairoEvent, type CairoEventDefinition, type CairoEventVariant, CairoFixedArray, CairoOption, CairoOptionVariant, CairoResult, CairoResultVariant, CairoUint256, CairoUint512, type CairoVersion, type Call, type CallContractResponse, CallData, type CallDetails, type CallOptions, type Calldata, type CompiledContract, type CompiledSierra, type CompiledSierraCasm, type CompilerVersion, type CompleteDeclareContractPayload, type CompressedProgram, Contract, type ContractClass, type ContractClassIdentifier, type ContractClassPayload, type ContractClassResponse, type ContractEntryPointFields, ContractFactory, type ContractFactoryParams, type ContractFunction, ContractInterface, type ContractOptions, type ContractVersion, CustomError, type DeclareAndDeployContractPayload, type DeclareContractPayload, type DeclareContractResponse, type DeclareContractTransaction, type DeclareDeployUDCResponse, type DeclareSignerDetails, type DeclareTransactionReceiptResponse, type DeclaredTransaction, type DeployAccountContractPayload, type DeployAccountContractTransaction, type DeployAccountSignerDetails, type DeployAccountTransactionReceiptResponse, type DeployContractResponse, type DeployContractUDCResponse, type DeployTransactionReceiptResponse, type DeployedAccountTransaction, type Details, EDAMode, EDataAvailabilityMode, ETH_ADDRESS, ETransactionExecutionStatus, ETransactionStatus, ETransactionVersion, ETransactionVersion2, ETransactionVersion3, type EVENTS_CHUNK, type EmittedEvent, EntryPointType, type EntryPointsByType, type EstimateFee, type EstimateFeeAction, type EstimateFeeBulk, type EstimateFeeDetails, type EstimateFeeResponse, type EstimateFeeResponseBulk, EthSigner, type Event$1 as Event, type EventEntry, type EventFilter, type FEE_ESTIMATE, type FELT, type FeeEstimate, type FeeMarginPercentage, type FunctionAbi, type GetBlockResponse, type GetTransactionReceiptResponse, type GetTransactionResponse, type GetTxReceiptResponseWithoutHelper, type HexCalldata, type InterfaceAbi, type Invocation, type Invocations, type InvocationsDetails, type InvocationsDetailsWithNonce, type InvocationsSignerDetails, type InvokeFunctionResponse, type InvokeOptions, type InvokeTransactionReceiptResponse, type InvokedTransaction, type L1HandlerTransactionReceiptResponse, type L1Message, type L1_HANDLER_TXN, type LedgerPathCalculation, LedgerSigner111 as LedgerSigner, LedgerSigner111, LedgerSigner221, LedgerSigner231, type LegacyCompiledContract, type LegacyContractClass, type LegacyEvent, LibraryError, Literal, type LogLevel, LogLevelIndex, type Methods, type MultiDeployContractResponse, type MultiType, NON_ZERO_PREFIX, type Nonce, type OptionalPayload, type OutsideCall, type OutsideExecution, type OutsideExecutionOptions, OutsideExecutionTypesV1, OutsideExecutionTypesV2, OutsideExecutionVersion, type OutsideTransaction, type PENDING_DECLARE_TXN_RECEIPT, type PENDING_DEPLOY_ACCOUNT_TXN_RECEIPT, type PENDING_INVOKE_TXN_RECEIPT, type PENDING_L1_HANDLER_TXN_RECEIPT, type PENDING_STATE_UPDATE, type PRICE_UNIT, type ParsedEvent, type ParsedEvents, type ParsedStruct, type PendingBlock, type PendingReceipt, type PendingStateUpdate, type Program, RpcProvider as Provider, ProviderInterface, type ProviderOptions, type PythonicHints, type RESOURCE_PRICE, index$4 as RPC, rpc_0_7_1 as RPC07, rpc_0_8_1 as RPC08, RPCResponseParser, type RPC_ERROR, type RPC_ERROR_SET, type RawArgs, type RawArgsArray, type RawArgsObject, type RawCalldata, type Receipt, ReceiptTx, type RequiredKeysOf, type ResourceBounds, type ResourceBoundsOverhead, type ResourceBoundsOverheadRPC07, type ResourceBoundsOverheadRPC08, ResponseParser, type Result, type RevertedTransactionReceiptResponse, RpcChannel, RpcError, RpcProvider, type RpcProviderOptions, type SIMULATION_FLAG, type STATE_UPDATE, type SierraContractClass, type SierraContractEntryPointFields, type SierraEntryPointsByType, type SierraProgramDebugInfo, type Signature, Signer, SignerInterface, type Simplify, type SimulateTransaction, type SimulateTransactionDetails, type SimulateTransactionResponse, type SimulatedTransaction, type SimulationFlags, type StarkProfile, type StateUpdate, type StateUpdateResponse, type Storage, type SubscriptionBlockIdentifier, type SuccessfulTransactionReceiptResponse, type TRANSACTION_TRACE, type TXN_EXECUTION_STATUS, type TXN_HASH, type TXN_STATUS, TransactionExecutionStatus, TransactionFinalityStatus, type TransactionReceipt, type TransactionReceiptCallbacks, type TransactionReceiptCallbacksDefault, type TransactionReceiptCallbacksDefined, type TransactionReceiptStatus, type TransactionReceiptValue, type TransactionStatus, type TransactionStatusReceiptSets, TransactionType, type TransactionWithHash, type Tupled, type TypedContractV2, UINT_128_MAX, UINT_128_MIN, UINT_256_HIGH_MAX, UINT_256_HIGH_MIN, UINT_256_LOW_MAX, UINT_256_LOW_MIN, UINT_256_MAX, UINT_256_MIN, UINT_512_MAX, UINT_512_MIN, Uint, type Uint256, type Uint512, type UniversalDeployerContractPayload, type UniversalDetails, type UniversalSuggestedFee, type V2DeclareSignerDetails, type V2DeployAccountSignerDetails, type V2InvocationsSignerDetails, type V3DeclareSignerDetails, type V3DeployAccountSignerDetails, type V3InvocationsSignerDetails, type V3TransactionDetails, ValidateType, WSSubscriptions, WalletAccount, WebSocketChannel, type WebSocketOptions, type WeierstrassSignatureType, addAddressPadding, byteArray, cairo, config, constants, contractClassResponseToLegacyCompiledContract, defaultProvider, ec, encode, eth, index as events, extractContractHashes, fixProto, fixStack, getCalldata, getChecksumAddress, type getContractVersionOptions, type getEstimateFeeBulkOptions, getLedgerPathBuffer111 as getLedgerPathBuffer, getLedgerPathBuffer111, getLedgerPathBuffer221, type getSimulateTransactionOptions, index$2 as hash, isPendingBlock, isPendingStateUpdate, isPendingTransaction, isRPC08_FeeEstimate, isRPC08_ResourceBounds, isSierra, isSupportedSpecVersion, isV3Tx, isVersion, json, logger, merkle, num, outsideExecution, parseCalldataField, provider, selector, shortString, src5, index$1 as stark, starknetId, toAnyPatchVersion, transaction, typedData, index$3 as types, uint256$1 as uint256, units, v2 as v2hash, v3 as v3hash, validateAndParseAddress, validateChecksumAddress, type waitForTransactionOptions, connect as wallet };
|
|
7832
|
+
export { type Abi, type AbiEntry, type AbiEnum, type AbiEnums, type AbiEvent, type AbiEvents, type AbiInterfaces, type AbiStruct, type AbiStructs, Account, AccountInterface, type AccountInvocationItem, type AccountInvocations, type AccountInvocationsFactoryDetails, type AllowArray, type Args, type ArgsOrCalldata, type ArgsOrCalldataWithOptions, type ArraySignatureType, type AsyncContractFunction, type BLOCK_HASH, type BLOCK_NUMBER, BatchClient, type BatchClientOptions, type BigNumberish, type Block$1 as Block, type BlockIdentifier, type BlockNumber, BlockStatus, BlockTag, type BlockWithTxHashes, type Builtins, type ByteArray, type ByteCode, type CairoAssembly, type CairoContract, CairoCustomEnum, type CairoEnum, type CairoEnumRaw, type CairoEvent, type CairoEventDefinition, type CairoEventVariant, CairoFixedArray, CairoOption, CairoOptionVariant, CairoResult, CairoResultVariant, CairoUint256, CairoUint512, type CairoVersion, type Call, type CallContractResponse, CallData, type CallDetails, type CallOptions, type Calldata, type CompiledContract, type CompiledSierra, type CompiledSierraCasm, type CompilerVersion, type CompleteDeclareContractPayload, type CompressedProgram, Contract, type ContractClass, type ContractClassIdentifier, type ContractClassPayload, type ContractClassResponse, type ContractEntryPointFields, ContractFactory, type ContractFactoryParams, type ContractFunction, ContractInterface, type ContractOptions, type ContractVersion, CustomError, type DeclareAndDeployContractPayload, type DeclareContractPayload, type DeclareContractResponse, type DeclareContractTransaction, type DeclareDeployUDCResponse, type DeclareSignerDetails, type DeclareTransactionReceiptResponse, type DeclaredTransaction, type DeployAccountContractPayload, type DeployAccountContractTransaction, type DeployAccountSignerDetails, type DeployAccountTransactionReceiptResponse, type DeployAndInvokeTransaction, type DeployContractResponse, type DeployContractUDCResponse, type DeployTransaction, type DeployTransactionReceiptResponse, type DeployedAccountTransaction, type Details, EDAMode, EDataAvailabilityMode, ETH_ADDRESS, ETransactionExecutionStatus, ETransactionStatus, ETransactionVersion, ETransactionVersion2, ETransactionVersion3, type EVENTS_CHUNK, type EmittedEvent, EntryPointType, type EntryPointsByType, type EstimateFee, type EstimateFeeAction, type EstimateFeeBulk, type EstimateFeeDetails, type EstimateFeeResponse, type EstimateFeeResponseBulk, EthSigner, type Event$1 as Event, type EventEntry, type EventFilter, type ExecutableDeployAndInvokeTransaction, type ExecutableDeployTransaction, type ExecutableInvokeTransaction, type ExecutableUserInvoke, type ExecutableUserTransaction, type ExecutionParameters, type FEE_ESTIMATE, type FELT, type FeeEstimate, type FeeMarginPercentage, type FeeMode, type FunctionAbi, type GetBlockResponse, type GetTransactionReceiptResponse, type GetTransactionResponse, type GetTxReceiptResponseWithoutHelper, type HexCalldata, type InterfaceAbi, type Invocation, type Invocations, type InvocationsDetails, type InvocationsDetailsWithNonce, type InvocationsSignerDetails, type InvokeFunctionResponse, type InvokeOptions, type InvokeTransaction, type InvokeTransactionReceiptResponse, type InvokedTransaction, type L1HandlerTransactionReceiptResponse, type L1Message, type L1_HANDLER_TXN, type LedgerPathCalculation, LedgerSigner111 as LedgerSigner, LedgerSigner111, LedgerSigner221, LedgerSigner231, type LegacyCompiledContract, type LegacyContractClass, type LegacyEvent, LibraryError, Literal, type LogLevel, LogLevelIndex, type Methods, type MultiDeployContractResponse, type MultiType, NON_ZERO_PREFIX, type Nonce, type OptionalPayload, type OutsideCall, type OutsideExecution, type OutsideExecutionOptions, OutsideExecutionTypesV1, OutsideExecutionTypesV2, OutsideExecutionVersion, type OutsideTransaction, type PENDING_DECLARE_TXN_RECEIPT, type PENDING_DEPLOY_ACCOUNT_TXN_RECEIPT, type PENDING_INVOKE_TXN_RECEIPT, type PENDING_L1_HANDLER_TXN_RECEIPT, type PENDING_STATE_UPDATE, type PRICE_UNIT, type ParsedEvent, type ParsedEvents, type ParsedStruct, type PaymasterDetails, type PaymasterFeeEstimate, PaymasterInterface, type PaymasterOptions, PaymasterRpc, type PaymasterRpcOptions, type PaymasterTimeBounds, type PendingBlock, type PendingReceipt, type PendingStateUpdate, type PreparedDeployAndInvokeTransaction, type PreparedDeployTransaction, type PreparedInvokeTransaction, type PreparedTransaction, type Program, RpcProvider as Provider, ProviderInterface, type ProviderOptions, type PythonicHints, type RESOURCE_PRICE, index$4 as RPC, rpc_0_7_1 as RPC07, rpc_0_8_1 as RPC08, RPCResponseParser, type RPC_ERROR, type RPC_ERROR_SET, type RawArgs, type RawArgsArray, type RawArgsObject, type RawCalldata, type Receipt, ReceiptTx, type RequiredKeysOf, type ResourceBounds, type ResourceBoundsOverhead, type ResourceBoundsOverheadRPC07, type ResourceBoundsOverheadRPC08, ResponseParser, type Result, type RevertedTransactionReceiptResponse, RpcChannel, RpcError, RpcProvider, type RpcProviderOptions, type SIMULATION_FLAG, type STATE_UPDATE, type SierraContractClass, type SierraContractEntryPointFields, type SierraEntryPointsByType, type SierraProgramDebugInfo, type Signature, Signer, SignerInterface, type Simplify, type SimulateTransaction, type SimulateTransactionDetails, type SimulateTransactionResponse, type SimulatedTransaction, type SimulationFlags, type StarkProfile, type StateUpdate, type StateUpdateResponse, type Storage, type SubscriptionBlockIdentifier, type SuccessfulTransactionReceiptResponse, type TRANSACTION_TRACE, type TXN_EXECUTION_STATUS, type TXN_HASH, type TXN_STATUS, type TokenData, TransactionExecutionStatus, TransactionFinalityStatus, type TransactionReceipt, type TransactionReceiptCallbacks, type TransactionReceiptCallbacksDefault, type TransactionReceiptCallbacksDefined, type TransactionReceiptStatus, type TransactionReceiptValue, type TransactionStatus, type TransactionStatusReceiptSets, TransactionType, type TransactionWithHash, type Tupled, type TypedContractV2, UINT_128_MAX, UINT_128_MIN, UINT_256_HIGH_MAX, UINT_256_HIGH_MIN, UINT_256_LOW_MAX, UINT_256_LOW_MIN, UINT_256_MAX, UINT_256_MIN, UINT_512_MAX, UINT_512_MIN, Uint, type Uint256, type Uint512, type UniversalDeployerContractPayload, type UniversalDetails, type UniversalSuggestedFee, type UserInvoke, type UserTransaction, type V2DeclareSignerDetails, type V2DeployAccountSignerDetails, type V2InvocationsSignerDetails, type V3DeclareSignerDetails, type V3DeployAccountSignerDetails, type V3InvocationsSignerDetails, type V3TransactionDetails, ValidateType, WSSubscriptions, WalletAccount, WebSocketChannel, type WebSocketOptions, type WeierstrassSignatureType, addAddressPadding, byteArray, cairo, config, constants, contractClassResponseToLegacyCompiledContract, defaultPaymaster, defaultProvider, ec, encode, eth, index as events, extractContractHashes, fixProto, fixStack, getCalldata, getChecksumAddress, type getContractVersionOptions, type getEstimateFeeBulkOptions, getLedgerPathBuffer111 as getLedgerPathBuffer, getLedgerPathBuffer111, getLedgerPathBuffer221, type getSimulateTransactionOptions, index$2 as hash, isPendingBlock, isPendingStateUpdate, isPendingTransaction, isRPC08_FeeEstimate, isRPC08_ResourceBounds, isSierra, isSupportedSpecVersion, isV3Tx, isVersion, json, logger, merkle, num, outsideExecution, parseCalldataField, paymaster, provider, selector, shortString, src5, index$1 as stark, starknetId, toAnyPatchVersion, transaction, typedData, index$3 as types, uint256$1 as uint256, units, v2 as v2hash, v3 as v3hash, validateAndParseAddress, validateChecksumAddress, type waitForTransactionOptions, connect as wallet };
|