generated from PolymeshAssociation/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.ts
1760 lines (1590 loc) · 46.5 KB
/
index.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
/* istanbul ignore file */
import { ApiOptions } from '@polkadot/api/types';
import { TypeDef } from '@polkadot/types/types';
import BigNumber from 'bignumber.js';
import {
CorporateActionTargets,
DividendDistributionDetails,
OfferingDetails,
ScheduleDetails,
SubsidyData,
TaxWithholding,
} from '~/api/entities/types';
import { CreateTransactionBatchParams } from '~/api/procedures/types';
import { CountryCode, ModuleName, TxTag, TxTags } from '~/generated/types';
import {
Account,
BaseAsset,
Checkpoint,
CheckpointSchedule,
CustomPermissionGroup,
DefaultPortfolio,
DefaultTrustedClaimIssuer,
DividendDistribution,
FungibleAsset,
Identity,
Instruction,
KnownPermissionGroup,
Nft,
NftCollection,
NumberedPortfolio,
Offering,
PolymeshTransaction,
PolymeshTransactionBatch,
} from '~/internal';
import { Modify } from '~/types/utils';
export { EventRecord } from '@polkadot/types/interfaces';
export { ConnectParams } from '~/api/client/Polymesh';
export * from '~/api/entities/types';
export * from '~/api/procedures/types';
export * from '~/base/types';
export * from '~/generated/types';
export {
AssetHoldersOrderBy,
AuthTypeEnum,
AuthorizationStatusEnum,
ExtrinsicsOrderBy,
NftHoldersOrderBy,
InstructionStatusEnum,
MultiSigProposalVoteActionEnum,
SettlementResultEnum,
BalanceTypeEnum,
ModuleIdEnum,
EventIdEnum,
CallIdEnum,
Scalars,
} from '~/middleware/types';
export { ClaimScopeTypeEnum, MiddlewareScope, SettlementDirectionEnum } from '~/middleware/typesV1';
export { CountryCode, ModuleName, TxTag, TxTags };
export enum TransactionStatus {
/**
* the transaction is prepped to run
*/
Idle = 'Idle',
/**
* the transaction is waiting for the user's signature
*/
Unapproved = 'Unapproved',
/**
* the transaction is being executed
*/
Running = 'Running',
/**
* the transaction was rejected by the signer
*/
Rejected = 'Rejected',
/**
* the transaction was run successfully
*/
Succeeded = 'Succeeded',
/**
* the transaction's execution failed due to a an on-chain validation error, insufficient balance for fees, or other such reasons
*/
Failed = 'Failed',
/**
* the transaction couldn't be broadcast. It was either dropped, usurped or invalidated
* see https://github.com/paritytech/substrate/blob/master/primitives/transaction-pool/src/pool.rs#L58-L110
*/
Aborted = 'Aborted',
}
// Roles
export enum RoleType {
TickerOwner = 'TickerOwner',
CddProvider = 'CddProvider',
VenueOwner = 'VenueOwner',
PortfolioCustodian = 'PortfolioCustodian',
CorporateActionsAgent = 'CorporateActionsAgent',
// eslint-disable-next-line @typescript-eslint/no-shadow
Identity = 'Identity',
}
export interface TickerOwnerRole {
type: RoleType.TickerOwner;
ticker: string;
}
export interface CddProviderRole {
type: RoleType.CddProvider;
}
export interface VenueOwnerRole {
type: RoleType.VenueOwner;
venueId: BigNumber;
}
export interface PortfolioId {
did: string;
number?: BigNumber;
}
export interface PortfolioCustodianRole {
type: RoleType.PortfolioCustodian;
portfolioId: PortfolioId;
}
export interface IdentityRole {
type: RoleType.Identity;
did: string;
}
export type Role =
| TickerOwnerRole
| CddProviderRole
| VenueOwnerRole
| PortfolioCustodianRole
| IdentityRole;
export enum KnownAssetType {
EquityCommon = 'EquityCommon',
EquityPreferred = 'EquityPreferred',
Commodity = 'Commodity',
FixedIncome = 'FixedIncome',
Reit = 'Reit',
Fund = 'Fund',
RevenueShareAgreement = 'RevenueShareAgreement',
StructuredProduct = 'StructuredProduct',
Derivative = 'Derivative',
StableCoin = 'StableCoin',
}
export enum KnownNftType {
Derivative = 'Derivative',
FixedIncome = 'FixedIncome',
Invoice = 'Invoice',
}
export enum SecurityIdentifierType {
Isin = 'Isin',
Cusip = 'Cusip',
Cins = 'Cins',
Lei = 'Lei',
Figi = 'Figi',
}
// NOTE: query.asset.identifiers doesn’t support custom identifier types properly for now
// export type TokenIdentifierType = KnownTokenIdentifierType | { custom: string };
/**
* Alphanumeric standardized security identifier
*/
export interface SecurityIdentifier {
type: SecurityIdentifierType;
value: string;
}
/**
* Document attached to a token
*/
export interface AssetDocument {
name: string;
uri: string;
/**
* hex representation of the document (must be prefixed by "0x")
*/
contentHash?: string;
type?: string;
filedAt?: Date;
}
/**
* Type of Authorization Request
*/
export enum AuthorizationType {
AttestPrimaryKeyRotation = 'AttestPrimaryKeyRotation',
RotatePrimaryKey = 'RotatePrimaryKey',
TransferTicker = 'TransferTicker',
AddMultiSigSigner = 'AddMultiSigSigner',
TransferAssetOwnership = 'TransferAssetOwnership',
JoinIdentity = 'JoinIdentity',
PortfolioCustody = 'PortfolioCustody',
BecomeAgent = 'BecomeAgent',
AddRelayerPayingKey = 'AddRelayerPayingKey',
RotatePrimaryKeyToSecondary = 'RotatePrimaryKeyToSecondary',
}
export enum ConditionTarget {
Sender = 'Sender',
Receiver = 'Receiver',
Both = 'Both',
}
export enum ScopeType {
// eslint-disable-next-line @typescript-eslint/no-shadow
Identity = 'Identity',
Ticker = 'Ticker',
Custom = 'Custom',
}
export interface Scope {
type: ScopeType;
value: string;
}
export enum ClaimType {
Accredited = 'Accredited',
Affiliate = 'Affiliate',
BuyLockup = 'BuyLockup',
SellLockup = 'SellLockup',
CustomerDueDiligence = 'CustomerDueDiligence',
KnowYourCustomer = 'KnowYourCustomer',
Jurisdiction = 'Jurisdiction',
Exempted = 'Exempted',
Blocked = 'Blocked',
Custom = 'Custom',
}
export interface AccreditedClaim {
type: ClaimType.Accredited;
scope: Scope;
}
export interface AffiliateClaim {
type: ClaimType.Affiliate;
scope: Scope;
}
export interface BuyLockupClaim {
type: ClaimType.BuyLockup;
scope: Scope;
}
export interface SellLockupClaim {
type: ClaimType.SellLockup;
scope: Scope;
}
export interface CddClaim {
type: ClaimType.CustomerDueDiligence;
id: string;
}
export interface KycClaim {
type: ClaimType.KnowYourCustomer;
scope: Scope;
}
export interface JurisdictionClaim {
type: ClaimType.Jurisdiction;
code: CountryCode;
scope: Scope;
}
export interface ExemptedClaim {
type: ClaimType.Exempted;
scope: Scope;
}
export interface CustomClaim {
type: ClaimType.Custom;
scope: Scope;
customClaimTypeId: BigNumber;
}
export interface BlockedClaim {
type: ClaimType.Blocked;
scope: Scope;
}
export type ScopedClaim =
| JurisdictionClaim
| AccreditedClaim
| AffiliateClaim
| BuyLockupClaim
| SellLockupClaim
| KycClaim
| ExemptedClaim
| BlockedClaim
| CustomClaim;
export type UnscopedClaim = CddClaim;
export type Claim = ScopedClaim | UnscopedClaim;
export interface ClaimData<ClaimType = Claim> {
target: Identity;
issuer: Identity;
issuedAt: Date;
lastUpdatedAt: Date;
expiry: Date | null;
claim: ClaimType;
}
export type StatClaimType = ClaimType.Accredited | ClaimType.Affiliate | ClaimType.Jurisdiction;
export interface StatJurisdictionClaimInput {
type: ClaimType.Jurisdiction;
countryCode?: CountryCode;
}
export interface StatAccreditedClaimInput {
type: ClaimType.Accredited;
accredited: boolean;
}
export interface StatAffiliateClaimInput {
type: ClaimType.Affiliate;
affiliate: boolean;
}
export type InputStatClaim =
| StatJurisdictionClaimInput
| StatAccreditedClaimInput
| StatAffiliateClaimInput;
export type InputStatType =
| {
type: StatType.Count | StatType.Balance;
}
| {
type: StatType.ScopedCount | StatType.ScopedBalance;
claimIssuer: StatClaimIssuer;
};
/**
* Represents the StatType from the `statistics` module.
*
* @note the chain doesn't use "Scoped" types, but they are needed here to discriminate the input instead of having an optional input
*/
export enum StatType {
Count = 'Count',
Balance = 'Balance',
/**
* ScopedCount is an SDK only type, on chain it is `Count` with a claimType option present
*/
ScopedCount = 'ScopedCount',
/**
* ScopedPercentage is an SDK only type, on chain it is `Balance` with a claimType option present
*/
ScopedBalance = 'ScopedBalance',
}
export interface IdentityWithClaims {
identity: Identity;
claims: ClaimData[];
}
export interface ExtrinsicData {
blockHash: string;
blockNumber: BigNumber;
blockDate: Date;
extrinsicIdx: BigNumber;
/**
* public key of the signer. Unsigned transactions have no signer, in which case this value is null (example: an enacted governance proposal)
*/
address: string | null;
/**
* nonce of the transaction. Null for unsigned transactions where address is null
*/
nonce: BigNumber | null;
txTag: TxTag;
params: Record<string, unknown>[];
success: boolean;
specVersionId: BigNumber;
extrinsicHash: string;
}
export interface ExtrinsicDataWithFees extends ExtrinsicData {
fee: Fees;
}
export interface ProtocolFees {
tag: TxTag;
fees: BigNumber;
}
export interface ClaimScope {
scope: Scope | null;
ticker?: string;
}
/**
* @param IsDefault - whether the Identity is a default trusted claim issuer for an asset or just
* for a specific compliance condition. Defaults to false
*/
export interface TrustedClaimIssuer<IsDefault extends boolean = false> {
identity: IsDefault extends true ? DefaultTrustedClaimIssuer : Identity;
/**
* a null value means that the issuer is trusted for all claim types
*/
trustedFor: ClaimType[] | null;
}
export type InputTrustedClaimIssuer = Modify<
TrustedClaimIssuer,
{
identity: string | Identity;
}
>;
export enum ConditionType {
IsPresent = 'IsPresent',
IsAbsent = 'IsAbsent',
IsAnyOf = 'IsAnyOf',
IsNoneOf = 'IsNoneOf',
IsExternalAgent = 'IsExternalAgent',
IsIdentity = 'IsIdentity',
}
export interface ConditionBase {
target: ConditionTarget;
/**
* if undefined, the default trusted claim issuers for the Asset are used
*/
trustedClaimIssuers?: TrustedClaimIssuer[];
}
export type InputConditionBase = Modify<
ConditionBase,
{
/**
* if undefined, the default trusted claim issuers for the Asset are used
*/
trustedClaimIssuers?: InputTrustedClaimIssuer[];
}
>;
export interface SingleClaimCondition {
type: ConditionType.IsPresent | ConditionType.IsAbsent;
claim: Claim;
}
export interface MultiClaimCondition {
type: ConditionType.IsAnyOf | ConditionType.IsNoneOf;
claims: Claim[];
}
export interface IdentityCondition {
type: ConditionType.IsIdentity;
identity: Identity;
}
export interface ExternalAgentCondition {
type: ConditionType.IsExternalAgent;
}
export type Condition = (
| SingleClaimCondition
| MultiClaimCondition
| IdentityCondition
| ExternalAgentCondition
) &
ConditionBase;
export type InputCondition = (
| SingleClaimCondition
| MultiClaimCondition
| Modify<
IdentityCondition,
{
identity: string | Identity;
}
>
| ExternalAgentCondition
) &
InputConditionBase;
export interface Requirement {
id: BigNumber;
conditions: Condition[];
}
export interface ComplianceRequirements {
requirements: Requirement[];
/**
* used for conditions where no trusted claim issuers were specified
*/
defaultTrustedClaimIssuers: TrustedClaimIssuer[];
}
export type InputRequirement = Modify<Requirement, { conditions: InputCondition[] }>;
export interface ConditionCompliance {
condition: Condition;
complies: boolean;
}
export interface RequirementCompliance {
id: BigNumber;
conditions: ConditionCompliance[];
complies: boolean;
}
export interface Compliance {
requirements: RequirementCompliance[];
complies: boolean;
}
/**
* Specifies possible types of errors in the SDK
*/
export enum ErrorCode {
/**
* transaction removed from the tx pool
*/
TransactionAborted = 'TransactionAborted',
/**
* user rejected the transaction in their wallet
*/
TransactionRejectedByUser = 'TransactionRejectedByUser',
/**
* transaction failed due to an on-chain error. This is a business logic error,
* and it should be caught by the SDK before being sent to the chain.
* Please report it to the Polymesh team
*/
TransactionReverted = 'TransactionReverted',
/**
* error that should cause termination of the calling application
*/
FatalError = 'FatalError',
/**
* user input error. This means that one or more inputs passed by the user
* do not conform to expected value ranges or types
*/
ValidationError = 'ValidationError',
/**
* user does not have the required roles/permissions to perform an operation
*/
NotAuthorized = 'NotAuthorized',
/**
* errors encountered when interacting with the historic data middleware (GQL server)
*/
MiddlewareError = 'MiddlewareError',
/**
* the data that is being fetched does not exist on-chain, or relies on non-existent data. There are
* some cases where the data did exist at some point, but has been deleted to save storage space
*/
DataUnavailable = 'DataUnavailable',
/**
* the data that is being written to the chain is the same data that is already in place. This would result
* in a redundant/useless transaction being executed
*/
NoDataChange = 'NoDataChange',
/**
* the data that is being written to the chain would result in some limit being exceeded. For example, adding a transfer
* restriction when the maximum possible amount has already been added
*/
LimitExceeded = 'LimitExceeded',
/**
* one or more base prerequisites for a transaction to be successful haven't been met. For example, reserving a ticker requires
* said ticker to not be already reserved. Attempting to reserve a ticker without that prerequisite being met would result in this
* type of error. Attempting to create an entity that already exists would also fall into this category,
* if the entity in question is supposed to be unique
*/
UnmetPrerequisite = 'UnmetPrerequisite',
/**
* this type of error is thrown when attempting to delete/modify an entity which has other entities depending on it. For example, deleting
* a Portfolio that still holds assets, or removing a Checkpoint Schedule that is being referenced by a Corporate Action
*/
EntityInUse = 'EntityInUse',
/**
* one or more parties involved in the transaction do not have enough balance to perform it
*/
InsufficientBalance = 'InsufficientBalance',
/**
* errors that are the result of something unforeseen.
* These should generally be reported to the Polymesh team
*/
UnexpectedError = 'UnexpectedError',
/**
* general purpose errors that don't fit well into the other categories
*/
General = 'General',
}
/**
* ERC1400 compliant transfer status
*/
export enum TransferStatus {
Failure = 'Failure', // 80
Success = 'Success', // 81
InsufficientBalance = 'InsufficientBalance', // 82
InsufficientAllowance = 'InsufficientAllowance', // 83
TransfersHalted = 'TransfersHalted', // 84
FundsLocked = 'FundsLocked', // 85
InvalidSenderAddress = 'InvalidSenderAddress', // 86
InvalidReceiverAddress = 'InvalidReceiverAddress', // 87
InvalidOperator = 'InvalidOperator', // 88
InvalidSenderIdentity = 'InvalidSenderIdentity', // 160
InvalidReceiverIdentity = 'InvalidReceiverIdentity', // 161
ComplianceFailure = 'ComplianceFailure', // 162
SmartExtensionFailure = 'SmartExtensionFailure', // 163
InvalidGranularity = 'InvalidGranularity', // 164
VolumeLimitReached = 'VolumeLimitReached', // 165
BlockedTransaction = 'BlockedTransaction', // 166
FundsLimitReached = 'FundsLimitReached', // 168
PortfolioFailure = 'PortfolioFailure', // 169
CustodianError = 'CustodianError', // 170
ScopeClaimMissing = 'ScopeClaimMissing', // 171
TransferRestrictionFailure = 'TransferRestrictionFailure', // 172
}
/**
* Akin to TransferStatus, these are a bit more granular and specific. Every TransferError translates to
* a {@link TransferStatus}, but two or more TransferErrors can represent the same TransferStatus, and
* not all Transfer Statuses are represented by a TransferError
*/
export enum TransferError {
/**
* translates to TransferStatus.InvalidGranularity
*
* occurs if attempting to transfer decimal amounts of a non-divisible token
*/
InvalidGranularity = 'InvalidGranularity',
/**
* translates to TransferStatus.InvalidReceiverIdentity
*
* occurs if the origin and destination Identities are the same
*/
SelfTransfer = 'SelfTransfer',
/**
* translates to TransferStatus.InvalidReceiverIdentity
*
* occurs if the receiver Identity doesn't have a valid CDD claim
*/
InvalidReceiverCdd = 'InvalidReceiverCdd',
/**
* translates to TransferStatus.InvalidSenderIdentity
*
* occurs if the receiver Identity doesn't have a valid CDD claim
*/
InvalidSenderCdd = 'InvalidSenderCdd',
/**
* translates to TransferStatus.ScopeClaimMissing
*
* occurs if one of the participants doesn't have a valid Investor Uniqueness Claim for
* the Asset
*/
ScopeClaimMissing = 'ScopeClaimMissing',
/**
* translates to TransferStatus.InsufficientBalance
*
* occurs if the sender Identity does not have enough balance to cover the amount
*/
InsufficientBalance = 'InsufficientBalance',
/**
* translates to TransferStatus.TransfersHalted
*
* occurs if the Asset's transfers are frozen
*/
TransfersFrozen = 'TransfersFrozen',
/**
* translates to TransferStatus.PortfolioFailure
*
* occurs if the sender Portfolio doesn't exist
*/
InvalidSenderPortfolio = 'InvalidSenderPortfolio',
/**
* translates to TransferStatus.PortfolioFailure
*
* occurs if the receiver Portfolio doesn't exist
*/
InvalidReceiverPortfolio = 'InvalidReceiverPortfolio',
/**
* translates to TransferStatus.PortfolioFailure
*
* occurs if the sender Portfolio does not have enough balance to cover the amount
*/
InsufficientPortfolioBalance = 'InsufficientPortfolioBalance',
/**
* translates to TransferStatus.ComplianceFailure
*
* occurs if some compliance rule would prevent the transfer
*/
ComplianceFailure = 'ComplianceFailure',
}
export interface ClaimTarget {
target: string | Identity;
claim: Claim;
expiry?: Date;
}
export type SubCallback<T> = (result: T) => void | Promise<void>;
export type UnsubCallback = () => void;
export interface MiddlewareConfig {
link: string;
key: string;
}
export interface PolkadotConfig {
/**
* provide a locally saved metadata file for a modestly fast startup time (e.g. 1 second when provided, 1.5 seconds without).
*
* @note if not provided the SDK will read the needed data from chain during startup
*
* @note format is key as genesis hash and spec version and the value hex encoded chain metadata
*
* @example creating valid metadata
* ```ts
const meta = _polkadotApi.runtimeMetadata.toHex();
const genesisHash = _polkadotApi.genesisHash;
const specVersion = _polkadotApi.runtimeVersion.specVersion;
const metadata = {
[`${genesisHash}-${specVersion}`]: meta,
};
```
*/
metadata?: ApiOptions['metadata'];
/**
* set to `true` to disable polkadot start up warnings
*/
noInitWarn?: boolean;
/**
* allows for types to be provided for multiple chain specs at once
*
* @note shouldn't be needed for most use cases
*/
typesBundle?: ApiOptions['typesBundle'];
}
export interface EventIdentifier {
blockNumber: BigNumber;
blockHash: string;
blockDate: Date;
eventIndex: BigNumber;
}
export interface Balance {
/**
* balance available for transferring and paying fees
*/
free: BigNumber;
/**
* unavailable balance, either bonded for staking or locked for some other purpose
*/
locked: BigNumber;
/**
* free + locked
*/
total: BigNumber;
}
export type AccountBalance = Balance;
export interface PaginationOptions {
size: BigNumber;
start?: string;
}
export type NextKey = string | BigNumber | null;
export interface ResultSet<T> {
data: T[];
next: NextKey;
/**
* @note methods will have `count` defined when middleware is configured, but be undefined otherwise. This happens when the chain node is queried directly
*/
count?: BigNumber;
}
export interface NetworkProperties {
name: string;
version: BigNumber;
}
export interface Fees {
/**
* bonus fee charged by certain transactions
*/
protocol: BigNumber;
/**
* regular network fee
*/
gas: BigNumber;
/**
* sum of the protocol and gas fees
*/
total: BigNumber;
}
/**
* Type of relationship between a paying account and a beneficiary
*/
export enum PayingAccountType {
/**
* the paying Account is currently subsidizing the caller
*/
Subsidy = 'Subsidy',
/**
* the paying Account is paying for a specific transaction because of
* chain-specific constraints (e.g. the caller is accepting an invitation to an Identity
* and cannot have any funds to pay for it by definition)
*/
Other = 'Other',
/**
* the caller Account is responsible of paying the fees
*/
Caller = 'Caller',
}
/**
* Data representing the Account responsible for paying fees for a transaction
*/
export type PayingAccount =
| {
type: PayingAccountType.Subsidy;
/**
* Account that pays for the transaction
*/
account: Account;
/**
* total amount that can be paid for
*/
allowance: BigNumber;
}
| {
type: PayingAccountType.Caller | PayingAccountType.Other;
account: Account;
};
/**
* Breakdown of the fees that will be paid by a specific Account for a transaction, along
* with data associated to the Paying account
*/
export interface PayingAccountFees {
/**
* fees that will be paid by the Account
*/
fees: Fees;
/**
* data related to the Account responsible of paying for the transaction
*/
payingAccountData: PayingAccount & {
/**
* free balance of the Account
*/
balance: BigNumber;
};
}
export enum SignerType {
/* eslint-disable @typescript-eslint/no-shadow */
Identity = 'Identity',
Account = 'Account',
/* eslint-enable @typescript-eslint/no-shadow */
}
export interface SignerValue {
/**
* whether the signer is an Account or Identity
*/
type: SignerType;
/**
* address or DID (depending on whether the signer is an Account or Identity)
*/
value: string;
}
/**
* Transaction Groups (for permissions purposes)
*/
export enum TxGroup {
/**
* - TxTags.identity.AddInvestorUniquenessClaim
* - TxTags.portfolio.MovePortfolioFunds
* - TxTags.settlement.AddInstruction
* - TxTags.settlement.AddInstructionWithMemo
* - TxTags.settlement.AddAndAffirmInstruction
* - TxTags.settlement.AddAndAffirmInstructionWithMemo
* - TxTags.settlement.AffirmInstruction
* - TxTags.settlement.RejectInstruction
* - TxTags.settlement.CreateVenue
*/
PortfolioManagement = 'PortfolioManagement',
/**
* - TxTags.asset.MakeDivisible
* - TxTags.asset.RenameAsset
* - TxTags.asset.SetFundingRound
* - TxTags.asset.AddDocuments
* - TxTags.asset.RemoveDocuments
*/
AssetManagement = 'AssetManagement',
/**
* - TxTags.asset.Freeze
* - TxTags.asset.Unfreeze
* - TxTags.identity.AddAuthorization
* - TxTags.identity.RemoveAuthorization
*/
AdvancedAssetManagement = 'AdvancedAssetManagement',
/**
* - TxTags.identity.AddInvestorUniquenessClaim
* - TxTags.settlement.CreateVenue
* - TxTags.settlement.AddInstruction
* - TxTags.settlement.AddInstructionWithMemo
* - TxTags.settlement.AddAndAffirmInstruction
* - TxTags.settlement.AddAndAffirmInstructionWithMemo
*/
Distribution = 'Distribution',
/**
* - TxTags.asset.Issue
*/
Issuance = 'Issuance',
/**
* - TxTags.complianceManager.AddDefaultTrustedClaimIssuer
* - TxTags.complianceManager.RemoveDefaultTrustedClaimIssuer
*/
TrustedClaimIssuersManagement = 'TrustedClaimIssuersManagement',
/**
* - TxTags.identity.AddClaim
* - TxTags.identity.RevokeClaim
*/
ClaimsManagement = 'ClaimsManagement',
/**
* - TxTags.complianceManager.AddComplianceRequirement
* - TxTags.complianceManager.RemoveComplianceRequirement
* - TxTags.complianceManager.PauseAssetCompliance
* - TxTags.complianceManager.ResumeAssetCompliance
* - TxTags.complianceManager.ResetAssetCompliance
*/
ComplianceRequirementsManagement = 'ComplianceRequirementsManagement',
/**
* - TxTags.checkpoint.CreateSchedule,
* - TxTags.checkpoint.RemoveSchedule,
* - TxTags.checkpoint.CreateCheckpoint,
* - TxTags.corporateAction.InitiateCorporateAction,
* - TxTags.capitalDistribution.Distribute,
* - TxTags.capitalDistribution.Claim,
* - TxTags.identity.AddInvestorUniquenessClaim,
*/
CorporateActionsManagement = 'CorporateActionsManagement',
/**
* - TxTags.sto.CreateFundraiser,
* - TxTags.sto.FreezeFundraiser,
* - TxTags.sto.Invest,
* - TxTags.sto.ModifyFundraiserWindow,
* - TxTags.sto.Stop,
* - TxTags.sto.UnfreezeFundraiser,
* - TxTags.identity.AddInvestorUniquenessClaim,
* - TxTags.asset.Issue,
* - TxTags.settlement.CreateVenue
*/
StoManagement = 'StoManagement',
}
export enum PermissionType {
Include = 'Include',
Exclude = 'Exclude',
}
/**
* Signer/agent permissions for a specific type
*
* @param T - type of Permissions (Asset, Transaction, Portfolio, etc)
*/
export interface SectionPermissions<T> {
/**
* Values to be included/excluded
*/
values: T[];
/**
* Whether the permissions are inclusive or exclusive
*/
type: PermissionType;
}
/**
* Permissions related to Transactions. Can include/exclude individual transactions or entire modules
*/
export interface TransactionPermissions extends SectionPermissions<TxTag | ModuleName> {