@hsuite/smart-engines-sdk 4.2.0 → 5.0.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 +14 -0
- package/dist/index.d.ts +432 -350
- package/dist/index.js +59 -10
- package/dist/index.js.map +1 -1
- package/dist/nestjs/index.d.ts +1256 -1175
- package/dist/nestjs/index.js +59 -10
- package/dist/nestjs/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -597,7 +597,7 @@ declare const CreateAccountRequestSchema: z.ZodObject<{
|
|
|
597
597
|
} | undefined;
|
|
598
598
|
entityType?: string | undefined;
|
|
599
599
|
}>;
|
|
600
|
-
export type
|
|
600
|
+
export type ValidatorCreateAccountRequest = z.infer<typeof CreateAccountRequestSchema>;
|
|
601
601
|
declare const CreateAccountResponseSchema: z.ZodObject<{
|
|
602
602
|
accountId: z.ZodString;
|
|
603
603
|
publicKey: z.ZodOptional<z.ZodString>;
|
|
@@ -836,7 +836,7 @@ declare const CreateTokenRequestSchema: z.ZodObject<{
|
|
|
836
836
|
entityType?: string | undefined;
|
|
837
837
|
treasury?: string | undefined;
|
|
838
838
|
}>;
|
|
839
|
-
export type
|
|
839
|
+
export type ValidatorCreateTokenRequest = z.infer<typeof CreateTokenRequestSchema>;
|
|
840
840
|
declare const CreateTokenResponseSchema: z.ZodObject<{
|
|
841
841
|
tokenId: z.ZodString;
|
|
842
842
|
transactionId: z.ZodString;
|
|
@@ -2695,6 +2695,7 @@ export type PreparedTransaction = {
|
|
|
2695
2695
|
requiredSignatures?: number;
|
|
2696
2696
|
readyToSubmit?: boolean;
|
|
2697
2697
|
};
|
|
2698
|
+
export type BatchInnerTransaction = PreparedTransaction;
|
|
2698
2699
|
export type PrepareTransferRequest = {
|
|
2699
2700
|
chain: ChainType;
|
|
2700
2701
|
payerAccountId?: string;
|
|
@@ -3819,6 +3820,166 @@ export declare function isPersonhoodVerifierNotConfigured(err: unknown): err is
|
|
|
3819
3820
|
error: typeof PERSONHOOD_VERIFIER_NOT_CONFIGURED;
|
|
3820
3821
|
};
|
|
3821
3822
|
};
|
|
3823
|
+
type EntityType$1 = "token" | "account" | "topic" | "agent";
|
|
3824
|
+
export type CreateTokenRequest = {
|
|
3825
|
+
chain: ChainType;
|
|
3826
|
+
name: string;
|
|
3827
|
+
symbol: string;
|
|
3828
|
+
decimals?: number;
|
|
3829
|
+
initialSupply?: string;
|
|
3830
|
+
ruleRef: RuleRef;
|
|
3831
|
+
memo?: string;
|
|
3832
|
+
securityMode?: EntitySecurityMode;
|
|
3833
|
+
payerAccountId?: string;
|
|
3834
|
+
fundWith?: FundWith;
|
|
3835
|
+
};
|
|
3836
|
+
export type EntitySecurityMode = "partial" | "full";
|
|
3837
|
+
export type PreparedEntityCreation = {
|
|
3838
|
+
entityId: string;
|
|
3839
|
+
chain: ChainType;
|
|
3840
|
+
address: string;
|
|
3841
|
+
reserveRequirement: string;
|
|
3842
|
+
prepared: PreparedTransaction[];
|
|
3843
|
+
};
|
|
3844
|
+
export type FundWith = (prepared: PreparedTransaction[], ctx: {
|
|
3845
|
+
address: string;
|
|
3846
|
+
reserveRequirement: string;
|
|
3847
|
+
}) => Promise<{
|
|
3848
|
+
signedFundingBlob?: string;
|
|
3849
|
+
} | void>;
|
|
3850
|
+
export type CreateAccountRequest = {
|
|
3851
|
+
chain: ChainType;
|
|
3852
|
+
ruleRef: RuleRef;
|
|
3853
|
+
initialBalance?: string;
|
|
3854
|
+
publicKey?: string;
|
|
3855
|
+
securityMode?: EntitySecurityMode;
|
|
3856
|
+
payerAccountId?: string;
|
|
3857
|
+
fundWith?: FundWith;
|
|
3858
|
+
};
|
|
3859
|
+
export type CreateTopicRequest = {
|
|
3860
|
+
chain: ChainType;
|
|
3861
|
+
ruleRef: RuleRef;
|
|
3862
|
+
memo?: string;
|
|
3863
|
+
securityMode?: EntitySecurityMode;
|
|
3864
|
+
payerAccountId?: string;
|
|
3865
|
+
fundWith?: FundWith;
|
|
3866
|
+
};
|
|
3867
|
+
export type CreateAgentRequest = {
|
|
3868
|
+
primaryChain: ChainType;
|
|
3869
|
+
ruleRef: RuleRef;
|
|
3870
|
+
name: string;
|
|
3871
|
+
agentType?: string;
|
|
3872
|
+
securityMode?: EntitySecurityMode;
|
|
3873
|
+
payerAccountId?: string;
|
|
3874
|
+
rulesConfig?: Record<string, unknown>;
|
|
3875
|
+
capabilities?: string[];
|
|
3876
|
+
fundWith?: FundWith;
|
|
3877
|
+
};
|
|
3878
|
+
export type EntityCreationResult = {
|
|
3879
|
+
entityId: string;
|
|
3880
|
+
ruleRef: RuleRef;
|
|
3881
|
+
chainAccounts: Record<string, string>;
|
|
3882
|
+
transactionId?: string;
|
|
3883
|
+
agentId: string;
|
|
3884
|
+
status?: string;
|
|
3885
|
+
};
|
|
3886
|
+
export type EntityInfo = {
|
|
3887
|
+
entityId: string;
|
|
3888
|
+
type: EntityType$1;
|
|
3889
|
+
entityType: EntityType$1;
|
|
3890
|
+
owner: string;
|
|
3891
|
+
ownerWallet: string;
|
|
3892
|
+
chain: ChainType;
|
|
3893
|
+
ruleRef: RuleRef;
|
|
3894
|
+
chainAccounts: Record<string, string>;
|
|
3895
|
+
createdAt: string;
|
|
3896
|
+
agentId: string;
|
|
3897
|
+
};
|
|
3898
|
+
export type ListEntitiesFilter = {
|
|
3899
|
+
type?: EntityType$1;
|
|
3900
|
+
};
|
|
3901
|
+
export type ListEntitiesResponse = {
|
|
3902
|
+
entities: EntityInfo[];
|
|
3903
|
+
count: number;
|
|
3904
|
+
};
|
|
3905
|
+
export type LaunchpadEntityRequest = {
|
|
3906
|
+
chain: ChainType;
|
|
3907
|
+
name: string;
|
|
3908
|
+
symbol: string;
|
|
3909
|
+
decimals?: number;
|
|
3910
|
+
launchpad: {
|
|
3911
|
+
launchTokenId?: string;
|
|
3912
|
+
paymentTokenId: string;
|
|
3913
|
+
paymentTokenDecimals?: number;
|
|
3914
|
+
totalTokensForSale: string;
|
|
3915
|
+
pricePerToken: string;
|
|
3916
|
+
hardCap: string;
|
|
3917
|
+
softCap: string;
|
|
3918
|
+
publicWindow: {
|
|
3919
|
+
from: number;
|
|
3920
|
+
to: number;
|
|
3921
|
+
};
|
|
3922
|
+
treasuryAccount: string;
|
|
3923
|
+
refundOnFailure?: boolean;
|
|
3924
|
+
overflowPolicy?: "first_come" | "proportional" | "lottery";
|
|
3925
|
+
};
|
|
3926
|
+
};
|
|
3927
|
+
export type LaunchpadEntityResult = {
|
|
3928
|
+
ruleRef: RuleRef;
|
|
3929
|
+
entityId: string;
|
|
3930
|
+
tokenId: string;
|
|
3931
|
+
chainAccounts: Record<string, string>;
|
|
3932
|
+
};
|
|
3933
|
+
export type TransferEntityRequest = {
|
|
3934
|
+
chain: ChainType;
|
|
3935
|
+
to: string;
|
|
3936
|
+
amount: string;
|
|
3937
|
+
tokenId?: string;
|
|
3938
|
+
memo?: string;
|
|
3939
|
+
};
|
|
3940
|
+
export type WithdrawEntityRequest = {
|
|
3941
|
+
chain: ChainType;
|
|
3942
|
+
destination: string;
|
|
3943
|
+
amount: string;
|
|
3944
|
+
tokenId?: string;
|
|
3945
|
+
memo?: string;
|
|
3946
|
+
};
|
|
3947
|
+
export type MintEntityRequest = {
|
|
3948
|
+
chain: ChainType;
|
|
3949
|
+
tokenId: string;
|
|
3950
|
+
amount: string;
|
|
3951
|
+
memo?: string;
|
|
3952
|
+
};
|
|
3953
|
+
export type BurnEntityRequest = {
|
|
3954
|
+
chain: ChainType;
|
|
3955
|
+
tokenId: string;
|
|
3956
|
+
amount: string;
|
|
3957
|
+
memo?: string;
|
|
3958
|
+
};
|
|
3959
|
+
export type ComplianceAction = "pause" | "restrict" | "wipe";
|
|
3960
|
+
export type ComplianceEntityRequest = {
|
|
3961
|
+
action: ComplianceAction;
|
|
3962
|
+
chain: ChainType;
|
|
3963
|
+
tokenId: string;
|
|
3964
|
+
account?: string;
|
|
3965
|
+
amount?: string;
|
|
3966
|
+
memo?: string;
|
|
3967
|
+
};
|
|
3968
|
+
export type TrustlineEntityRequest = {
|
|
3969
|
+
chain: ChainType;
|
|
3970
|
+
currency: string;
|
|
3971
|
+
issuerAddress: string;
|
|
3972
|
+
limit?: string;
|
|
3973
|
+
};
|
|
3974
|
+
export type PreparedEntityTransactionResult = {
|
|
3975
|
+
chain: string;
|
|
3976
|
+
transactionId: string;
|
|
3977
|
+
transactionBytes: string;
|
|
3978
|
+
transactionType?: string;
|
|
3979
|
+
payerAccountId?: string;
|
|
3980
|
+
expiresAt?: string;
|
|
3981
|
+
metadata?: Record<string, unknown>;
|
|
3982
|
+
};
|
|
3822
3983
|
export type AgentStatus = "active" | "paused" | "revoked" | "pending";
|
|
3823
3984
|
export type AgentRegisterRequest = {
|
|
3824
3985
|
name: string;
|
|
@@ -3826,6 +3987,7 @@ export type AgentRegisterRequest = {
|
|
|
3826
3987
|
capabilities: string[];
|
|
3827
3988
|
rules: AgentRules;
|
|
3828
3989
|
primaryChain?: string;
|
|
3990
|
+
securityMode?: EntitySecurityMode;
|
|
3829
3991
|
fundingConfig?: {
|
|
3830
3992
|
chain: string;
|
|
3831
3993
|
maxAmount: string;
|
|
@@ -4813,13 +4975,13 @@ export declare class SmartEngineClient {
|
|
|
4813
4975
|
getSupportedChains(): Promise<{
|
|
4814
4976
|
chains: string[];
|
|
4815
4977
|
}>;
|
|
4816
|
-
createAccount(request:
|
|
4978
|
+
createAccount(request: ValidatorCreateAccountRequest): Promise<CreateAccountResponse>;
|
|
4817
4979
|
getAccountInfo(chain: string, accountId: string): Promise<AccountInfo>;
|
|
4818
4980
|
getBalance(chain: string, accountId: string): Promise<AccountBalance>;
|
|
4819
4981
|
transfer(request: TransferRequest): Promise<TransferResponse>;
|
|
4820
4982
|
getTransaction(chain: string, txId: string): Promise<Transaction>;
|
|
4821
4983
|
getTransactionReceipt(chain: string, txId: string): Promise<any>;
|
|
4822
|
-
createToken(request:
|
|
4984
|
+
createToken(request: ValidatorCreateTokenRequest): Promise<CreateTokenResponse>;
|
|
4823
4985
|
mintToken(request: MintTokenRequest): Promise<any>;
|
|
4824
4986
|
getTokenInfo(chain: string, tokenId: string): Promise<TokenInfo>;
|
|
4825
4987
|
burnToken(request: BurnTokenRequest): Promise<ActionResult>;
|
|
@@ -6971,7 +7133,7 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
6971
7133
|
whitelist?: string[] | undefined;
|
|
6972
7134
|
blacklist?: string[] | undefined;
|
|
6973
7135
|
} | undefined;
|
|
6974
|
-
|
|
7136
|
+
pause?: {
|
|
6975
7137
|
enabled: boolean;
|
|
6976
7138
|
controller?: "owner" | "dao" | undefined;
|
|
6977
7139
|
requiresApproval?: boolean | undefined;
|
|
@@ -6984,9 +7146,8 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
6984
7146
|
cooldownSeconds?: number | undefined;
|
|
6985
7147
|
minPerTransaction?: string | undefined;
|
|
6986
7148
|
} | undefined;
|
|
6987
|
-
allowedFields?: string[] | undefined;
|
|
6988
7149
|
} | undefined;
|
|
6989
|
-
|
|
7150
|
+
wipe?: {
|
|
6990
7151
|
enabled: boolean;
|
|
6991
7152
|
controller?: "owner" | "dao" | undefined;
|
|
6992
7153
|
requiresApproval?: boolean | undefined;
|
|
@@ -7000,7 +7161,7 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7000
7161
|
minPerTransaction?: string | undefined;
|
|
7001
7162
|
} | undefined;
|
|
7002
7163
|
} | undefined;
|
|
7003
|
-
|
|
7164
|
+
update?: {
|
|
7004
7165
|
enabled: boolean;
|
|
7005
7166
|
controller?: "owner" | "dao" | undefined;
|
|
7006
7167
|
requiresApproval?: boolean | undefined;
|
|
@@ -7013,9 +7174,9 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7013
7174
|
cooldownSeconds?: number | undefined;
|
|
7014
7175
|
minPerTransaction?: string | undefined;
|
|
7015
7176
|
} | undefined;
|
|
7016
|
-
|
|
7177
|
+
allowedFields?: string[] | undefined;
|
|
7017
7178
|
} | undefined;
|
|
7018
|
-
|
|
7179
|
+
mint?: {
|
|
7019
7180
|
enabled: boolean;
|
|
7020
7181
|
controller?: "owner" | "dao" | undefined;
|
|
7021
7182
|
requiresApproval?: boolean | undefined;
|
|
@@ -7028,9 +7189,8 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7028
7189
|
cooldownSeconds?: number | undefined;
|
|
7029
7190
|
minPerTransaction?: string | undefined;
|
|
7030
7191
|
} | undefined;
|
|
7031
|
-
requiresMultisig?: boolean | undefined;
|
|
7032
7192
|
} | undefined;
|
|
7033
|
-
|
|
7193
|
+
burn?: {
|
|
7034
7194
|
enabled: boolean;
|
|
7035
7195
|
controller?: "owner" | "dao" | undefined;
|
|
7036
7196
|
requiresApproval?: boolean | undefined;
|
|
@@ -7043,8 +7203,9 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7043
7203
|
cooldownSeconds?: number | undefined;
|
|
7044
7204
|
minPerTransaction?: string | undefined;
|
|
7045
7205
|
} | undefined;
|
|
7206
|
+
allowHolderBurn?: boolean | undefined;
|
|
7046
7207
|
} | undefined;
|
|
7047
|
-
|
|
7208
|
+
freeze?: {
|
|
7048
7209
|
enabled: boolean;
|
|
7049
7210
|
controller?: "owner" | "dao" | undefined;
|
|
7050
7211
|
requiresApproval?: boolean | undefined;
|
|
@@ -7057,6 +7218,7 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7057
7218
|
cooldownSeconds?: number | undefined;
|
|
7058
7219
|
minPerTransaction?: string | undefined;
|
|
7059
7220
|
} | undefined;
|
|
7221
|
+
requiresMultisig?: boolean | undefined;
|
|
7060
7222
|
} | undefined;
|
|
7061
7223
|
associate?: {
|
|
7062
7224
|
enabled: boolean;
|
|
@@ -7133,7 +7295,7 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7133
7295
|
whitelist?: string[] | undefined;
|
|
7134
7296
|
blacklist?: string[] | undefined;
|
|
7135
7297
|
} | undefined;
|
|
7136
|
-
|
|
7298
|
+
pause?: {
|
|
7137
7299
|
enabled: boolean;
|
|
7138
7300
|
controller?: "owner" | "dao" | undefined;
|
|
7139
7301
|
requiresApproval?: boolean | undefined;
|
|
@@ -7146,9 +7308,8 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7146
7308
|
cooldownSeconds?: number | undefined;
|
|
7147
7309
|
minPerTransaction?: string | undefined;
|
|
7148
7310
|
} | undefined;
|
|
7149
|
-
allowedFields?: string[] | undefined;
|
|
7150
7311
|
} | undefined;
|
|
7151
|
-
|
|
7312
|
+
wipe?: {
|
|
7152
7313
|
enabled: boolean;
|
|
7153
7314
|
controller?: "owner" | "dao" | undefined;
|
|
7154
7315
|
requiresApproval?: boolean | undefined;
|
|
@@ -7162,7 +7323,7 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7162
7323
|
minPerTransaction?: string | undefined;
|
|
7163
7324
|
} | undefined;
|
|
7164
7325
|
} | undefined;
|
|
7165
|
-
|
|
7326
|
+
update?: {
|
|
7166
7327
|
enabled: boolean;
|
|
7167
7328
|
controller?: "owner" | "dao" | undefined;
|
|
7168
7329
|
requiresApproval?: boolean | undefined;
|
|
@@ -7175,9 +7336,9 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7175
7336
|
cooldownSeconds?: number | undefined;
|
|
7176
7337
|
minPerTransaction?: string | undefined;
|
|
7177
7338
|
} | undefined;
|
|
7178
|
-
|
|
7339
|
+
allowedFields?: string[] | undefined;
|
|
7179
7340
|
} | undefined;
|
|
7180
|
-
|
|
7341
|
+
mint?: {
|
|
7181
7342
|
enabled: boolean;
|
|
7182
7343
|
controller?: "owner" | "dao" | undefined;
|
|
7183
7344
|
requiresApproval?: boolean | undefined;
|
|
@@ -7190,9 +7351,8 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7190
7351
|
cooldownSeconds?: number | undefined;
|
|
7191
7352
|
minPerTransaction?: string | undefined;
|
|
7192
7353
|
} | undefined;
|
|
7193
|
-
requiresMultisig?: boolean | undefined;
|
|
7194
7354
|
} | undefined;
|
|
7195
|
-
|
|
7355
|
+
burn?: {
|
|
7196
7356
|
enabled: boolean;
|
|
7197
7357
|
controller?: "owner" | "dao" | undefined;
|
|
7198
7358
|
requiresApproval?: boolean | undefined;
|
|
@@ -7205,8 +7365,9 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7205
7365
|
cooldownSeconds?: number | undefined;
|
|
7206
7366
|
minPerTransaction?: string | undefined;
|
|
7207
7367
|
} | undefined;
|
|
7368
|
+
allowHolderBurn?: boolean | undefined;
|
|
7208
7369
|
} | undefined;
|
|
7209
|
-
|
|
7370
|
+
freeze?: {
|
|
7210
7371
|
enabled: boolean;
|
|
7211
7372
|
controller?: "owner" | "dao" | undefined;
|
|
7212
7373
|
requiresApproval?: boolean | undefined;
|
|
@@ -7219,6 +7380,7 @@ export declare const TokenOperationsConfigSchema: z.ZodObject<{
|
|
|
7219
7380
|
cooldownSeconds?: number | undefined;
|
|
7220
7381
|
minPerTransaction?: string | undefined;
|
|
7221
7382
|
} | undefined;
|
|
7383
|
+
requiresMultisig?: boolean | undefined;
|
|
7222
7384
|
} | undefined;
|
|
7223
7385
|
associate?: {
|
|
7224
7386
|
enabled: boolean;
|
|
@@ -8472,21 +8634,21 @@ export declare const TokenKeyConditionsSchema: z.ZodObject<{
|
|
|
8472
8634
|
security?: "partial" | "full" | undefined;
|
|
8473
8635
|
}>>;
|
|
8474
8636
|
}, "strict", z.ZodTypeAny, {
|
|
8475
|
-
|
|
8637
|
+
pause?: {
|
|
8476
8638
|
threshold?: number | undefined;
|
|
8477
8639
|
enabled?: boolean | undefined;
|
|
8478
8640
|
controller?: "owner" | "dao" | undefined;
|
|
8479
8641
|
requiresApproval?: boolean | undefined;
|
|
8480
8642
|
security?: "partial" | "full" | undefined;
|
|
8481
8643
|
} | undefined;
|
|
8482
|
-
|
|
8644
|
+
wipe?: {
|
|
8483
8645
|
threshold?: number | undefined;
|
|
8484
8646
|
enabled?: boolean | undefined;
|
|
8485
8647
|
controller?: "owner" | "dao" | undefined;
|
|
8486
8648
|
requiresApproval?: boolean | undefined;
|
|
8487
8649
|
security?: "partial" | "full" | undefined;
|
|
8488
8650
|
} | undefined;
|
|
8489
|
-
|
|
8651
|
+
freeze?: {
|
|
8490
8652
|
threshold?: number | undefined;
|
|
8491
8653
|
enabled?: boolean | undefined;
|
|
8492
8654
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -8522,21 +8684,21 @@ export declare const TokenKeyConditionsSchema: z.ZodObject<{
|
|
|
8522
8684
|
security?: "partial" | "full" | undefined;
|
|
8523
8685
|
} | undefined;
|
|
8524
8686
|
}, {
|
|
8525
|
-
|
|
8687
|
+
pause?: {
|
|
8526
8688
|
threshold?: number | undefined;
|
|
8527
8689
|
enabled?: boolean | undefined;
|
|
8528
8690
|
controller?: "owner" | "dao" | undefined;
|
|
8529
8691
|
requiresApproval?: boolean | undefined;
|
|
8530
8692
|
security?: "partial" | "full" | undefined;
|
|
8531
8693
|
} | undefined;
|
|
8532
|
-
|
|
8694
|
+
wipe?: {
|
|
8533
8695
|
threshold?: number | undefined;
|
|
8534
8696
|
enabled?: boolean | undefined;
|
|
8535
8697
|
controller?: "owner" | "dao" | undefined;
|
|
8536
8698
|
requiresApproval?: boolean | undefined;
|
|
8537
8699
|
security?: "partial" | "full" | undefined;
|
|
8538
8700
|
} | undefined;
|
|
8539
|
-
|
|
8701
|
+
freeze?: {
|
|
8540
8702
|
threshold?: number | undefined;
|
|
8541
8703
|
enabled?: boolean | undefined;
|
|
8542
8704
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -9363,10 +9525,10 @@ export declare const SoulboundNftConfigSchema: z.ZodObject<{
|
|
|
9363
9525
|
]>, "many">>;
|
|
9364
9526
|
}, "strict", z.ZodTypeAny, {
|
|
9365
9527
|
enforced: boolean;
|
|
9366
|
-
allowedActions?: ("
|
|
9528
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
9367
9529
|
}, {
|
|
9368
9530
|
enforced: boolean;
|
|
9369
|
-
allowedActions?: ("
|
|
9531
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
9370
9532
|
}>;
|
|
9371
9533
|
export declare const ModuleEntrySchema: z.ZodObject<{
|
|
9372
9534
|
type: z.ZodString;
|
|
@@ -10092,7 +10254,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10092
10254
|
whitelist?: string[] | undefined;
|
|
10093
10255
|
blacklist?: string[] | undefined;
|
|
10094
10256
|
} | undefined;
|
|
10095
|
-
|
|
10257
|
+
pause?: {
|
|
10096
10258
|
enabled: boolean;
|
|
10097
10259
|
controller?: "owner" | "dao" | undefined;
|
|
10098
10260
|
requiresApproval?: boolean | undefined;
|
|
@@ -10105,9 +10267,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10105
10267
|
cooldownSeconds?: number | undefined;
|
|
10106
10268
|
minPerTransaction?: string | undefined;
|
|
10107
10269
|
} | undefined;
|
|
10108
|
-
allowedFields?: string[] | undefined;
|
|
10109
10270
|
} | undefined;
|
|
10110
|
-
|
|
10271
|
+
wipe?: {
|
|
10111
10272
|
enabled: boolean;
|
|
10112
10273
|
controller?: "owner" | "dao" | undefined;
|
|
10113
10274
|
requiresApproval?: boolean | undefined;
|
|
@@ -10121,7 +10282,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10121
10282
|
minPerTransaction?: string | undefined;
|
|
10122
10283
|
} | undefined;
|
|
10123
10284
|
} | undefined;
|
|
10124
|
-
|
|
10285
|
+
update?: {
|
|
10125
10286
|
enabled: boolean;
|
|
10126
10287
|
controller?: "owner" | "dao" | undefined;
|
|
10127
10288
|
requiresApproval?: boolean | undefined;
|
|
@@ -10134,9 +10295,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10134
10295
|
cooldownSeconds?: number | undefined;
|
|
10135
10296
|
minPerTransaction?: string | undefined;
|
|
10136
10297
|
} | undefined;
|
|
10137
|
-
|
|
10298
|
+
allowedFields?: string[] | undefined;
|
|
10138
10299
|
} | undefined;
|
|
10139
|
-
|
|
10300
|
+
mint?: {
|
|
10140
10301
|
enabled: boolean;
|
|
10141
10302
|
controller?: "owner" | "dao" | undefined;
|
|
10142
10303
|
requiresApproval?: boolean | undefined;
|
|
@@ -10149,9 +10310,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10149
10310
|
cooldownSeconds?: number | undefined;
|
|
10150
10311
|
minPerTransaction?: string | undefined;
|
|
10151
10312
|
} | undefined;
|
|
10152
|
-
requiresMultisig?: boolean | undefined;
|
|
10153
10313
|
} | undefined;
|
|
10154
|
-
|
|
10314
|
+
burn?: {
|
|
10155
10315
|
enabled: boolean;
|
|
10156
10316
|
controller?: "owner" | "dao" | undefined;
|
|
10157
10317
|
requiresApproval?: boolean | undefined;
|
|
@@ -10164,8 +10324,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10164
10324
|
cooldownSeconds?: number | undefined;
|
|
10165
10325
|
minPerTransaction?: string | undefined;
|
|
10166
10326
|
} | undefined;
|
|
10327
|
+
allowHolderBurn?: boolean | undefined;
|
|
10167
10328
|
} | undefined;
|
|
10168
|
-
|
|
10329
|
+
freeze?: {
|
|
10169
10330
|
enabled: boolean;
|
|
10170
10331
|
controller?: "owner" | "dao" | undefined;
|
|
10171
10332
|
requiresApproval?: boolean | undefined;
|
|
@@ -10178,6 +10339,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10178
10339
|
cooldownSeconds?: number | undefined;
|
|
10179
10340
|
minPerTransaction?: string | undefined;
|
|
10180
10341
|
} | undefined;
|
|
10342
|
+
requiresMultisig?: boolean | undefined;
|
|
10181
10343
|
} | undefined;
|
|
10182
10344
|
associate?: {
|
|
10183
10345
|
enabled: boolean;
|
|
@@ -10254,7 +10416,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10254
10416
|
whitelist?: string[] | undefined;
|
|
10255
10417
|
blacklist?: string[] | undefined;
|
|
10256
10418
|
} | undefined;
|
|
10257
|
-
|
|
10419
|
+
pause?: {
|
|
10258
10420
|
enabled: boolean;
|
|
10259
10421
|
controller?: "owner" | "dao" | undefined;
|
|
10260
10422
|
requiresApproval?: boolean | undefined;
|
|
@@ -10267,9 +10429,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10267
10429
|
cooldownSeconds?: number | undefined;
|
|
10268
10430
|
minPerTransaction?: string | undefined;
|
|
10269
10431
|
} | undefined;
|
|
10270
|
-
allowedFields?: string[] | undefined;
|
|
10271
10432
|
} | undefined;
|
|
10272
|
-
|
|
10433
|
+
wipe?: {
|
|
10273
10434
|
enabled: boolean;
|
|
10274
10435
|
controller?: "owner" | "dao" | undefined;
|
|
10275
10436
|
requiresApproval?: boolean | undefined;
|
|
@@ -10283,7 +10444,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10283
10444
|
minPerTransaction?: string | undefined;
|
|
10284
10445
|
} | undefined;
|
|
10285
10446
|
} | undefined;
|
|
10286
|
-
|
|
10447
|
+
update?: {
|
|
10287
10448
|
enabled: boolean;
|
|
10288
10449
|
controller?: "owner" | "dao" | undefined;
|
|
10289
10450
|
requiresApproval?: boolean | undefined;
|
|
@@ -10296,9 +10457,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10296
10457
|
cooldownSeconds?: number | undefined;
|
|
10297
10458
|
minPerTransaction?: string | undefined;
|
|
10298
10459
|
} | undefined;
|
|
10299
|
-
|
|
10460
|
+
allowedFields?: string[] | undefined;
|
|
10300
10461
|
} | undefined;
|
|
10301
|
-
|
|
10462
|
+
mint?: {
|
|
10302
10463
|
enabled: boolean;
|
|
10303
10464
|
controller?: "owner" | "dao" | undefined;
|
|
10304
10465
|
requiresApproval?: boolean | undefined;
|
|
@@ -10311,9 +10472,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10311
10472
|
cooldownSeconds?: number | undefined;
|
|
10312
10473
|
minPerTransaction?: string | undefined;
|
|
10313
10474
|
} | undefined;
|
|
10314
|
-
requiresMultisig?: boolean | undefined;
|
|
10315
10475
|
} | undefined;
|
|
10316
|
-
|
|
10476
|
+
burn?: {
|
|
10317
10477
|
enabled: boolean;
|
|
10318
10478
|
controller?: "owner" | "dao" | undefined;
|
|
10319
10479
|
requiresApproval?: boolean | undefined;
|
|
@@ -10326,8 +10486,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10326
10486
|
cooldownSeconds?: number | undefined;
|
|
10327
10487
|
minPerTransaction?: string | undefined;
|
|
10328
10488
|
} | undefined;
|
|
10489
|
+
allowHolderBurn?: boolean | undefined;
|
|
10329
10490
|
} | undefined;
|
|
10330
|
-
|
|
10491
|
+
freeze?: {
|
|
10331
10492
|
enabled: boolean;
|
|
10332
10493
|
controller?: "owner" | "dao" | undefined;
|
|
10333
10494
|
requiresApproval?: boolean | undefined;
|
|
@@ -10340,6 +10501,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10340
10501
|
cooldownSeconds?: number | undefined;
|
|
10341
10502
|
minPerTransaction?: string | undefined;
|
|
10342
10503
|
} | undefined;
|
|
10504
|
+
requiresMultisig?: boolean | undefined;
|
|
10343
10505
|
} | undefined;
|
|
10344
10506
|
associate?: {
|
|
10345
10507
|
enabled: boolean;
|
|
@@ -10575,21 +10737,21 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10575
10737
|
security?: "partial" | "full" | undefined;
|
|
10576
10738
|
}>>;
|
|
10577
10739
|
}, "strict", z.ZodTypeAny, {
|
|
10578
|
-
|
|
10740
|
+
pause?: {
|
|
10579
10741
|
threshold?: number | undefined;
|
|
10580
10742
|
enabled?: boolean | undefined;
|
|
10581
10743
|
controller?: "owner" | "dao" | undefined;
|
|
10582
10744
|
requiresApproval?: boolean | undefined;
|
|
10583
10745
|
security?: "partial" | "full" | undefined;
|
|
10584
10746
|
} | undefined;
|
|
10585
|
-
|
|
10747
|
+
wipe?: {
|
|
10586
10748
|
threshold?: number | undefined;
|
|
10587
10749
|
enabled?: boolean | undefined;
|
|
10588
10750
|
controller?: "owner" | "dao" | undefined;
|
|
10589
10751
|
requiresApproval?: boolean | undefined;
|
|
10590
10752
|
security?: "partial" | "full" | undefined;
|
|
10591
10753
|
} | undefined;
|
|
10592
|
-
|
|
10754
|
+
freeze?: {
|
|
10593
10755
|
threshold?: number | undefined;
|
|
10594
10756
|
enabled?: boolean | undefined;
|
|
10595
10757
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -10625,21 +10787,21 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
10625
10787
|
security?: "partial" | "full" | undefined;
|
|
10626
10788
|
} | undefined;
|
|
10627
10789
|
}, {
|
|
10628
|
-
|
|
10790
|
+
pause?: {
|
|
10629
10791
|
threshold?: number | undefined;
|
|
10630
10792
|
enabled?: boolean | undefined;
|
|
10631
10793
|
controller?: "owner" | "dao" | undefined;
|
|
10632
10794
|
requiresApproval?: boolean | undefined;
|
|
10633
10795
|
security?: "partial" | "full" | undefined;
|
|
10634
10796
|
} | undefined;
|
|
10635
|
-
|
|
10797
|
+
wipe?: {
|
|
10636
10798
|
threshold?: number | undefined;
|
|
10637
10799
|
enabled?: boolean | undefined;
|
|
10638
10800
|
controller?: "owner" | "dao" | undefined;
|
|
10639
10801
|
requiresApproval?: boolean | undefined;
|
|
10640
10802
|
security?: "partial" | "full" | undefined;
|
|
10641
10803
|
} | undefined;
|
|
10642
|
-
|
|
10804
|
+
freeze?: {
|
|
10643
10805
|
threshold?: number | undefined;
|
|
10644
10806
|
enabled?: boolean | undefined;
|
|
10645
10807
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -11130,10 +11292,10 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11130
11292
|
]>, "many">>;
|
|
11131
11293
|
}, "strict", z.ZodTypeAny, {
|
|
11132
11294
|
enforced: boolean;
|
|
11133
|
-
allowedActions?: ("
|
|
11295
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
11134
11296
|
}, {
|
|
11135
11297
|
enforced: boolean;
|
|
11136
|
-
allowedActions?: ("
|
|
11298
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
11137
11299
|
}>>;
|
|
11138
11300
|
invariants: z.ZodOptional<z.ZodObject<{
|
|
11139
11301
|
maxSupply: z.ZodOptional<z.ZodString>;
|
|
@@ -11177,7 +11339,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11177
11339
|
whitelist?: string[] | undefined;
|
|
11178
11340
|
blacklist?: string[] | undefined;
|
|
11179
11341
|
} | undefined;
|
|
11180
|
-
|
|
11342
|
+
pause?: {
|
|
11181
11343
|
enabled: boolean;
|
|
11182
11344
|
controller?: "owner" | "dao" | undefined;
|
|
11183
11345
|
requiresApproval?: boolean | undefined;
|
|
@@ -11190,9 +11352,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11190
11352
|
cooldownSeconds?: number | undefined;
|
|
11191
11353
|
minPerTransaction?: string | undefined;
|
|
11192
11354
|
} | undefined;
|
|
11193
|
-
allowedFields?: string[] | undefined;
|
|
11194
11355
|
} | undefined;
|
|
11195
|
-
|
|
11356
|
+
wipe?: {
|
|
11196
11357
|
enabled: boolean;
|
|
11197
11358
|
controller?: "owner" | "dao" | undefined;
|
|
11198
11359
|
requiresApproval?: boolean | undefined;
|
|
@@ -11206,7 +11367,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11206
11367
|
minPerTransaction?: string | undefined;
|
|
11207
11368
|
} | undefined;
|
|
11208
11369
|
} | undefined;
|
|
11209
|
-
|
|
11370
|
+
update?: {
|
|
11210
11371
|
enabled: boolean;
|
|
11211
11372
|
controller?: "owner" | "dao" | undefined;
|
|
11212
11373
|
requiresApproval?: boolean | undefined;
|
|
@@ -11219,9 +11380,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11219
11380
|
cooldownSeconds?: number | undefined;
|
|
11220
11381
|
minPerTransaction?: string | undefined;
|
|
11221
11382
|
} | undefined;
|
|
11222
|
-
|
|
11383
|
+
allowedFields?: string[] | undefined;
|
|
11223
11384
|
} | undefined;
|
|
11224
|
-
|
|
11385
|
+
mint?: {
|
|
11225
11386
|
enabled: boolean;
|
|
11226
11387
|
controller?: "owner" | "dao" | undefined;
|
|
11227
11388
|
requiresApproval?: boolean | undefined;
|
|
@@ -11234,9 +11395,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11234
11395
|
cooldownSeconds?: number | undefined;
|
|
11235
11396
|
minPerTransaction?: string | undefined;
|
|
11236
11397
|
} | undefined;
|
|
11237
|
-
requiresMultisig?: boolean | undefined;
|
|
11238
11398
|
} | undefined;
|
|
11239
|
-
|
|
11399
|
+
burn?: {
|
|
11240
11400
|
enabled: boolean;
|
|
11241
11401
|
controller?: "owner" | "dao" | undefined;
|
|
11242
11402
|
requiresApproval?: boolean | undefined;
|
|
@@ -11249,8 +11409,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11249
11409
|
cooldownSeconds?: number | undefined;
|
|
11250
11410
|
minPerTransaction?: string | undefined;
|
|
11251
11411
|
} | undefined;
|
|
11412
|
+
allowHolderBurn?: boolean | undefined;
|
|
11252
11413
|
} | undefined;
|
|
11253
|
-
|
|
11414
|
+
freeze?: {
|
|
11254
11415
|
enabled: boolean;
|
|
11255
11416
|
controller?: "owner" | "dao" | undefined;
|
|
11256
11417
|
requiresApproval?: boolean | undefined;
|
|
@@ -11263,6 +11424,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11263
11424
|
cooldownSeconds?: number | undefined;
|
|
11264
11425
|
minPerTransaction?: string | undefined;
|
|
11265
11426
|
} | undefined;
|
|
11427
|
+
requiresMultisig?: boolean | undefined;
|
|
11266
11428
|
} | undefined;
|
|
11267
11429
|
associate?: {
|
|
11268
11430
|
enabled: boolean;
|
|
@@ -11322,21 +11484,21 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11322
11484
|
} | undefined;
|
|
11323
11485
|
};
|
|
11324
11486
|
keys?: {
|
|
11325
|
-
|
|
11487
|
+
pause?: {
|
|
11326
11488
|
threshold?: number | undefined;
|
|
11327
11489
|
enabled?: boolean | undefined;
|
|
11328
11490
|
controller?: "owner" | "dao" | undefined;
|
|
11329
11491
|
requiresApproval?: boolean | undefined;
|
|
11330
11492
|
security?: "partial" | "full" | undefined;
|
|
11331
11493
|
} | undefined;
|
|
11332
|
-
|
|
11494
|
+
wipe?: {
|
|
11333
11495
|
threshold?: number | undefined;
|
|
11334
11496
|
enabled?: boolean | undefined;
|
|
11335
11497
|
controller?: "owner" | "dao" | undefined;
|
|
11336
11498
|
requiresApproval?: boolean | undefined;
|
|
11337
11499
|
security?: "partial" | "full" | undefined;
|
|
11338
11500
|
} | undefined;
|
|
11339
|
-
|
|
11501
|
+
freeze?: {
|
|
11340
11502
|
threshold?: number | undefined;
|
|
11341
11503
|
enabled?: boolean | undefined;
|
|
11342
11504
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -11469,7 +11631,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11469
11631
|
}[] | undefined;
|
|
11470
11632
|
soulbound?: {
|
|
11471
11633
|
enforced: boolean;
|
|
11472
|
-
allowedActions?: ("
|
|
11634
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
11473
11635
|
} | undefined;
|
|
11474
11636
|
invariants?: {
|
|
11475
11637
|
immutableFields: string[];
|
|
@@ -11501,7 +11663,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11501
11663
|
whitelist?: string[] | undefined;
|
|
11502
11664
|
blacklist?: string[] | undefined;
|
|
11503
11665
|
} | undefined;
|
|
11504
|
-
|
|
11666
|
+
pause?: {
|
|
11505
11667
|
enabled: boolean;
|
|
11506
11668
|
controller?: "owner" | "dao" | undefined;
|
|
11507
11669
|
requiresApproval?: boolean | undefined;
|
|
@@ -11514,9 +11676,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11514
11676
|
cooldownSeconds?: number | undefined;
|
|
11515
11677
|
minPerTransaction?: string | undefined;
|
|
11516
11678
|
} | undefined;
|
|
11517
|
-
allowedFields?: string[] | undefined;
|
|
11518
11679
|
} | undefined;
|
|
11519
|
-
|
|
11680
|
+
wipe?: {
|
|
11520
11681
|
enabled: boolean;
|
|
11521
11682
|
controller?: "owner" | "dao" | undefined;
|
|
11522
11683
|
requiresApproval?: boolean | undefined;
|
|
@@ -11530,7 +11691,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11530
11691
|
minPerTransaction?: string | undefined;
|
|
11531
11692
|
} | undefined;
|
|
11532
11693
|
} | undefined;
|
|
11533
|
-
|
|
11694
|
+
update?: {
|
|
11534
11695
|
enabled: boolean;
|
|
11535
11696
|
controller?: "owner" | "dao" | undefined;
|
|
11536
11697
|
requiresApproval?: boolean | undefined;
|
|
@@ -11543,9 +11704,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11543
11704
|
cooldownSeconds?: number | undefined;
|
|
11544
11705
|
minPerTransaction?: string | undefined;
|
|
11545
11706
|
} | undefined;
|
|
11546
|
-
|
|
11707
|
+
allowedFields?: string[] | undefined;
|
|
11547
11708
|
} | undefined;
|
|
11548
|
-
|
|
11709
|
+
mint?: {
|
|
11549
11710
|
enabled: boolean;
|
|
11550
11711
|
controller?: "owner" | "dao" | undefined;
|
|
11551
11712
|
requiresApproval?: boolean | undefined;
|
|
@@ -11558,9 +11719,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11558
11719
|
cooldownSeconds?: number | undefined;
|
|
11559
11720
|
minPerTransaction?: string | undefined;
|
|
11560
11721
|
} | undefined;
|
|
11561
|
-
requiresMultisig?: boolean | undefined;
|
|
11562
11722
|
} | undefined;
|
|
11563
|
-
|
|
11723
|
+
burn?: {
|
|
11564
11724
|
enabled: boolean;
|
|
11565
11725
|
controller?: "owner" | "dao" | undefined;
|
|
11566
11726
|
requiresApproval?: boolean | undefined;
|
|
@@ -11573,8 +11733,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11573
11733
|
cooldownSeconds?: number | undefined;
|
|
11574
11734
|
minPerTransaction?: string | undefined;
|
|
11575
11735
|
} | undefined;
|
|
11736
|
+
allowHolderBurn?: boolean | undefined;
|
|
11576
11737
|
} | undefined;
|
|
11577
|
-
|
|
11738
|
+
freeze?: {
|
|
11578
11739
|
enabled: boolean;
|
|
11579
11740
|
controller?: "owner" | "dao" | undefined;
|
|
11580
11741
|
requiresApproval?: boolean | undefined;
|
|
@@ -11587,6 +11748,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11587
11748
|
cooldownSeconds?: number | undefined;
|
|
11588
11749
|
minPerTransaction?: string | undefined;
|
|
11589
11750
|
} | undefined;
|
|
11751
|
+
requiresMultisig?: boolean | undefined;
|
|
11590
11752
|
} | undefined;
|
|
11591
11753
|
associate?: {
|
|
11592
11754
|
enabled: boolean;
|
|
@@ -11646,21 +11808,21 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11646
11808
|
} | undefined;
|
|
11647
11809
|
};
|
|
11648
11810
|
keys?: {
|
|
11649
|
-
|
|
11811
|
+
pause?: {
|
|
11650
11812
|
threshold?: number | undefined;
|
|
11651
11813
|
enabled?: boolean | undefined;
|
|
11652
11814
|
controller?: "owner" | "dao" | undefined;
|
|
11653
11815
|
requiresApproval?: boolean | undefined;
|
|
11654
11816
|
security?: "partial" | "full" | undefined;
|
|
11655
11817
|
} | undefined;
|
|
11656
|
-
|
|
11818
|
+
wipe?: {
|
|
11657
11819
|
threshold?: number | undefined;
|
|
11658
11820
|
enabled?: boolean | undefined;
|
|
11659
11821
|
controller?: "owner" | "dao" | undefined;
|
|
11660
11822
|
requiresApproval?: boolean | undefined;
|
|
11661
11823
|
security?: "partial" | "full" | undefined;
|
|
11662
11824
|
} | undefined;
|
|
11663
|
-
|
|
11825
|
+
freeze?: {
|
|
11664
11826
|
threshold?: number | undefined;
|
|
11665
11827
|
enabled?: boolean | undefined;
|
|
11666
11828
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -11793,7 +11955,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11793
11955
|
}[] | undefined;
|
|
11794
11956
|
soulbound?: {
|
|
11795
11957
|
enforced: boolean;
|
|
11796
|
-
allowedActions?: ("
|
|
11958
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
11797
11959
|
} | undefined;
|
|
11798
11960
|
invariants?: {
|
|
11799
11961
|
immutableFields: string[];
|
|
@@ -11825,7 +11987,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11825
11987
|
whitelist?: string[] | undefined;
|
|
11826
11988
|
blacklist?: string[] | undefined;
|
|
11827
11989
|
} | undefined;
|
|
11828
|
-
|
|
11990
|
+
pause?: {
|
|
11829
11991
|
enabled: boolean;
|
|
11830
11992
|
controller?: "owner" | "dao" | undefined;
|
|
11831
11993
|
requiresApproval?: boolean | undefined;
|
|
@@ -11838,9 +12000,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11838
12000
|
cooldownSeconds?: number | undefined;
|
|
11839
12001
|
minPerTransaction?: string | undefined;
|
|
11840
12002
|
} | undefined;
|
|
11841
|
-
allowedFields?: string[] | undefined;
|
|
11842
12003
|
} | undefined;
|
|
11843
|
-
|
|
12004
|
+
wipe?: {
|
|
11844
12005
|
enabled: boolean;
|
|
11845
12006
|
controller?: "owner" | "dao" | undefined;
|
|
11846
12007
|
requiresApproval?: boolean | undefined;
|
|
@@ -11854,7 +12015,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11854
12015
|
minPerTransaction?: string | undefined;
|
|
11855
12016
|
} | undefined;
|
|
11856
12017
|
} | undefined;
|
|
11857
|
-
|
|
12018
|
+
update?: {
|
|
11858
12019
|
enabled: boolean;
|
|
11859
12020
|
controller?: "owner" | "dao" | undefined;
|
|
11860
12021
|
requiresApproval?: boolean | undefined;
|
|
@@ -11867,9 +12028,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11867
12028
|
cooldownSeconds?: number | undefined;
|
|
11868
12029
|
minPerTransaction?: string | undefined;
|
|
11869
12030
|
} | undefined;
|
|
11870
|
-
|
|
12031
|
+
allowedFields?: string[] | undefined;
|
|
11871
12032
|
} | undefined;
|
|
11872
|
-
|
|
12033
|
+
mint?: {
|
|
11873
12034
|
enabled: boolean;
|
|
11874
12035
|
controller?: "owner" | "dao" | undefined;
|
|
11875
12036
|
requiresApproval?: boolean | undefined;
|
|
@@ -11882,9 +12043,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11882
12043
|
cooldownSeconds?: number | undefined;
|
|
11883
12044
|
minPerTransaction?: string | undefined;
|
|
11884
12045
|
} | undefined;
|
|
11885
|
-
requiresMultisig?: boolean | undefined;
|
|
11886
12046
|
} | undefined;
|
|
11887
|
-
|
|
12047
|
+
burn?: {
|
|
11888
12048
|
enabled: boolean;
|
|
11889
12049
|
controller?: "owner" | "dao" | undefined;
|
|
11890
12050
|
requiresApproval?: boolean | undefined;
|
|
@@ -11897,8 +12057,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11897
12057
|
cooldownSeconds?: number | undefined;
|
|
11898
12058
|
minPerTransaction?: string | undefined;
|
|
11899
12059
|
} | undefined;
|
|
12060
|
+
allowHolderBurn?: boolean | undefined;
|
|
11900
12061
|
} | undefined;
|
|
11901
|
-
|
|
12062
|
+
freeze?: {
|
|
11902
12063
|
enabled: boolean;
|
|
11903
12064
|
controller?: "owner" | "dao" | undefined;
|
|
11904
12065
|
requiresApproval?: boolean | undefined;
|
|
@@ -11911,6 +12072,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11911
12072
|
cooldownSeconds?: number | undefined;
|
|
11912
12073
|
minPerTransaction?: string | undefined;
|
|
11913
12074
|
} | undefined;
|
|
12075
|
+
requiresMultisig?: boolean | undefined;
|
|
11914
12076
|
} | undefined;
|
|
11915
12077
|
associate?: {
|
|
11916
12078
|
enabled: boolean;
|
|
@@ -11970,21 +12132,21 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11970
12132
|
} | undefined;
|
|
11971
12133
|
};
|
|
11972
12134
|
keys?: {
|
|
11973
|
-
|
|
12135
|
+
pause?: {
|
|
11974
12136
|
threshold?: number | undefined;
|
|
11975
12137
|
enabled?: boolean | undefined;
|
|
11976
12138
|
controller?: "owner" | "dao" | undefined;
|
|
11977
12139
|
requiresApproval?: boolean | undefined;
|
|
11978
12140
|
security?: "partial" | "full" | undefined;
|
|
11979
12141
|
} | undefined;
|
|
11980
|
-
|
|
12142
|
+
wipe?: {
|
|
11981
12143
|
threshold?: number | undefined;
|
|
11982
12144
|
enabled?: boolean | undefined;
|
|
11983
12145
|
controller?: "owner" | "dao" | undefined;
|
|
11984
12146
|
requiresApproval?: boolean | undefined;
|
|
11985
12147
|
security?: "partial" | "full" | undefined;
|
|
11986
12148
|
} | undefined;
|
|
11987
|
-
|
|
12149
|
+
freeze?: {
|
|
11988
12150
|
threshold?: number | undefined;
|
|
11989
12151
|
enabled?: boolean | undefined;
|
|
11990
12152
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -12117,7 +12279,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12117
12279
|
}[] | undefined;
|
|
12118
12280
|
soulbound?: {
|
|
12119
12281
|
enforced: boolean;
|
|
12120
|
-
allowedActions?: ("
|
|
12282
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
12121
12283
|
} | undefined;
|
|
12122
12284
|
invariants?: {
|
|
12123
12285
|
immutableFields: string[];
|
|
@@ -12149,7 +12311,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12149
12311
|
whitelist?: string[] | undefined;
|
|
12150
12312
|
blacklist?: string[] | undefined;
|
|
12151
12313
|
} | undefined;
|
|
12152
|
-
|
|
12314
|
+
pause?: {
|
|
12153
12315
|
enabled: boolean;
|
|
12154
12316
|
controller?: "owner" | "dao" | undefined;
|
|
12155
12317
|
requiresApproval?: boolean | undefined;
|
|
@@ -12162,9 +12324,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12162
12324
|
cooldownSeconds?: number | undefined;
|
|
12163
12325
|
minPerTransaction?: string | undefined;
|
|
12164
12326
|
} | undefined;
|
|
12165
|
-
allowedFields?: string[] | undefined;
|
|
12166
12327
|
} | undefined;
|
|
12167
|
-
|
|
12328
|
+
wipe?: {
|
|
12168
12329
|
enabled: boolean;
|
|
12169
12330
|
controller?: "owner" | "dao" | undefined;
|
|
12170
12331
|
requiresApproval?: boolean | undefined;
|
|
@@ -12178,7 +12339,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12178
12339
|
minPerTransaction?: string | undefined;
|
|
12179
12340
|
} | undefined;
|
|
12180
12341
|
} | undefined;
|
|
12181
|
-
|
|
12342
|
+
update?: {
|
|
12182
12343
|
enabled: boolean;
|
|
12183
12344
|
controller?: "owner" | "dao" | undefined;
|
|
12184
12345
|
requiresApproval?: boolean | undefined;
|
|
@@ -12191,9 +12352,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12191
12352
|
cooldownSeconds?: number | undefined;
|
|
12192
12353
|
minPerTransaction?: string | undefined;
|
|
12193
12354
|
} | undefined;
|
|
12194
|
-
|
|
12355
|
+
allowedFields?: string[] | undefined;
|
|
12195
12356
|
} | undefined;
|
|
12196
|
-
|
|
12357
|
+
mint?: {
|
|
12197
12358
|
enabled: boolean;
|
|
12198
12359
|
controller?: "owner" | "dao" | undefined;
|
|
12199
12360
|
requiresApproval?: boolean | undefined;
|
|
@@ -12206,9 +12367,8 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12206
12367
|
cooldownSeconds?: number | undefined;
|
|
12207
12368
|
minPerTransaction?: string | undefined;
|
|
12208
12369
|
} | undefined;
|
|
12209
|
-
requiresMultisig?: boolean | undefined;
|
|
12210
12370
|
} | undefined;
|
|
12211
|
-
|
|
12371
|
+
burn?: {
|
|
12212
12372
|
enabled: boolean;
|
|
12213
12373
|
controller?: "owner" | "dao" | undefined;
|
|
12214
12374
|
requiresApproval?: boolean | undefined;
|
|
@@ -12221,8 +12381,9 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12221
12381
|
cooldownSeconds?: number | undefined;
|
|
12222
12382
|
minPerTransaction?: string | undefined;
|
|
12223
12383
|
} | undefined;
|
|
12384
|
+
allowHolderBurn?: boolean | undefined;
|
|
12224
12385
|
} | undefined;
|
|
12225
|
-
|
|
12386
|
+
freeze?: {
|
|
12226
12387
|
enabled: boolean;
|
|
12227
12388
|
controller?: "owner" | "dao" | undefined;
|
|
12228
12389
|
requiresApproval?: boolean | undefined;
|
|
@@ -12235,6 +12396,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12235
12396
|
cooldownSeconds?: number | undefined;
|
|
12236
12397
|
minPerTransaction?: string | undefined;
|
|
12237
12398
|
} | undefined;
|
|
12399
|
+
requiresMultisig?: boolean | undefined;
|
|
12238
12400
|
} | undefined;
|
|
12239
12401
|
associate?: {
|
|
12240
12402
|
enabled: boolean;
|
|
@@ -12294,21 +12456,21 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12294
12456
|
} | undefined;
|
|
12295
12457
|
};
|
|
12296
12458
|
keys?: {
|
|
12297
|
-
|
|
12459
|
+
pause?: {
|
|
12298
12460
|
threshold?: number | undefined;
|
|
12299
12461
|
enabled?: boolean | undefined;
|
|
12300
12462
|
controller?: "owner" | "dao" | undefined;
|
|
12301
12463
|
requiresApproval?: boolean | undefined;
|
|
12302
12464
|
security?: "partial" | "full" | undefined;
|
|
12303
12465
|
} | undefined;
|
|
12304
|
-
|
|
12466
|
+
wipe?: {
|
|
12305
12467
|
threshold?: number | undefined;
|
|
12306
12468
|
enabled?: boolean | undefined;
|
|
12307
12469
|
controller?: "owner" | "dao" | undefined;
|
|
12308
12470
|
requiresApproval?: boolean | undefined;
|
|
12309
12471
|
security?: "partial" | "full" | undefined;
|
|
12310
12472
|
} | undefined;
|
|
12311
|
-
|
|
12473
|
+
freeze?: {
|
|
12312
12474
|
threshold?: number | undefined;
|
|
12313
12475
|
enabled?: boolean | undefined;
|
|
12314
12476
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -12441,7 +12603,7 @@ export declare const TokenValidatorRulesSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12441
12603
|
}[] | undefined;
|
|
12442
12604
|
soulbound?: {
|
|
12443
12605
|
enforced: boolean;
|
|
12444
|
-
allowedActions?: ("
|
|
12606
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
12445
12607
|
} | undefined;
|
|
12446
12608
|
invariants?: {
|
|
12447
12609
|
immutableFields: string[];
|
|
@@ -17663,7 +17825,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17663
17825
|
whitelist?: string[] | undefined;
|
|
17664
17826
|
blacklist?: string[] | undefined;
|
|
17665
17827
|
} | undefined;
|
|
17666
|
-
|
|
17828
|
+
pause?: {
|
|
17667
17829
|
enabled: boolean;
|
|
17668
17830
|
controller?: "owner" | "dao" | undefined;
|
|
17669
17831
|
requiresApproval?: boolean | undefined;
|
|
@@ -17676,9 +17838,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17676
17838
|
cooldownSeconds?: number | undefined;
|
|
17677
17839
|
minPerTransaction?: string | undefined;
|
|
17678
17840
|
} | undefined;
|
|
17679
|
-
allowedFields?: string[] | undefined;
|
|
17680
17841
|
} | undefined;
|
|
17681
|
-
|
|
17842
|
+
wipe?: {
|
|
17682
17843
|
enabled: boolean;
|
|
17683
17844
|
controller?: "owner" | "dao" | undefined;
|
|
17684
17845
|
requiresApproval?: boolean | undefined;
|
|
@@ -17692,7 +17853,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17692
17853
|
minPerTransaction?: string | undefined;
|
|
17693
17854
|
} | undefined;
|
|
17694
17855
|
} | undefined;
|
|
17695
|
-
|
|
17856
|
+
update?: {
|
|
17696
17857
|
enabled: boolean;
|
|
17697
17858
|
controller?: "owner" | "dao" | undefined;
|
|
17698
17859
|
requiresApproval?: boolean | undefined;
|
|
@@ -17705,9 +17866,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17705
17866
|
cooldownSeconds?: number | undefined;
|
|
17706
17867
|
minPerTransaction?: string | undefined;
|
|
17707
17868
|
} | undefined;
|
|
17708
|
-
|
|
17869
|
+
allowedFields?: string[] | undefined;
|
|
17709
17870
|
} | undefined;
|
|
17710
|
-
|
|
17871
|
+
mint?: {
|
|
17711
17872
|
enabled: boolean;
|
|
17712
17873
|
controller?: "owner" | "dao" | undefined;
|
|
17713
17874
|
requiresApproval?: boolean | undefined;
|
|
@@ -17720,9 +17881,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17720
17881
|
cooldownSeconds?: number | undefined;
|
|
17721
17882
|
minPerTransaction?: string | undefined;
|
|
17722
17883
|
} | undefined;
|
|
17723
|
-
requiresMultisig?: boolean | undefined;
|
|
17724
17884
|
} | undefined;
|
|
17725
|
-
|
|
17885
|
+
burn?: {
|
|
17726
17886
|
enabled: boolean;
|
|
17727
17887
|
controller?: "owner" | "dao" | undefined;
|
|
17728
17888
|
requiresApproval?: boolean | undefined;
|
|
@@ -17735,8 +17895,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17735
17895
|
cooldownSeconds?: number | undefined;
|
|
17736
17896
|
minPerTransaction?: string | undefined;
|
|
17737
17897
|
} | undefined;
|
|
17898
|
+
allowHolderBurn?: boolean | undefined;
|
|
17738
17899
|
} | undefined;
|
|
17739
|
-
|
|
17900
|
+
freeze?: {
|
|
17740
17901
|
enabled: boolean;
|
|
17741
17902
|
controller?: "owner" | "dao" | undefined;
|
|
17742
17903
|
requiresApproval?: boolean | undefined;
|
|
@@ -17749,6 +17910,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17749
17910
|
cooldownSeconds?: number | undefined;
|
|
17750
17911
|
minPerTransaction?: string | undefined;
|
|
17751
17912
|
} | undefined;
|
|
17913
|
+
requiresMultisig?: boolean | undefined;
|
|
17752
17914
|
} | undefined;
|
|
17753
17915
|
associate?: {
|
|
17754
17916
|
enabled: boolean;
|
|
@@ -17825,7 +17987,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17825
17987
|
whitelist?: string[] | undefined;
|
|
17826
17988
|
blacklist?: string[] | undefined;
|
|
17827
17989
|
} | undefined;
|
|
17828
|
-
|
|
17990
|
+
pause?: {
|
|
17829
17991
|
enabled: boolean;
|
|
17830
17992
|
controller?: "owner" | "dao" | undefined;
|
|
17831
17993
|
requiresApproval?: boolean | undefined;
|
|
@@ -17838,9 +18000,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17838
18000
|
cooldownSeconds?: number | undefined;
|
|
17839
18001
|
minPerTransaction?: string | undefined;
|
|
17840
18002
|
} | undefined;
|
|
17841
|
-
allowedFields?: string[] | undefined;
|
|
17842
18003
|
} | undefined;
|
|
17843
|
-
|
|
18004
|
+
wipe?: {
|
|
17844
18005
|
enabled: boolean;
|
|
17845
18006
|
controller?: "owner" | "dao" | undefined;
|
|
17846
18007
|
requiresApproval?: boolean | undefined;
|
|
@@ -17854,7 +18015,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17854
18015
|
minPerTransaction?: string | undefined;
|
|
17855
18016
|
} | undefined;
|
|
17856
18017
|
} | undefined;
|
|
17857
|
-
|
|
18018
|
+
update?: {
|
|
17858
18019
|
enabled: boolean;
|
|
17859
18020
|
controller?: "owner" | "dao" | undefined;
|
|
17860
18021
|
requiresApproval?: boolean | undefined;
|
|
@@ -17867,9 +18028,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17867
18028
|
cooldownSeconds?: number | undefined;
|
|
17868
18029
|
minPerTransaction?: string | undefined;
|
|
17869
18030
|
} | undefined;
|
|
17870
|
-
|
|
18031
|
+
allowedFields?: string[] | undefined;
|
|
17871
18032
|
} | undefined;
|
|
17872
|
-
|
|
18033
|
+
mint?: {
|
|
17873
18034
|
enabled: boolean;
|
|
17874
18035
|
controller?: "owner" | "dao" | undefined;
|
|
17875
18036
|
requiresApproval?: boolean | undefined;
|
|
@@ -17882,9 +18043,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17882
18043
|
cooldownSeconds?: number | undefined;
|
|
17883
18044
|
minPerTransaction?: string | undefined;
|
|
17884
18045
|
} | undefined;
|
|
17885
|
-
requiresMultisig?: boolean | undefined;
|
|
17886
18046
|
} | undefined;
|
|
17887
|
-
|
|
18047
|
+
burn?: {
|
|
17888
18048
|
enabled: boolean;
|
|
17889
18049
|
controller?: "owner" | "dao" | undefined;
|
|
17890
18050
|
requiresApproval?: boolean | undefined;
|
|
@@ -17897,8 +18057,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17897
18057
|
cooldownSeconds?: number | undefined;
|
|
17898
18058
|
minPerTransaction?: string | undefined;
|
|
17899
18059
|
} | undefined;
|
|
18060
|
+
allowHolderBurn?: boolean | undefined;
|
|
17900
18061
|
} | undefined;
|
|
17901
|
-
|
|
18062
|
+
freeze?: {
|
|
17902
18063
|
enabled: boolean;
|
|
17903
18064
|
controller?: "owner" | "dao" | undefined;
|
|
17904
18065
|
requiresApproval?: boolean | undefined;
|
|
@@ -17911,6 +18072,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
17911
18072
|
cooldownSeconds?: number | undefined;
|
|
17912
18073
|
minPerTransaction?: string | undefined;
|
|
17913
18074
|
} | undefined;
|
|
18075
|
+
requiresMultisig?: boolean | undefined;
|
|
17914
18076
|
} | undefined;
|
|
17915
18077
|
associate?: {
|
|
17916
18078
|
enabled: boolean;
|
|
@@ -18146,21 +18308,21 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18146
18308
|
security?: "partial" | "full" | undefined;
|
|
18147
18309
|
}>>;
|
|
18148
18310
|
}, "strict", z.ZodTypeAny, {
|
|
18149
|
-
|
|
18311
|
+
pause?: {
|
|
18150
18312
|
threshold?: number | undefined;
|
|
18151
18313
|
enabled?: boolean | undefined;
|
|
18152
18314
|
controller?: "owner" | "dao" | undefined;
|
|
18153
18315
|
requiresApproval?: boolean | undefined;
|
|
18154
18316
|
security?: "partial" | "full" | undefined;
|
|
18155
18317
|
} | undefined;
|
|
18156
|
-
|
|
18318
|
+
wipe?: {
|
|
18157
18319
|
threshold?: number | undefined;
|
|
18158
18320
|
enabled?: boolean | undefined;
|
|
18159
18321
|
controller?: "owner" | "dao" | undefined;
|
|
18160
18322
|
requiresApproval?: boolean | undefined;
|
|
18161
18323
|
security?: "partial" | "full" | undefined;
|
|
18162
18324
|
} | undefined;
|
|
18163
|
-
|
|
18325
|
+
freeze?: {
|
|
18164
18326
|
threshold?: number | undefined;
|
|
18165
18327
|
enabled?: boolean | undefined;
|
|
18166
18328
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -18196,21 +18358,21 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18196
18358
|
security?: "partial" | "full" | undefined;
|
|
18197
18359
|
} | undefined;
|
|
18198
18360
|
}, {
|
|
18199
|
-
|
|
18361
|
+
pause?: {
|
|
18200
18362
|
threshold?: number | undefined;
|
|
18201
18363
|
enabled?: boolean | undefined;
|
|
18202
18364
|
controller?: "owner" | "dao" | undefined;
|
|
18203
18365
|
requiresApproval?: boolean | undefined;
|
|
18204
18366
|
security?: "partial" | "full" | undefined;
|
|
18205
18367
|
} | undefined;
|
|
18206
|
-
|
|
18368
|
+
wipe?: {
|
|
18207
18369
|
threshold?: number | undefined;
|
|
18208
18370
|
enabled?: boolean | undefined;
|
|
18209
18371
|
controller?: "owner" | "dao" | undefined;
|
|
18210
18372
|
requiresApproval?: boolean | undefined;
|
|
18211
18373
|
security?: "partial" | "full" | undefined;
|
|
18212
18374
|
} | undefined;
|
|
18213
|
-
|
|
18375
|
+
freeze?: {
|
|
18214
18376
|
threshold?: number | undefined;
|
|
18215
18377
|
enabled?: boolean | undefined;
|
|
18216
18378
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -18701,10 +18863,10 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18701
18863
|
]>, "many">>;
|
|
18702
18864
|
}, "strict", z.ZodTypeAny, {
|
|
18703
18865
|
enforced: boolean;
|
|
18704
|
-
allowedActions?: ("
|
|
18866
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
18705
18867
|
}, {
|
|
18706
18868
|
enforced: boolean;
|
|
18707
|
-
allowedActions?: ("
|
|
18869
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
18708
18870
|
}>>;
|
|
18709
18871
|
invariants: z.ZodOptional<z.ZodObject<{
|
|
18710
18872
|
maxSupply: z.ZodOptional<z.ZodString>;
|
|
@@ -18748,7 +18910,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18748
18910
|
whitelist?: string[] | undefined;
|
|
18749
18911
|
blacklist?: string[] | undefined;
|
|
18750
18912
|
} | undefined;
|
|
18751
|
-
|
|
18913
|
+
pause?: {
|
|
18752
18914
|
enabled: boolean;
|
|
18753
18915
|
controller?: "owner" | "dao" | undefined;
|
|
18754
18916
|
requiresApproval?: boolean | undefined;
|
|
@@ -18761,9 +18923,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18761
18923
|
cooldownSeconds?: number | undefined;
|
|
18762
18924
|
minPerTransaction?: string | undefined;
|
|
18763
18925
|
} | undefined;
|
|
18764
|
-
allowedFields?: string[] | undefined;
|
|
18765
18926
|
} | undefined;
|
|
18766
|
-
|
|
18927
|
+
wipe?: {
|
|
18767
18928
|
enabled: boolean;
|
|
18768
18929
|
controller?: "owner" | "dao" | undefined;
|
|
18769
18930
|
requiresApproval?: boolean | undefined;
|
|
@@ -18777,7 +18938,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18777
18938
|
minPerTransaction?: string | undefined;
|
|
18778
18939
|
} | undefined;
|
|
18779
18940
|
} | undefined;
|
|
18780
|
-
|
|
18941
|
+
update?: {
|
|
18781
18942
|
enabled: boolean;
|
|
18782
18943
|
controller?: "owner" | "dao" | undefined;
|
|
18783
18944
|
requiresApproval?: boolean | undefined;
|
|
@@ -18790,9 +18951,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18790
18951
|
cooldownSeconds?: number | undefined;
|
|
18791
18952
|
minPerTransaction?: string | undefined;
|
|
18792
18953
|
} | undefined;
|
|
18793
|
-
|
|
18954
|
+
allowedFields?: string[] | undefined;
|
|
18794
18955
|
} | undefined;
|
|
18795
|
-
|
|
18956
|
+
mint?: {
|
|
18796
18957
|
enabled: boolean;
|
|
18797
18958
|
controller?: "owner" | "dao" | undefined;
|
|
18798
18959
|
requiresApproval?: boolean | undefined;
|
|
@@ -18805,9 +18966,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18805
18966
|
cooldownSeconds?: number | undefined;
|
|
18806
18967
|
minPerTransaction?: string | undefined;
|
|
18807
18968
|
} | undefined;
|
|
18808
|
-
requiresMultisig?: boolean | undefined;
|
|
18809
18969
|
} | undefined;
|
|
18810
|
-
|
|
18970
|
+
burn?: {
|
|
18811
18971
|
enabled: boolean;
|
|
18812
18972
|
controller?: "owner" | "dao" | undefined;
|
|
18813
18973
|
requiresApproval?: boolean | undefined;
|
|
@@ -18820,8 +18980,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18820
18980
|
cooldownSeconds?: number | undefined;
|
|
18821
18981
|
minPerTransaction?: string | undefined;
|
|
18822
18982
|
} | undefined;
|
|
18983
|
+
allowHolderBurn?: boolean | undefined;
|
|
18823
18984
|
} | undefined;
|
|
18824
|
-
|
|
18985
|
+
freeze?: {
|
|
18825
18986
|
enabled: boolean;
|
|
18826
18987
|
controller?: "owner" | "dao" | undefined;
|
|
18827
18988
|
requiresApproval?: boolean | undefined;
|
|
@@ -18834,6 +18995,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18834
18995
|
cooldownSeconds?: number | undefined;
|
|
18835
18996
|
minPerTransaction?: string | undefined;
|
|
18836
18997
|
} | undefined;
|
|
18998
|
+
requiresMultisig?: boolean | undefined;
|
|
18837
18999
|
} | undefined;
|
|
18838
19000
|
associate?: {
|
|
18839
19001
|
enabled: boolean;
|
|
@@ -18893,21 +19055,21 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
18893
19055
|
} | undefined;
|
|
18894
19056
|
};
|
|
18895
19057
|
keys?: {
|
|
18896
|
-
|
|
19058
|
+
pause?: {
|
|
18897
19059
|
threshold?: number | undefined;
|
|
18898
19060
|
enabled?: boolean | undefined;
|
|
18899
19061
|
controller?: "owner" | "dao" | undefined;
|
|
18900
19062
|
requiresApproval?: boolean | undefined;
|
|
18901
19063
|
security?: "partial" | "full" | undefined;
|
|
18902
19064
|
} | undefined;
|
|
18903
|
-
|
|
19065
|
+
wipe?: {
|
|
18904
19066
|
threshold?: number | undefined;
|
|
18905
19067
|
enabled?: boolean | undefined;
|
|
18906
19068
|
controller?: "owner" | "dao" | undefined;
|
|
18907
19069
|
requiresApproval?: boolean | undefined;
|
|
18908
19070
|
security?: "partial" | "full" | undefined;
|
|
18909
19071
|
} | undefined;
|
|
18910
|
-
|
|
19072
|
+
freeze?: {
|
|
18911
19073
|
threshold?: number | undefined;
|
|
18912
19074
|
enabled?: boolean | undefined;
|
|
18913
19075
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -19040,7 +19202,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19040
19202
|
}[] | undefined;
|
|
19041
19203
|
soulbound?: {
|
|
19042
19204
|
enforced: boolean;
|
|
19043
|
-
allowedActions?: ("
|
|
19205
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
19044
19206
|
} | undefined;
|
|
19045
19207
|
invariants?: {
|
|
19046
19208
|
immutableFields: string[];
|
|
@@ -19072,7 +19234,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19072
19234
|
whitelist?: string[] | undefined;
|
|
19073
19235
|
blacklist?: string[] | undefined;
|
|
19074
19236
|
} | undefined;
|
|
19075
|
-
|
|
19237
|
+
pause?: {
|
|
19076
19238
|
enabled: boolean;
|
|
19077
19239
|
controller?: "owner" | "dao" | undefined;
|
|
19078
19240
|
requiresApproval?: boolean | undefined;
|
|
@@ -19085,9 +19247,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19085
19247
|
cooldownSeconds?: number | undefined;
|
|
19086
19248
|
minPerTransaction?: string | undefined;
|
|
19087
19249
|
} | undefined;
|
|
19088
|
-
allowedFields?: string[] | undefined;
|
|
19089
19250
|
} | undefined;
|
|
19090
|
-
|
|
19251
|
+
wipe?: {
|
|
19091
19252
|
enabled: boolean;
|
|
19092
19253
|
controller?: "owner" | "dao" | undefined;
|
|
19093
19254
|
requiresApproval?: boolean | undefined;
|
|
@@ -19101,7 +19262,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19101
19262
|
minPerTransaction?: string | undefined;
|
|
19102
19263
|
} | undefined;
|
|
19103
19264
|
} | undefined;
|
|
19104
|
-
|
|
19265
|
+
update?: {
|
|
19105
19266
|
enabled: boolean;
|
|
19106
19267
|
controller?: "owner" | "dao" | undefined;
|
|
19107
19268
|
requiresApproval?: boolean | undefined;
|
|
@@ -19114,9 +19275,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19114
19275
|
cooldownSeconds?: number | undefined;
|
|
19115
19276
|
minPerTransaction?: string | undefined;
|
|
19116
19277
|
} | undefined;
|
|
19117
|
-
|
|
19278
|
+
allowedFields?: string[] | undefined;
|
|
19118
19279
|
} | undefined;
|
|
19119
|
-
|
|
19280
|
+
mint?: {
|
|
19120
19281
|
enabled: boolean;
|
|
19121
19282
|
controller?: "owner" | "dao" | undefined;
|
|
19122
19283
|
requiresApproval?: boolean | undefined;
|
|
@@ -19129,9 +19290,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19129
19290
|
cooldownSeconds?: number | undefined;
|
|
19130
19291
|
minPerTransaction?: string | undefined;
|
|
19131
19292
|
} | undefined;
|
|
19132
|
-
requiresMultisig?: boolean | undefined;
|
|
19133
19293
|
} | undefined;
|
|
19134
|
-
|
|
19294
|
+
burn?: {
|
|
19135
19295
|
enabled: boolean;
|
|
19136
19296
|
controller?: "owner" | "dao" | undefined;
|
|
19137
19297
|
requiresApproval?: boolean | undefined;
|
|
@@ -19144,8 +19304,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19144
19304
|
cooldownSeconds?: number | undefined;
|
|
19145
19305
|
minPerTransaction?: string | undefined;
|
|
19146
19306
|
} | undefined;
|
|
19307
|
+
allowHolderBurn?: boolean | undefined;
|
|
19147
19308
|
} | undefined;
|
|
19148
|
-
|
|
19309
|
+
freeze?: {
|
|
19149
19310
|
enabled: boolean;
|
|
19150
19311
|
controller?: "owner" | "dao" | undefined;
|
|
19151
19312
|
requiresApproval?: boolean | undefined;
|
|
@@ -19158,6 +19319,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19158
19319
|
cooldownSeconds?: number | undefined;
|
|
19159
19320
|
minPerTransaction?: string | undefined;
|
|
19160
19321
|
} | undefined;
|
|
19322
|
+
requiresMultisig?: boolean | undefined;
|
|
19161
19323
|
} | undefined;
|
|
19162
19324
|
associate?: {
|
|
19163
19325
|
enabled: boolean;
|
|
@@ -19217,21 +19379,21 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19217
19379
|
} | undefined;
|
|
19218
19380
|
};
|
|
19219
19381
|
keys?: {
|
|
19220
|
-
|
|
19382
|
+
pause?: {
|
|
19221
19383
|
threshold?: number | undefined;
|
|
19222
19384
|
enabled?: boolean | undefined;
|
|
19223
19385
|
controller?: "owner" | "dao" | undefined;
|
|
19224
19386
|
requiresApproval?: boolean | undefined;
|
|
19225
19387
|
security?: "partial" | "full" | undefined;
|
|
19226
19388
|
} | undefined;
|
|
19227
|
-
|
|
19389
|
+
wipe?: {
|
|
19228
19390
|
threshold?: number | undefined;
|
|
19229
19391
|
enabled?: boolean | undefined;
|
|
19230
19392
|
controller?: "owner" | "dao" | undefined;
|
|
19231
19393
|
requiresApproval?: boolean | undefined;
|
|
19232
19394
|
security?: "partial" | "full" | undefined;
|
|
19233
19395
|
} | undefined;
|
|
19234
|
-
|
|
19396
|
+
freeze?: {
|
|
19235
19397
|
threshold?: number | undefined;
|
|
19236
19398
|
enabled?: boolean | undefined;
|
|
19237
19399
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -19364,7 +19526,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19364
19526
|
}[] | undefined;
|
|
19365
19527
|
soulbound?: {
|
|
19366
19528
|
enforced: boolean;
|
|
19367
|
-
allowedActions?: ("
|
|
19529
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
19368
19530
|
} | undefined;
|
|
19369
19531
|
invariants?: {
|
|
19370
19532
|
immutableFields: string[];
|
|
@@ -19396,7 +19558,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19396
19558
|
whitelist?: string[] | undefined;
|
|
19397
19559
|
blacklist?: string[] | undefined;
|
|
19398
19560
|
} | undefined;
|
|
19399
|
-
|
|
19561
|
+
pause?: {
|
|
19400
19562
|
enabled: boolean;
|
|
19401
19563
|
controller?: "owner" | "dao" | undefined;
|
|
19402
19564
|
requiresApproval?: boolean | undefined;
|
|
@@ -19409,9 +19571,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19409
19571
|
cooldownSeconds?: number | undefined;
|
|
19410
19572
|
minPerTransaction?: string | undefined;
|
|
19411
19573
|
} | undefined;
|
|
19412
|
-
allowedFields?: string[] | undefined;
|
|
19413
19574
|
} | undefined;
|
|
19414
|
-
|
|
19575
|
+
wipe?: {
|
|
19415
19576
|
enabled: boolean;
|
|
19416
19577
|
controller?: "owner" | "dao" | undefined;
|
|
19417
19578
|
requiresApproval?: boolean | undefined;
|
|
@@ -19425,7 +19586,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19425
19586
|
minPerTransaction?: string | undefined;
|
|
19426
19587
|
} | undefined;
|
|
19427
19588
|
} | undefined;
|
|
19428
|
-
|
|
19589
|
+
update?: {
|
|
19429
19590
|
enabled: boolean;
|
|
19430
19591
|
controller?: "owner" | "dao" | undefined;
|
|
19431
19592
|
requiresApproval?: boolean | undefined;
|
|
@@ -19438,9 +19599,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19438
19599
|
cooldownSeconds?: number | undefined;
|
|
19439
19600
|
minPerTransaction?: string | undefined;
|
|
19440
19601
|
} | undefined;
|
|
19441
|
-
|
|
19602
|
+
allowedFields?: string[] | undefined;
|
|
19442
19603
|
} | undefined;
|
|
19443
|
-
|
|
19604
|
+
mint?: {
|
|
19444
19605
|
enabled: boolean;
|
|
19445
19606
|
controller?: "owner" | "dao" | undefined;
|
|
19446
19607
|
requiresApproval?: boolean | undefined;
|
|
@@ -19453,9 +19614,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19453
19614
|
cooldownSeconds?: number | undefined;
|
|
19454
19615
|
minPerTransaction?: string | undefined;
|
|
19455
19616
|
} | undefined;
|
|
19456
|
-
requiresMultisig?: boolean | undefined;
|
|
19457
19617
|
} | undefined;
|
|
19458
|
-
|
|
19618
|
+
burn?: {
|
|
19459
19619
|
enabled: boolean;
|
|
19460
19620
|
controller?: "owner" | "dao" | undefined;
|
|
19461
19621
|
requiresApproval?: boolean | undefined;
|
|
@@ -19468,8 +19628,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19468
19628
|
cooldownSeconds?: number | undefined;
|
|
19469
19629
|
minPerTransaction?: string | undefined;
|
|
19470
19630
|
} | undefined;
|
|
19631
|
+
allowHolderBurn?: boolean | undefined;
|
|
19471
19632
|
} | undefined;
|
|
19472
|
-
|
|
19633
|
+
freeze?: {
|
|
19473
19634
|
enabled: boolean;
|
|
19474
19635
|
controller?: "owner" | "dao" | undefined;
|
|
19475
19636
|
requiresApproval?: boolean | undefined;
|
|
@@ -19482,6 +19643,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19482
19643
|
cooldownSeconds?: number | undefined;
|
|
19483
19644
|
minPerTransaction?: string | undefined;
|
|
19484
19645
|
} | undefined;
|
|
19646
|
+
requiresMultisig?: boolean | undefined;
|
|
19485
19647
|
} | undefined;
|
|
19486
19648
|
associate?: {
|
|
19487
19649
|
enabled: boolean;
|
|
@@ -19541,21 +19703,21 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19541
19703
|
} | undefined;
|
|
19542
19704
|
};
|
|
19543
19705
|
keys?: {
|
|
19544
|
-
|
|
19706
|
+
pause?: {
|
|
19545
19707
|
threshold?: number | undefined;
|
|
19546
19708
|
enabled?: boolean | undefined;
|
|
19547
19709
|
controller?: "owner" | "dao" | undefined;
|
|
19548
19710
|
requiresApproval?: boolean | undefined;
|
|
19549
19711
|
security?: "partial" | "full" | undefined;
|
|
19550
19712
|
} | undefined;
|
|
19551
|
-
|
|
19713
|
+
wipe?: {
|
|
19552
19714
|
threshold?: number | undefined;
|
|
19553
19715
|
enabled?: boolean | undefined;
|
|
19554
19716
|
controller?: "owner" | "dao" | undefined;
|
|
19555
19717
|
requiresApproval?: boolean | undefined;
|
|
19556
19718
|
security?: "partial" | "full" | undefined;
|
|
19557
19719
|
} | undefined;
|
|
19558
|
-
|
|
19720
|
+
freeze?: {
|
|
19559
19721
|
threshold?: number | undefined;
|
|
19560
19722
|
enabled?: boolean | undefined;
|
|
19561
19723
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -19688,7 +19850,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19688
19850
|
}[] | undefined;
|
|
19689
19851
|
soulbound?: {
|
|
19690
19852
|
enforced: boolean;
|
|
19691
|
-
allowedActions?: ("
|
|
19853
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
19692
19854
|
} | undefined;
|
|
19693
19855
|
invariants?: {
|
|
19694
19856
|
immutableFields: string[];
|
|
@@ -19720,7 +19882,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19720
19882
|
whitelist?: string[] | undefined;
|
|
19721
19883
|
blacklist?: string[] | undefined;
|
|
19722
19884
|
} | undefined;
|
|
19723
|
-
|
|
19885
|
+
pause?: {
|
|
19724
19886
|
enabled: boolean;
|
|
19725
19887
|
controller?: "owner" | "dao" | undefined;
|
|
19726
19888
|
requiresApproval?: boolean | undefined;
|
|
@@ -19733,9 +19895,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19733
19895
|
cooldownSeconds?: number | undefined;
|
|
19734
19896
|
minPerTransaction?: string | undefined;
|
|
19735
19897
|
} | undefined;
|
|
19736
|
-
allowedFields?: string[] | undefined;
|
|
19737
19898
|
} | undefined;
|
|
19738
|
-
|
|
19899
|
+
wipe?: {
|
|
19739
19900
|
enabled: boolean;
|
|
19740
19901
|
controller?: "owner" | "dao" | undefined;
|
|
19741
19902
|
requiresApproval?: boolean | undefined;
|
|
@@ -19749,7 +19910,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19749
19910
|
minPerTransaction?: string | undefined;
|
|
19750
19911
|
} | undefined;
|
|
19751
19912
|
} | undefined;
|
|
19752
|
-
|
|
19913
|
+
update?: {
|
|
19753
19914
|
enabled: boolean;
|
|
19754
19915
|
controller?: "owner" | "dao" | undefined;
|
|
19755
19916
|
requiresApproval?: boolean | undefined;
|
|
@@ -19762,9 +19923,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19762
19923
|
cooldownSeconds?: number | undefined;
|
|
19763
19924
|
minPerTransaction?: string | undefined;
|
|
19764
19925
|
} | undefined;
|
|
19765
|
-
|
|
19926
|
+
allowedFields?: string[] | undefined;
|
|
19766
19927
|
} | undefined;
|
|
19767
|
-
|
|
19928
|
+
mint?: {
|
|
19768
19929
|
enabled: boolean;
|
|
19769
19930
|
controller?: "owner" | "dao" | undefined;
|
|
19770
19931
|
requiresApproval?: boolean | undefined;
|
|
@@ -19777,9 +19938,8 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19777
19938
|
cooldownSeconds?: number | undefined;
|
|
19778
19939
|
minPerTransaction?: string | undefined;
|
|
19779
19940
|
} | undefined;
|
|
19780
|
-
requiresMultisig?: boolean | undefined;
|
|
19781
19941
|
} | undefined;
|
|
19782
|
-
|
|
19942
|
+
burn?: {
|
|
19783
19943
|
enabled: boolean;
|
|
19784
19944
|
controller?: "owner" | "dao" | undefined;
|
|
19785
19945
|
requiresApproval?: boolean | undefined;
|
|
@@ -19792,8 +19952,9 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19792
19952
|
cooldownSeconds?: number | undefined;
|
|
19793
19953
|
minPerTransaction?: string | undefined;
|
|
19794
19954
|
} | undefined;
|
|
19955
|
+
allowHolderBurn?: boolean | undefined;
|
|
19795
19956
|
} | undefined;
|
|
19796
|
-
|
|
19957
|
+
freeze?: {
|
|
19797
19958
|
enabled: boolean;
|
|
19798
19959
|
controller?: "owner" | "dao" | undefined;
|
|
19799
19960
|
requiresApproval?: boolean | undefined;
|
|
@@ -19806,6 +19967,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19806
19967
|
cooldownSeconds?: number | undefined;
|
|
19807
19968
|
minPerTransaction?: string | undefined;
|
|
19808
19969
|
} | undefined;
|
|
19970
|
+
requiresMultisig?: boolean | undefined;
|
|
19809
19971
|
} | undefined;
|
|
19810
19972
|
associate?: {
|
|
19811
19973
|
enabled: boolean;
|
|
@@ -19865,21 +20027,21 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
19865
20027
|
} | undefined;
|
|
19866
20028
|
};
|
|
19867
20029
|
keys?: {
|
|
19868
|
-
|
|
20030
|
+
pause?: {
|
|
19869
20031
|
threshold?: number | undefined;
|
|
19870
20032
|
enabled?: boolean | undefined;
|
|
19871
20033
|
controller?: "owner" | "dao" | undefined;
|
|
19872
20034
|
requiresApproval?: boolean | undefined;
|
|
19873
20035
|
security?: "partial" | "full" | undefined;
|
|
19874
20036
|
} | undefined;
|
|
19875
|
-
|
|
20037
|
+
wipe?: {
|
|
19876
20038
|
threshold?: number | undefined;
|
|
19877
20039
|
enabled?: boolean | undefined;
|
|
19878
20040
|
controller?: "owner" | "dao" | undefined;
|
|
19879
20041
|
requiresApproval?: boolean | undefined;
|
|
19880
20042
|
security?: "partial" | "full" | undefined;
|
|
19881
20043
|
} | undefined;
|
|
19882
|
-
|
|
20044
|
+
freeze?: {
|
|
19883
20045
|
threshold?: number | undefined;
|
|
19884
20046
|
enabled?: boolean | undefined;
|
|
19885
20047
|
controller?: "owner" | "dao" | undefined;
|
|
@@ -20012,7 +20174,7 @@ export declare const ValidatorRulesSchema: z.ZodUnion<[
|
|
|
20012
20174
|
}[] | undefined;
|
|
20013
20175
|
soulbound?: {
|
|
20014
20176
|
enforced: boolean;
|
|
20015
|
-
allowedActions?: ("
|
|
20177
|
+
allowedActions?: ("wipe" | "mint" | "burn")[] | undefined;
|
|
20016
20178
|
} | undefined;
|
|
20017
20179
|
invariants?: {
|
|
20018
20180
|
immutableFields: string[];
|
|
@@ -25268,7 +25430,15 @@ export type DeprecateRuleResponse = {
|
|
|
25268
25430
|
deprecated: true;
|
|
25269
25431
|
consensusTimestamp: string;
|
|
25270
25432
|
};
|
|
25271
|
-
export
|
|
25433
|
+
export interface IRulesClient {
|
|
25434
|
+
publish(rule: ValidatorRules): Promise<PublishRuleResponse>;
|
|
25435
|
+
get(consensusTimestamp: string): Promise<PublishedRule>;
|
|
25436
|
+
listByOwner(filter?: ListRulesFilter): Promise<ListRulesResponse>;
|
|
25437
|
+
simulate(params: SimulateRuleRequest): Promise<ValidationResult>;
|
|
25438
|
+
getVersionHistory(consensusTimestamp: string): Promise<VersionHistoryResponse>;
|
|
25439
|
+
deprecate(consensusTimestamp: string): Promise<DeprecateRuleResponse>;
|
|
25440
|
+
}
|
|
25441
|
+
export declare class RulesClient implements IRulesClient {
|
|
25272
25442
|
private readonly http;
|
|
25273
25443
|
constructor(http: HttpClient);
|
|
25274
25444
|
publish(rule: ValidatorRules): Promise<PublishRuleResponse>;
|
|
@@ -25278,167 +25448,57 @@ export declare class RulesClient {
|
|
|
25278
25448
|
getVersionHistory(consensusTimestamp: string): Promise<VersionHistoryResponse>;
|
|
25279
25449
|
deprecate(consensusTimestamp: string): Promise<DeprecateRuleResponse>;
|
|
25280
25450
|
}
|
|
25281
|
-
|
|
25282
|
-
|
|
25283
|
-
|
|
25284
|
-
|
|
25285
|
-
|
|
25286
|
-
|
|
25287
|
-
|
|
25288
|
-
|
|
25289
|
-
|
|
25290
|
-
|
|
25291
|
-
|
|
25292
|
-
|
|
25293
|
-
|
|
25294
|
-
|
|
25295
|
-
|
|
25296
|
-
|
|
25297
|
-
|
|
25298
|
-
|
|
25299
|
-
|
|
25300
|
-
|
|
25301
|
-
|
|
25302
|
-
|
|
25303
|
-
|
|
25304
|
-
|
|
25305
|
-
|
|
25306
|
-
|
|
25307
|
-
|
|
25308
|
-
|
|
25309
|
-
|
|
25310
|
-
|
|
25311
|
-
|
|
25312
|
-
|
|
25313
|
-
|
|
25314
|
-
|
|
25315
|
-
|
|
25316
|
-
}
|
|
25317
|
-
|
|
25318
|
-
|
|
25319
|
-
|
|
25320
|
-
|
|
25321
|
-
|
|
25322
|
-
|
|
25323
|
-
|
|
25324
|
-
|
|
25325
|
-
|
|
25326
|
-
|
|
25327
|
-
|
|
25328
|
-
name: string;
|
|
25329
|
-
agentType?: string;
|
|
25330
|
-
securityMode?: EntitySecurityMode;
|
|
25331
|
-
payerAccountId?: string;
|
|
25332
|
-
rulesConfig?: Record<string, unknown>;
|
|
25333
|
-
capabilities?: string[];
|
|
25334
|
-
fundWith?: FundWith;
|
|
25335
|
-
};
|
|
25336
|
-
export type EntityCreationResult = {
|
|
25337
|
-
entityId: string;
|
|
25338
|
-
ruleRef: RuleRef;
|
|
25339
|
-
chainAccounts: Record<string, string>;
|
|
25340
|
-
transactionId?: string;
|
|
25341
|
-
agentId?: string;
|
|
25342
|
-
status?: string;
|
|
25343
|
-
};
|
|
25344
|
-
export type EntityInfo = {
|
|
25345
|
-
entityId: string;
|
|
25346
|
-
entityType: EntityType$1;
|
|
25347
|
-
ownerWallet: string;
|
|
25348
|
-
ruleRef: RuleRef;
|
|
25349
|
-
chainAccounts: Record<string, string>;
|
|
25350
|
-
createdAt: string;
|
|
25351
|
-
};
|
|
25352
|
-
export type ListEntitiesFilter = {
|
|
25353
|
-
type?: EntityType$1;
|
|
25354
|
-
};
|
|
25355
|
-
export type ListEntitiesResponse = {
|
|
25356
|
-
entities: EntityInfo[];
|
|
25357
|
-
count: number;
|
|
25358
|
-
};
|
|
25359
|
-
export type LaunchpadEntityRequest = {
|
|
25360
|
-
chain: ChainType;
|
|
25361
|
-
name: string;
|
|
25362
|
-
symbol: string;
|
|
25363
|
-
decimals?: number;
|
|
25364
|
-
launchpad: {
|
|
25365
|
-
launchTokenId?: string;
|
|
25366
|
-
paymentTokenId: string;
|
|
25367
|
-
paymentTokenDecimals?: number;
|
|
25368
|
-
totalTokensForSale: string;
|
|
25369
|
-
pricePerToken: string;
|
|
25370
|
-
hardCap: string;
|
|
25371
|
-
softCap: string;
|
|
25372
|
-
publicWindow: {
|
|
25373
|
-
from: number;
|
|
25374
|
-
to: number;
|
|
25375
|
-
};
|
|
25376
|
-
treasuryAccount: string;
|
|
25377
|
-
refundOnFailure?: boolean;
|
|
25378
|
-
overflowPolicy?: "first_come" | "proportional" | "lottery";
|
|
25379
|
-
};
|
|
25380
|
-
};
|
|
25381
|
-
export type LaunchpadEntityResult = {
|
|
25382
|
-
ruleRef: RuleRef;
|
|
25383
|
-
entityId: string;
|
|
25384
|
-
tokenId: string;
|
|
25385
|
-
chainAccounts: Record<string, string>;
|
|
25386
|
-
};
|
|
25387
|
-
export type TransferEntityRequest = {
|
|
25388
|
-
chain: ChainType;
|
|
25389
|
-
to: string;
|
|
25390
|
-
amount: string;
|
|
25391
|
-
tokenId?: string;
|
|
25392
|
-
memo?: string;
|
|
25393
|
-
};
|
|
25394
|
-
export type WithdrawEntityRequest = {
|
|
25395
|
-
chain: ChainType;
|
|
25396
|
-
destination: string;
|
|
25397
|
-
amount: string;
|
|
25398
|
-
tokenId?: string;
|
|
25399
|
-
memo?: string;
|
|
25400
|
-
};
|
|
25401
|
-
export type MintEntityRequest = {
|
|
25402
|
-
chain: ChainType;
|
|
25403
|
-
tokenId: string;
|
|
25404
|
-
amount: string;
|
|
25405
|
-
memo?: string;
|
|
25406
|
-
};
|
|
25407
|
-
export type BurnEntityRequest = {
|
|
25408
|
-
chain: ChainType;
|
|
25409
|
-
tokenId: string;
|
|
25410
|
-
amount: string;
|
|
25411
|
-
memo?: string;
|
|
25412
|
-
};
|
|
25413
|
-
export type ComplianceAction = "pause" | "restrict" | "wipe";
|
|
25414
|
-
export type ComplianceEntityRequest = {
|
|
25415
|
-
action: ComplianceAction;
|
|
25416
|
-
chain: ChainType;
|
|
25417
|
-
tokenId: string;
|
|
25418
|
-
account?: string;
|
|
25419
|
-
amount?: string;
|
|
25420
|
-
memo?: string;
|
|
25421
|
-
};
|
|
25422
|
-
export type TrustlineEntityRequest = {
|
|
25423
|
-
chain: ChainType;
|
|
25424
|
-
currency: string;
|
|
25425
|
-
issuerAddress: string;
|
|
25426
|
-
limit?: string;
|
|
25427
|
-
};
|
|
25428
|
-
export type PreparedEntityTransactionResult = {
|
|
25429
|
-
chain: string;
|
|
25430
|
-
transactionId: string;
|
|
25431
|
-
transactionBytes: string;
|
|
25432
|
-
transactionType?: string;
|
|
25433
|
-
payerAccountId?: string;
|
|
25434
|
-
expiresAt?: string;
|
|
25435
|
-
metadata?: Record<string, unknown>;
|
|
25436
|
-
};
|
|
25437
|
-
export declare class EntitiesClient {
|
|
25451
|
+
export interface IEntitiesClient {
|
|
25452
|
+
prepareCreateToken(req: Omit<CreateTokenRequest, "fundWith">): Promise<PreparedEntityCreation>;
|
|
25453
|
+
executeCreateToken(req: {
|
|
25454
|
+
entityId: string;
|
|
25455
|
+
chain: ChainType;
|
|
25456
|
+
securityMode?: EntitySecurityMode;
|
|
25457
|
+
createTxId?: string;
|
|
25458
|
+
signedFundingBlob?: string;
|
|
25459
|
+
}): Promise<EntityCreationResult>;
|
|
25460
|
+
createToken(req: CreateTokenRequest): Promise<EntityCreationResult>;
|
|
25461
|
+
prepareCreateAccount(req: Omit<CreateAccountRequest, "fundWith">): Promise<PreparedEntityCreation>;
|
|
25462
|
+
executeCreateAccount(req: {
|
|
25463
|
+
entityId: string;
|
|
25464
|
+
chain: ChainType;
|
|
25465
|
+
securityMode?: EntitySecurityMode;
|
|
25466
|
+
signedFundingBlob?: string;
|
|
25467
|
+
createTxId?: string;
|
|
25468
|
+
}): Promise<EntityCreationResult>;
|
|
25469
|
+
createAccount(req: CreateAccountRequest): Promise<EntityCreationResult>;
|
|
25470
|
+
prepareCreateTopic(req: Omit<CreateTopicRequest, "fundWith">): Promise<PreparedEntityCreation>;
|
|
25471
|
+
executeCreateTopic(req: {
|
|
25472
|
+
entityId: string;
|
|
25473
|
+
chain: ChainType;
|
|
25474
|
+
createTxId: string;
|
|
25475
|
+
securityMode?: EntitySecurityMode;
|
|
25476
|
+
}): Promise<EntityCreationResult>;
|
|
25477
|
+
createTopic(req: CreateTopicRequest): Promise<EntityCreationResult>;
|
|
25478
|
+
createAgent(req: CreateAgentRequest): Promise<EntityCreationResult>;
|
|
25479
|
+
prepareCreateAgent(req: Omit<CreateAgentRequest, "fundWith">): Promise<PreparedEntityCreation>;
|
|
25480
|
+
executeCreateAgent(req: {
|
|
25481
|
+
entityId: string;
|
|
25482
|
+
chain: ChainType;
|
|
25483
|
+
securityMode?: EntitySecurityMode;
|
|
25484
|
+
signedFundingBlob?: string;
|
|
25485
|
+
createTxId?: string;
|
|
25486
|
+
}): Promise<EntityCreationResult>;
|
|
25487
|
+
launchpad(req: LaunchpadEntityRequest): Promise<LaunchpadEntityResult>;
|
|
25488
|
+
get(entityId: string): Promise<EntityInfo>;
|
|
25489
|
+
listByOwner(filter?: ListEntitiesFilter): Promise<ListEntitiesResponse>;
|
|
25490
|
+
transfer(entityId: string, body: TransferEntityRequest, opts?: HttpCallOptions): Promise<PreparedEntityTransactionResult>;
|
|
25491
|
+
withdraw(entityId: string, body: WithdrawEntityRequest, opts?: HttpCallOptions): Promise<PreparedEntityTransactionResult>;
|
|
25492
|
+
mint(entityId: string, body: MintEntityRequest, opts?: HttpCallOptions): Promise<PreparedEntityTransactionResult>;
|
|
25493
|
+
burn(entityId: string, body: BurnEntityRequest, opts?: HttpCallOptions): Promise<PreparedEntityTransactionResult>;
|
|
25494
|
+
compliance(entityId: string, body: ComplianceEntityRequest, opts?: HttpCallOptions): Promise<PreparedEntityTransactionResult>;
|
|
25495
|
+
trustline(entityId: string, body: TrustlineEntityRequest, opts?: HttpCallOptions): Promise<PreparedEntityTransactionResult>;
|
|
25496
|
+
}
|
|
25497
|
+
export declare class EntitiesClient implements IEntitiesClient {
|
|
25438
25498
|
private readonly http;
|
|
25439
25499
|
constructor(http: HttpClient);
|
|
25440
25500
|
private static readonly PAYER_FUNDED_TOKEN_CHAINS;
|
|
25441
|
-
prepareCreateToken(req: Omit<CreateTokenRequest
|
|
25501
|
+
prepareCreateToken(req: Omit<CreateTokenRequest, "fundWith">): Promise<PreparedEntityCreation>;
|
|
25442
25502
|
executeCreateToken(req: {
|
|
25443
25503
|
entityId: string;
|
|
25444
25504
|
chain: ChainType;
|
|
@@ -25446,8 +25506,8 @@ export declare class EntitiesClient {
|
|
|
25446
25506
|
createTxId?: string;
|
|
25447
25507
|
signedFundingBlob?: string;
|
|
25448
25508
|
}): Promise<EntityCreationResult>;
|
|
25449
|
-
createToken(req: CreateTokenRequest
|
|
25450
|
-
prepareCreateAccount(req: Omit<CreateAccountRequest
|
|
25509
|
+
createToken(req: CreateTokenRequest): Promise<EntityCreationResult>;
|
|
25510
|
+
prepareCreateAccount(req: Omit<CreateAccountRequest, "fundWith">): Promise<PreparedEntityCreation>;
|
|
25451
25511
|
executeCreateAccount(req: {
|
|
25452
25512
|
entityId: string;
|
|
25453
25513
|
chain: ChainType;
|
|
@@ -25457,7 +25517,7 @@ export declare class EntitiesClient {
|
|
|
25457
25517
|
}): Promise<EntityCreationResult>;
|
|
25458
25518
|
private static readonly PAYER_FUNDED_CREATE_CHAINS;
|
|
25459
25519
|
private static readonly FUNDING_BLOB_RELAY_CHAINS;
|
|
25460
|
-
createAccount(req: CreateAccountRequest
|
|
25520
|
+
createAccount(req: CreateAccountRequest): Promise<EntityCreationResult>;
|
|
25461
25521
|
prepareCreateTopic(req: Omit<CreateTopicRequest, "fundWith">): Promise<PreparedEntityCreation>;
|
|
25462
25522
|
executeCreateTopic(req: {
|
|
25463
25523
|
entityId: string;
|
|
@@ -25510,7 +25570,29 @@ export type BaasConnectToClusterConfig = ({
|
|
|
25510
25570
|
bootstrap: string[];
|
|
25511
25571
|
network?: never;
|
|
25512
25572
|
} & BaasConnectToClusterShared);
|
|
25513
|
-
export
|
|
25573
|
+
export interface IBaasClient {
|
|
25574
|
+
readonly db: DatabaseClient;
|
|
25575
|
+
readonly storage: StorageClient;
|
|
25576
|
+
readonly functions: FunctionsClient;
|
|
25577
|
+
readonly messaging: MessagingClient;
|
|
25578
|
+
readonly deployment: DeploymentClient;
|
|
25579
|
+
readonly agents: AgentsClient;
|
|
25580
|
+
readonly customerSession: CustomerSessionClient;
|
|
25581
|
+
readonly rules: RulesClient;
|
|
25582
|
+
readonly entities: EntitiesClient;
|
|
25583
|
+
authenticate(options: AuthenticateOptions): Promise<BaasAuthResult>;
|
|
25584
|
+
validateSession(): Promise<BaasSessionInfo>;
|
|
25585
|
+
logout(): Promise<void>;
|
|
25586
|
+
isAuthenticated(): boolean;
|
|
25587
|
+
getAppId(): string | undefined;
|
|
25588
|
+
setAppId(appId: string): void;
|
|
25589
|
+
getHostUrl(): string;
|
|
25590
|
+
getHttpHealth(): {
|
|
25591
|
+
breaker: CircuitBreakerSnapshot | null;
|
|
25592
|
+
lastError?: Error;
|
|
25593
|
+
};
|
|
25594
|
+
}
|
|
25595
|
+
export declare class BaasClient implements IBaasClient {
|
|
25514
25596
|
private readonly hostUrl;
|
|
25515
25597
|
private readonly pathPrefix;
|
|
25516
25598
|
private appId;
|
|
@@ -25747,7 +25829,7 @@ declare namespace personhood {
|
|
|
25747
25829
|
export { PERSONHOOD_VERIFIER_NOT_CONFIGURED, PersonhoodAttestationMethod, PersonhoodCert, PersonhoodClient, PersonhoodProof, PersonhoodVerifyParams, isPersonhoodVerifierNotConfigured };
|
|
25748
25830
|
}
|
|
25749
25831
|
declare namespace baas {
|
|
25750
|
-
export { AgentBalance, AgentCertification, AgentEvent, AgentFundRequest, AgentInfo, AgentOperation, AgentPendingApprovalResponse, AgentPreparedTransactionResponse, AgentRegisterRequest, AgentRules, AgentRulesValidationResult, AgentStatus, AgentTradeRequest, AgentWithdrawRequest, AgentsClient, AuthenticateOptions, BaasAppListResponse, BaasAuthConfig, BaasAuthResult, BaasChallengeRequest, BaasChallengeResponse, BaasChannelConfig, BaasClient, BaasClientConfig, BaasConnectToClusterConfig, BaasDeleteResult, BaasDeployRequest, BaasDeployResponse, BaasDocument, BaasEndpoints, BaasError, BaasErrorDetails, BaasErrorResponse, BaasFileInfo, BaasFileMetadata, BaasFindResult, BaasFunctionCode, BaasFunctionDeployRequest, BaasFunctionDeployResult, BaasFunctionEvalRequest, BaasFunctionInfo, BaasFunctionLog, BaasFunctionLogOptions, BaasFunctionResources, BaasFunctionResult, BaasFunctionRuntime, BaasHistoryOptions, BaasInitRequest, BaasInitResponse, BaasInsertResult, BaasMerkleProof, BaasMessage, BaasPresenceInfo, BaasPresenceMember, BaasPublishResult, BaasQueryOptions, BaasReissuePushCredentialsResponse, BaasRevokeKekResponse, BaasRollbackRequest, BaasRotateKekResponse, BaasRuntimeStatus, BaasService, BaasSessionInfo, BaasSetWebhookResponse, BaasSignedCode, BaasStateTransition, BaasStorageUsage, BaasSupportedChain, BaasTriggerType, BaasUpdateResult, BaasUploadFrontendResponse, BaasUploadResult, BaasVerifyRequest, BurnEntityRequest, ChannelSubscription, ComplianceAction, ComplianceEntityRequest, CreateAccountRequest
|
|
25832
|
+
export { AgentBalance, AgentCertification, AgentEvent, AgentFundRequest, AgentInfo, AgentOperation, AgentPendingApprovalResponse, AgentPreparedTransactionResponse, AgentRegisterRequest, AgentRules, AgentRulesValidationResult, AgentStatus, AgentTradeRequest, AgentWithdrawRequest, AgentsClient, AuthenticateOptions, BaasAppListResponse, BaasAuthConfig, BaasAuthResult, BaasChallengeRequest, BaasChallengeResponse, BaasChannelConfig, BaasClient, BaasClientConfig, BaasConnectToClusterConfig, BaasDeleteResult, BaasDeployRequest, BaasDeployResponse, BaasDocument, BaasEndpoints, BaasError, BaasErrorDetails, BaasErrorResponse, BaasFileInfo, BaasFileMetadata, BaasFindResult, BaasFunctionCode, BaasFunctionDeployRequest, BaasFunctionDeployResult, BaasFunctionEvalRequest, BaasFunctionInfo, BaasFunctionLog, BaasFunctionLogOptions, BaasFunctionResources, BaasFunctionResult, BaasFunctionRuntime, BaasHistoryOptions, BaasInitRequest, BaasInitResponse, BaasInsertResult, BaasMerkleProof, BaasMessage, BaasPresenceInfo, BaasPresenceMember, BaasPublishResult, BaasQueryOptions, BaasReissuePushCredentialsResponse, BaasRevokeKekResponse, BaasRollbackRequest, BaasRotateKekResponse, BaasRuntimeStatus, BaasService, BaasSessionInfo, BaasSetWebhookResponse, BaasSignedCode, BaasStateTransition, BaasStorageUsage, BaasSupportedChain, BaasTriggerType, BaasUpdateResult, BaasUploadFrontendResponse, BaasUploadResult, BaasVerifyRequest, BurnEntityRequest, ChannelSubscription, ComplianceAction, ComplianceEntityRequest, CreateAccountRequest, CreateAgentRequest, CreateTokenRequest, CreateTopicRequest, DatabaseClient, DatabaseStatsResponse, DbComparisonOperator, DbDocument, DbQuery, DeployedApp, DeployedAppInfo, DeployedAppLimits, DeployedAppStatus, DeployedAppUsage, DeploymentClient, DeprecateRuleResponse, DocumentProofResponse, EntitiesClient, EntityCreationResult, EntityInfo, EntitySecurityMode, EntityType$1 as BaasEntityType, FunctionsClient, FundWith, IBaasClient, IEntitiesClient, IRulesClient, LaunchpadEntityRequest, LaunchpadEntityResult, ListEntitiesFilter, ListEntitiesResponse, ListRulesFilter, ListRulesResponse, MessageHandler, MessagingClient, MintEntityRequest, PreparedEntityCreation, PreparedEntityTransactionResult, PublishRuleResponse, RulesClient, SimulateRuleRequest, StateRootResponse, StateTransitionsResponse, StorageClient, TransferEntityRequest, TrustlineEntityRequest, ValidationResult, VersionHistoryResponse, WithdrawEntityRequest, isAgentFundPending, validateAgentRules };
|
|
25751
25833
|
}
|
|
25752
25834
|
declare namespace pqcVerify {
|
|
25753
25835
|
export { FetchRegistryOptions, PqcCertV1, PqcCertV1Schema, PqcCertV1Signer, ValidatorRegistrySnapshot, VerifyResult, fetchRegistrySnapshot, parsePqcCert, verifyPqcAttestation };
|