@cartridge/controller-wasm 0.7.14-0df5a4c → 0.7.14-24e7b0f

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.
Binary file
@@ -1,5 +1,87 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
+ /**
4
+ * Subscribes to the creation of a session for a given controller, session_key_guid and cartridge api url.
5
+ * The goal of this function is to know from any place when the register session flow has been completed, and to
6
+ * get the authorization.
7
+ */
8
+ export function subscribeCreateSession(session_key_guid: JsFelt, cartridge_api_url: string): Promise<JsSubscribeSessionResult>;
9
+ export function signerToGuid(signer: Signer): JsFelt;
10
+ export enum ErrorCode {
11
+ StarknetFailedToReceiveTransaction = 1,
12
+ StarknetContractNotFound = 20,
13
+ StarknetBlockNotFound = 24,
14
+ StarknetInvalidTransactionIndex = 27,
15
+ StarknetClassHashNotFound = 28,
16
+ StarknetTransactionHashNotFound = 29,
17
+ StarknetPageSizeTooBig = 31,
18
+ StarknetNoBlocks = 32,
19
+ StarknetInvalidContinuationToken = 33,
20
+ StarknetTooManyKeysInFilter = 34,
21
+ StarknetContractError = 40,
22
+ StarknetTransactionExecutionError = 41,
23
+ StarknetClassAlreadyDeclared = 51,
24
+ StarknetInvalidTransactionNonce = 52,
25
+ StarknetInsufficientMaxFee = 53,
26
+ StarknetInsufficientAccountBalance = 54,
27
+ StarknetValidationFailure = 55,
28
+ StarknetCompilationFailed = 56,
29
+ StarknetContractClassSizeIsTooLarge = 57,
30
+ StarknetNonAccount = 58,
31
+ StarknetDuplicateTx = 59,
32
+ StarknetCompiledClassHashMismatch = 60,
33
+ StarknetUnsupportedTxVersion = 61,
34
+ StarknetUnsupportedContractClassVersion = 62,
35
+ StarknetUnexpectedError = 63,
36
+ StarknetNoTraceAvailable = 10,
37
+ StarknetReplacementTransactionUnderpriced = 64,
38
+ StarknetFeeBelowMinimum = 65,
39
+ SignError = 101,
40
+ StorageError = 102,
41
+ AccountFactoryError = 103,
42
+ PaymasterExecutionTimeNotReached = 104,
43
+ PaymasterExecutionTimePassed = 105,
44
+ PaymasterInvalidCaller = 106,
45
+ PaymasterRateLimitExceeded = 107,
46
+ PaymasterNotSupported = 108,
47
+ PaymasterHttp = 109,
48
+ PaymasterExcecution = 110,
49
+ PaymasterSerialization = 111,
50
+ CartridgeControllerNotDeployed = 112,
51
+ InsufficientBalance = 113,
52
+ OriginError = 114,
53
+ EncodingError = 115,
54
+ SerdeWasmBindgenError = 116,
55
+ CairoSerdeError = 117,
56
+ CairoShortStringToFeltError = 118,
57
+ DeviceCreateCredential = 119,
58
+ DeviceGetAssertion = 120,
59
+ DeviceBadAssertion = 121,
60
+ DeviceChannel = 122,
61
+ DeviceOrigin = 123,
62
+ AccountSigning = 124,
63
+ AccountProvider = 125,
64
+ AccountClassHashCalculation = 126,
65
+ AccountFeeOutOfRange = 128,
66
+ ProviderRateLimited = 129,
67
+ ProviderArrayLengthMismatch = 130,
68
+ ProviderOther = 131,
69
+ SessionAlreadyRegistered = 132,
70
+ UrlParseError = 133,
71
+ Base64DecodeError = 134,
72
+ CoseError = 135,
73
+ PolicyChainIdMismatch = 136,
74
+ InvalidOwner = 137,
75
+ GasPriceTooHigh = 138,
76
+ TransactionTimeout = 139,
77
+ ConversionError = 140,
78
+ InvalidChainId = 141,
79
+ SessionRefreshRequired = 142,
80
+ ManualExecutionRequired = 143,
81
+ ForbiddenEntrypoint = 144,
82
+ GasAmountTooHigh = 145,
83
+ ApproveExecutionRequired = 146,
84
+ }
3
85
  export interface JsCall {
4
86
  contractAddress: JsFelt;
5
87
  entrypoint: string;
@@ -128,7 +210,6 @@ export interface Credentials {
128
210
  privateKey: JsFelt;
129
211
  }
130
212
 
131
-
132
213
  export class CartridgeSessionAccount {
133
214
  private constructor();
134
215
  free(): void;
@@ -139,83 +220,6 @@ export class CartridgeSessionAccount {
139
220
  execute(calls: JsCall[]): Promise<any>;
140
221
  executeFromOutside(calls: JsCall[]): Promise<any>;
141
222
  }
142
-
143
- export enum ErrorCode {
144
- StarknetFailedToReceiveTransaction = 1,
145
- StarknetContractNotFound = 20,
146
- StarknetBlockNotFound = 24,
147
- StarknetInvalidTransactionIndex = 27,
148
- StarknetClassHashNotFound = 28,
149
- StarknetTransactionHashNotFound = 29,
150
- StarknetPageSizeTooBig = 31,
151
- StarknetNoBlocks = 32,
152
- StarknetInvalidContinuationToken = 33,
153
- StarknetTooManyKeysInFilter = 34,
154
- StarknetContractError = 40,
155
- StarknetTransactionExecutionError = 41,
156
- StarknetClassAlreadyDeclared = 51,
157
- StarknetInvalidTransactionNonce = 52,
158
- StarknetInsufficientMaxFee = 53,
159
- StarknetInsufficientAccountBalance = 54,
160
- StarknetValidationFailure = 55,
161
- StarknetCompilationFailed = 56,
162
- StarknetContractClassSizeIsTooLarge = 57,
163
- StarknetNonAccount = 58,
164
- StarknetDuplicateTx = 59,
165
- StarknetCompiledClassHashMismatch = 60,
166
- StarknetUnsupportedTxVersion = 61,
167
- StarknetUnsupportedContractClassVersion = 62,
168
- StarknetUnexpectedError = 63,
169
- StarknetNoTraceAvailable = 10,
170
- StarknetReplacementTransactionUnderpriced = 64,
171
- StarknetFeeBelowMinimum = 65,
172
- SignError = 101,
173
- StorageError = 102,
174
- AccountFactoryError = 103,
175
- PaymasterExecutionTimeNotReached = 104,
176
- PaymasterExecutionTimePassed = 105,
177
- PaymasterInvalidCaller = 106,
178
- PaymasterRateLimitExceeded = 107,
179
- PaymasterNotSupported = 108,
180
- PaymasterHttp = 109,
181
- PaymasterExcecution = 110,
182
- PaymasterSerialization = 111,
183
- CartridgeControllerNotDeployed = 112,
184
- InsufficientBalance = 113,
185
- OriginError = 114,
186
- EncodingError = 115,
187
- SerdeWasmBindgenError = 116,
188
- CairoSerdeError = 117,
189
- CairoShortStringToFeltError = 118,
190
- DeviceCreateCredential = 119,
191
- DeviceGetAssertion = 120,
192
- DeviceBadAssertion = 121,
193
- DeviceChannel = 122,
194
- DeviceOrigin = 123,
195
- AccountSigning = 124,
196
- AccountProvider = 125,
197
- AccountClassHashCalculation = 126,
198
- AccountFeeOutOfRange = 128,
199
- ProviderRateLimited = 129,
200
- ProviderArrayLengthMismatch = 130,
201
- ProviderOther = 131,
202
- SessionAlreadyRegistered = 132,
203
- UrlParseError = 133,
204
- Base64DecodeError = 134,
205
- CoseError = 135,
206
- PolicyChainIdMismatch = 136,
207
- InvalidOwner = 137,
208
- GasPriceTooHigh = 138,
209
- TransactionTimeout = 139,
210
- ConversionError = 140,
211
- InvalidChainId = 141,
212
- SessionRefreshRequired = 142,
213
- ManualExecutionRequired = 143,
214
- ForbiddenEntrypoint = 144,
215
- GasAmountTooHigh = 145,
216
- ApproveExecutionRequired = 146,
217
- }
218
-
219
223
  export class JsControllerError {
220
224
  private constructor();
221
225
  free(): void;
@@ -225,12 +229,3 @@ export class JsControllerError {
225
229
  get data(): string | undefined;
226
230
  set data(value: string | null | undefined);
227
231
  }
228
-
229
- export function signerToGuid(signer: Signer): JsFelt;
230
-
231
- /**
232
- * Subscribes to the creation of a session for a given controller, session_key_guid and cartridge api url.
233
- * The goal of this function is to know from any place when the register session flow has been completed, and to
234
- * get the authorization.
235
- */
236
- export function subscribeCreateSession(session_key_guid: JsFelt, cartridge_api_url: string): Promise<JsSubscribeSessionResult>;