-
Notifications
You must be signed in to change notification settings - Fork 17
/
api.ts
1732 lines (1664 loc) · 37.1 KB
/
api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {
AbiVersion,
AbiParam,
AccountStatus,
AssetType,
AssetTypeParams,
ContractState,
ContractUpdatesSubscription,
EncryptedData,
EncryptionAlgorithm,
FullContractState,
Transaction,
TransactionId,
TransactionsBatchInfo,
Permissions,
Permission,
FunctionCall,
TokensObject,
DelayedMessage,
Network,
AddNetwork,
} from './models';
import { UniqueArray, Address } from './utils';
/**
* @category Provider Api
*/
export type ProviderEvents<Addr = Address> = {
/**
* Called when inpage provider connects to the extension
*/
connected: Record<string, never>;
/**
* Called when inpage provider disconnects from extension
*/
disconnected: Error;
/**
* Called on each new transactions batch, received on subscription
*/
transactionsFound: {
/**
* Contract address
*/
address: Addr;
/**
* Guaranteed to be non-empty and ordered by descending lt
*/
transactions: Transaction<Addr>[];
/**
* Describes transactions lt rage
*/
info: TransactionsBatchInfo;
};
/**
* Called every time contract state changes
*/
contractStateChanged: {
/**
* Contract address
*/
address: Addr;
/**
* New contract state
*/
state: ContractState;
};
/**
* Called every time a delayed message was delivered or expired
*/
messageStatusUpdated: {
/**
* Account address
*/
address: Addr;
/**
* Message hash
*/
hash: string;
/**
* If not null, the transaction of the delivered message. Otherwise, the message has expired.
*/
transaction?: Transaction<Addr>;
};
/**
* Called each time the user changes network
*/
networkChanged: {
/**
* Network group name
*
* @deprecated `networkId` should be used instead
*/
selectedConnection: string;
/**
* Numeric network id
*/
networkId: number;
};
/**
* Called when permissions are changed.
* Mostly when account has been removed from the current `accountInteraction` permission,
* or disconnect method was called
*/
permissionsChanged: {
permissions: Partial<Permissions<Addr>>;
};
/**
* Called when the user logs out of the extension
*/
loggedOut: Record<string, never>;
};
/**
* @category Provider Api
*/
export type ProviderApi<Addr = Address> = {
/**
* Requests new permissions for current origin.
* Shows an approval window to the user.
* Will overwrite already existing permissions
*
* ---
* Required permissions: none
*/
requestPermissions: {
input: {
permissions: UniqueArray<Permission[]>;
};
output: Partial<Permissions<Addr>>;
};
/**
* Updates `accountInteraction` permission value
*
* ---
* Requires permissions: `accountInteraction`
*/
changeAccount: {
output: Partial<Permissions<Addr>>;
};
/**
* Removes all permissions for current origin and stops all subscriptions
*
* ---
* Required permissions: none
*/
disconnect: Record<string, never>;
/**
* Subscribes to contract updates.
* Can also be used to update subscriptions
*
* ---
* Required permissions: `basic`
*/
subscribe: {
input: {
/**
* Contract address
*/
address: Addr;
/**
* Subscription changes
*/
subscriptions: Partial<ContractUpdatesSubscription>;
};
output: ContractUpdatesSubscription;
};
/**
* Fully unsubscribe from specific contract updates
*
* ---
* Required permissions: none
*/
unsubscribe: {
input: {
/**
* Contract address
*/
address: Addr;
};
};
/**
* Fully unsubscribe from all contracts
*
* ---
* Required permissions: none
*/
unsubscribeAll: Record<string, never>;
/**
* Returns provider api state
*
* ---
* Required permissions: none
*/
getProviderState: {
output: {
/**
* Provider api version in semver format (x.y.z)
*/
version: string;
/**
* Provider api version in uint32 format (xxxyyyzzz)
*/
numericVersion: number;
/**
* Selected connection group name (`mainnet` / `testnet` / etc.)
*
* @deprecated `networkId` should be used instead
*/
selectedConnection: string;
/**
* Numeric network id
*/
networkId: number;
/**
* List of supported permissions
*/
supportedPermissions: UniqueArray<Permission[]>;
/**
* Object with active permissions attached data
*/
permissions: Partial<Permissions<Addr>>;
/**
* Current subscription states
*/
subscriptions: {
[address: string]: ContractUpdatesSubscription;
};
};
};
/**
* Requests contract data
*
* ---
* Required permissions: `basic`
*/
getFullContractState: {
input: {
/**
* Contract address
*/
address: Addr;
};
output: {
/**
* Contract state or `undefined` if it doesn't exist
*/
state: FullContractState | undefined;
};
};
/**
* Compute storage fee
*
* ---
* Required permissions: `basic`
*/
computeStorageFee: {
input: {
/**
* Existing contract state
*/
state: FullContractState;
/**
* Whether to assume that the contract is in the masterchain. Default: false
*/
masterchain?: boolean;
/**
* Optional UNIX timestamp (in seconds) of the moment up to which the storage fee is calculated.
* Default: current timestamp
*
* NOTE: for a time that was earlier than the last state update, the `last_paid` time will be used.
*/
timestamp?: number;
};
output: {
/**
* The total storage fee amount in nano EVER for the contract state up to the specified timestamp.
*/
storageFee: string;
/**
* The minimum amount in nano EVER of debt that must be paid so that the contract is not frozen
* or deleted.
*/
storageFeeDebt?: string;
/**
* Account status after charging a storage fee
*/
accountStatus: AccountStatus;
/**
* The amount of debt in nano EVER after which the contract will be frozen
*/
freezeDueLimit: string;
/**
* The amount of debt in nano EVER after which the contract will be deleted
*/
deleteDueLimit: string;
};
};
/**
* Requests accounts with specified code hash
*
* ---
* Required permissions: `basic`
*/
getAccountsByCodeHash: {
input: {
/**
* Hex encoded code hash
*/
codeHash: string;
/**
* Last address from previous batch
*/
continuation?: string;
/**
* Optional limit. Values grater than 50 have no effect
*/
limit?: number;
};
output: {
/**
* List of account addresses
*/
accounts: Addr[];
/**
* Last address from this batch. Should be used as a `continuation` for further requests
*/
continuation: string | undefined;
};
};
/**
* Requests contract transactions
*
* ---
* Required permissions: `basic`
*/
getTransactions: {
input: {
/**
* Contract address
*/
address: Addr;
/**
* Id of the transaction from which to request the next batch
*/
continuation?: TransactionId;
/**
* Optional limit. Values greater than 50 have no effect
*/
limit?: number;
};
output: {
/**
* Transactions list in descending order (from latest lt to the oldest)
*/
transactions: Transaction<Addr>[];
/**
* Previous transaction id of the last transaction in result. Can be used to continue transactions batch
*/
continuation: TransactionId | undefined;
/**
* Describes transactions lt rage (none if empty `transactions` array)
*/
info?: TransactionsBatchInfo;
};
};
/**
* Fetches transaction by the exact hash
*
* ---
* Required permissions: `basic`
*/
getTransaction: {
input: {
/**
* Hex encoded transaction hash
*/
hash: string;
};
output: {
/**
* Transaction
*/
transaction: Transaction<Addr> | undefined;
};
};
/**
* Searches transaction by filters
*
* NOTE: at least one filter must be specified
*
* ---
* Required permissions: `basic`
*/
findTransaction: {
input: {
/**
* Hex encoded incoming message hash
*/
inMessageHash?: string;
/* TODO: add more filters */
};
output: {
/**
* Transaction
*/
transaction: Transaction<Addr> | undefined;
};
};
/**
* Executes only a compute phase locally
*
* ---
* Required permissions: `basic`
*/
runLocal: {
input: {
/**
* Contract address
*/
address: Addr;
/**
* Cached contract state
*/
cachedState?: FullContractState;
/**
* Whether to run the method locally as responsible.
*
* This will use internal message with unlimited account balance.
*/
responsible?: boolean;
/**
* Function call params
*/
functionCall: FunctionCall<Addr>;
/**
* Whether to use the signature id during signature verification (true by default).
* - If `true`, uses the signature id of the selected network (if the capability is enabled).
* - If `false`, forces signature check to ignore any signature id.
* - If `number`, uses the specified number as a signature id.
*/
withSignatureId?: boolean | number;
};
output: {
/**
* Execution output
*/
output: TokensObject<Addr> | undefined;
/**
* TVM execution code
*/
code: number;
};
};
/**
* Executes all transaction phases locally, producing a new state
*
* ---
* Required permissions: `basic`
*/
executeLocal: {
input: {
/**
* Contract address
*/
address: Addr;
/**
* Cached contract state
*/
cachedState?: FullContractState;
/**
* Optional base64 encoded `.tvc` file
*/
stateInit?: string;
/**
* Function call
*/
payload?: string | FunctionCall<Addr>;
/**
* Message header
*/
messageHeader:
| {
/**
* External message header
*/
type: 'external';
/**
* The public key of the signer.
*/
publicKey: string;
/**
* Whether to prepare this message without signature. Default: false
*/
withoutSignature?: boolean;
}
| {
/**
* Internal message header
*/
type: 'internal';
/**
* Message source address
*/
sender: Addr;
/**
* Amount of nano EVER to attach to the message
*/
amount: string;
/**
* Whether to bounce message back on error
*/
bounce: boolean;
/**
* Whether the constructed message is bounced. Default: false
*/
bounced?: boolean;
};
/**
* Optional executor parameters used during local contract execution
*/
executorParams?: {
/**
* If `true`, signature verification always succeeds
*/
disableSignatureCheck?: boolean;
/**
* Explicit account balance in nano EVER
*/
overrideBalance?: string | number;
};
};
output: {
/**
* Executed transaction
*/
transaction: Transaction<Addr>;
/**
* Contract state after the executed transaction
*/
newState: FullContractState | undefined;
/**
* Parsed function call output
*/
output: TokensObject<Addr> | undefined;
};
};
/**
* Calculates contract address from code and init params
*
* ---
* Required permissions: `basic`
*/
getExpectedAddress: {
input: {
/**
* Base64 encoded TVC file
*/
tvc: string;
/**
* Contract ABI
*/
abi: string;
/**
* Contract workchain. 0 by default
*/
workchain?: number;
/**
* Public key, which will be injected into the contract. 0 by default
*/
publicKey?: string;
/**
* State init params
*/
initParams: TokensObject<Addr>;
};
output: {
/**
* Contract address
*/
address: Addr;
/**
* Base64 encoded state init
*/
stateInit: string;
/**
* Hex encoded state init hash
*/
hash: string;
};
};
/**
* Unpacks all fields from the contract state using the specified ABI
*
* ---
* Required permissions: `basic`
*/
getContractFields: {
input: {
/**
* Contract address
*/
address: Addr;
/**
* Contract ABI
*/
abi: string;
/**
* Cached contract state
*/
cachedState?: FullContractState;
/**
* Don't fail if something is left in a cell after unpacking
*/
allowPartial: boolean;
};
output: {
/**
* Parsed contracts fields
*/
fields?: TokensObject<Addr>;
/**
* Contract state or `undefined` if it doesn't exist
*/
state: FullContractState | undefined;
};
};
/**
* Decodes initial contract data using the specified ABI
*
* ---
* Required permissions: `basic`
*/
unpackInitData: {
input: {
/**
* Contract ABI
*/
abi: string;
/**
* Base64 encoded init data BOC.
*/
data: string;
};
output: {
/**
* Optional hex encoded public key
*/
publicKey: string | undefined;
/**
* State init params
*/
initParams: TokensObject<Addr>;
};
};
/**
* Computes hash of base64 encoded BOC
*
* ---
* Required permissions: `basic`
*/
getBocHash: {
input: {
/**
* Base64 encoded cell BOC
*/
boc: string;
};
output: {
/**
* Hex encoded cell hash
*/
hash: string;
};
};
/**
* Creates base64 encoded BOC
*
* ---
* Required permissions: `basic`
*/
packIntoCell: {
input: {
/**
* ABI version. 2.2 if not specified otherwise
*/
abiVersion?: AbiVersion;
/**
* Cell structure
*/
structure: AbiParam[];
/**
* Cell data
*/
data: TokensObject<Addr>;
};
output: {
/**
* Base64 encoded cell BOC
*/
boc: string;
/**
* Hex encoded cell hash
*/
hash: string;
};
};
/**
* Decodes base64 encoded BOC
*
* ---
* Required permissions: `basic`
*/
unpackFromCell: {
input: {
/**
* ABI version. 2.2 if not specified otherwise
*/
abiVersion?: AbiVersion;
/**
* Cell structure
*/
structure: AbiParam[];
/**
* Base64 encoded cell BOC
*/
boc: string;
/**
* Don't fail if something is left in a cell after unpacking
*/
allowPartial: boolean;
};
output: {
/**
* Cell data
*/
data: TokensObject<Addr>;
};
};
/**
* Extracts public key from raw account state
*
* **NOTE:** can only be used on contracts which are deployed and has `pubkey` header
*
* ---
* Required permissions: `basic`
*/
extractPublicKey: {
input: {
/**
* Base64 encoded account state
*
* @see FullContractState
*/
boc: string;
};
output: {
/**
* Hex encoded public key
*/
publicKey: string;
};
};
/**
* Converts base64 encoded contract code into tvc with default init data
*
* ---
* Required permissions: `basic`
*/
codeToTvc: {
input: {
/**
* Base64 encoded contract code
*/
code: string;
};
output: {
/**
* Base64 encoded state init
*/
tvc: string;
/**
* Hex encoded cell hash
*/
hash: string;
};
};
/**
* Merges base64 encoded contract code and state into a tvc
*
* ---
* Required permissions: `basic`
*/
mergeTvc: {
input: {
/**
* Base64 encoded contract code
*/
code: string;
/**
* Base64 encoded contract data
*/
data: string;
};
output: {
/**
* Base64 encoded state init
*/
tvc: string;
/**
* Hex encoded cell hash
*/
hash: string;
};
};
/**
* Splits base64 encoded state init into code and data
*
* ---
* Required permissions: `basic`
*/
splitTvc: {
input: {
/**
* Base64 encoded state init
*/
tvc: string;
};
output: {
/**
* Base64 encoded init data
*/
data: string | undefined;
/**
* Base64 encoded contract code
*/
code: string | undefined;
};
};
/**
* Inserts salt into code
*
* ---
* Required permissions: `basic`
*/
setCodeSalt: {
input: {
/**
* Base64 encoded contract code
*/
code: string;
/**
* Base64 encoded salt (as BOC)
*/
salt: string;
};
output: {
/**
* Base64 encoded contract code with salt
*/
code: string;
/**
* Hex encoded cell hash
*/
hash: string;
};
};
/**
* Retrieves salt from code. Returns undefined if code doesn't contain salt
*
* ---
* Required permissions: `basic`
*/
getCodeSalt: {
input: {
/**
* Base64 encoded contract code
*/
code: string;
};
output: {
/**
* Base64 encoded salt (as BOC)
*/
salt: string | undefined;
};
};
/**
* Creates internal message body
*
* ---
* Required permissions: `basic`
*/
encodeInternalInput: {
input: FunctionCall<Addr>;
output: {
/**
* Base64 encoded message body BOC
*/
boc: string;
};
};
/**
* Decodes body of incoming message
*
* ---
* Required permissions: `basic`
*/
decodeInput: {
input: {
/**
* Base64 encoded message body BOC
*/
body: string;
/**
* Contract ABI
*/
abi: string;
/**
* Specific method from specified contract ABI.
* When an array of method names is passed it will try to decode until first successful
*
* > Note! If **`method`** param was provided as string, it will assume that message body contains
* > specified function and this method will either return output or throw an exception. If you just want
* > to **_try_** to decode specified method, use **`['method']`**, in that case it will return null
* > if message body doesn't contain requested method.
*/
method: string | string[];
/**
* Function call type
*/
internal: boolean;
};
output: {
/**
* Decoded method name
*/
method: string;
/**
* Decoded function arguments
*/
input: TokensObject<Addr>;
} | null;
};
/**
* Decodes body of outgoing message
*
* ---
* Required permissions: `basic`
*/
decodeOutput: {
input: {
/**
* Base64 encoded message body BOC
*/
body: string;
/**
* Contract ABI
*/
abi: string;
/**