@farcaster/hub-web 0.7.5 → 0.7.6
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/dist/index.d.ts +781 -408
- package/dist/index.js +75 -26
- package/dist/index.mjs +75 -26
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
@@ -459,6 +459,11 @@ declare enum ReactionType {
|
|
459
459
|
/** RECAST - Share target cast to the user's audience */
|
460
460
|
RECAST = 2
|
461
461
|
}
|
462
|
+
/** Type of Protocol to disambiguate verification addresses */
|
463
|
+
declare enum Protocol {
|
464
|
+
ETHEREUM = 0,
|
465
|
+
SOLANA = 1
|
466
|
+
}
|
462
467
|
/**
|
463
468
|
* A Message is a delta operation on the Farcaster network. The message protobuf is an envelope
|
464
469
|
* that wraps a MessageData object and contains a hash and signature which can verify its authenticity.
|
@@ -519,15 +524,17 @@ declare const Message: {
|
|
519
524
|
} | undefined;
|
520
525
|
targetUrl?: string | undefined;
|
521
526
|
} | undefined;
|
522
|
-
|
527
|
+
verificationAddAddressBody?: {
|
523
528
|
address?: Uint8Array | undefined;
|
524
|
-
|
529
|
+
claimSignature?: Uint8Array | undefined;
|
525
530
|
blockHash?: Uint8Array | undefined;
|
526
531
|
verificationType?: number | undefined;
|
527
532
|
chainId?: number | undefined;
|
533
|
+
protocol?: Protocol | undefined;
|
528
534
|
} | undefined;
|
529
535
|
verificationRemoveBody?: {
|
530
536
|
address?: Uint8Array | undefined;
|
537
|
+
protocol?: Protocol | undefined;
|
531
538
|
} | undefined;
|
532
539
|
userDataBody?: {
|
533
540
|
type?: UserDataType | undefined;
|
@@ -597,15 +604,17 @@ declare const Message: {
|
|
597
604
|
} | undefined;
|
598
605
|
targetUrl?: string | undefined;
|
599
606
|
} | undefined;
|
600
|
-
|
607
|
+
verificationAddAddressBody?: {
|
601
608
|
address?: Uint8Array | undefined;
|
602
|
-
|
609
|
+
claimSignature?: Uint8Array | undefined;
|
603
610
|
blockHash?: Uint8Array | undefined;
|
604
611
|
verificationType?: number | undefined;
|
605
612
|
chainId?: number | undefined;
|
613
|
+
protocol?: Protocol | undefined;
|
606
614
|
} | undefined;
|
607
615
|
verificationRemoveBody?: {
|
608
616
|
address?: Uint8Array | undefined;
|
617
|
+
protocol?: Protocol | undefined;
|
609
618
|
} | undefined;
|
610
619
|
userDataBody?: {
|
611
620
|
type?: UserDataType | undefined;
|
@@ -720,24 +729,28 @@ declare const Message: {
|
|
720
729
|
} & { [K_9 in Exclude<keyof I["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
721
730
|
targetUrl?: string | undefined;
|
722
731
|
} & { [K_10 in Exclude<keyof I["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
723
|
-
|
732
|
+
verificationAddAddressBody?: ({
|
724
733
|
address?: Uint8Array | undefined;
|
725
|
-
|
734
|
+
claimSignature?: Uint8Array | undefined;
|
726
735
|
blockHash?: Uint8Array | undefined;
|
727
736
|
verificationType?: number | undefined;
|
728
737
|
chainId?: number | undefined;
|
738
|
+
protocol?: Protocol | undefined;
|
729
739
|
} & {
|
730
740
|
address?: Uint8Array | undefined;
|
731
|
-
|
741
|
+
claimSignature?: Uint8Array | undefined;
|
732
742
|
blockHash?: Uint8Array | undefined;
|
733
743
|
verificationType?: number | undefined;
|
734
744
|
chainId?: number | undefined;
|
735
|
-
|
745
|
+
protocol?: Protocol | undefined;
|
746
|
+
} & { [K_11 in Exclude<keyof I["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
736
747
|
verificationRemoveBody?: ({
|
737
748
|
address?: Uint8Array | undefined;
|
749
|
+
protocol?: Protocol | undefined;
|
738
750
|
} & {
|
739
751
|
address?: Uint8Array | undefined;
|
740
|
-
|
752
|
+
protocol?: Protocol | undefined;
|
753
|
+
} & { [K_12 in Exclude<keyof I["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
741
754
|
userDataBody?: ({
|
742
755
|
type?: UserDataType | undefined;
|
743
756
|
value?: string | undefined;
|
@@ -832,15 +845,17 @@ declare const Message: {
|
|
832
845
|
} | undefined;
|
833
846
|
targetUrl?: string | undefined;
|
834
847
|
} | undefined;
|
835
|
-
|
848
|
+
verificationAddAddressBody?: {
|
836
849
|
address?: Uint8Array | undefined;
|
837
|
-
|
850
|
+
claimSignature?: Uint8Array | undefined;
|
838
851
|
blockHash?: Uint8Array | undefined;
|
839
852
|
verificationType?: number | undefined;
|
840
853
|
chainId?: number | undefined;
|
854
|
+
protocol?: Protocol | undefined;
|
841
855
|
} | undefined;
|
842
856
|
verificationRemoveBody?: {
|
843
857
|
address?: Uint8Array | undefined;
|
858
|
+
protocol?: Protocol | undefined;
|
844
859
|
} | undefined;
|
845
860
|
userDataBody?: {
|
846
861
|
type?: UserDataType | undefined;
|
@@ -910,15 +925,17 @@ declare const Message: {
|
|
910
925
|
} | undefined;
|
911
926
|
targetUrl?: string | undefined;
|
912
927
|
} | undefined;
|
913
|
-
|
928
|
+
verificationAddAddressBody?: {
|
914
929
|
address?: Uint8Array | undefined;
|
915
|
-
|
930
|
+
claimSignature?: Uint8Array | undefined;
|
916
931
|
blockHash?: Uint8Array | undefined;
|
917
932
|
verificationType?: number | undefined;
|
918
933
|
chainId?: number | undefined;
|
934
|
+
protocol?: Protocol | undefined;
|
919
935
|
} | undefined;
|
920
936
|
verificationRemoveBody?: {
|
921
937
|
address?: Uint8Array | undefined;
|
938
|
+
protocol?: Protocol | undefined;
|
922
939
|
} | undefined;
|
923
940
|
userDataBody?: {
|
924
941
|
type?: UserDataType | undefined;
|
@@ -1033,24 +1050,28 @@ declare const Message: {
|
|
1033
1050
|
} & { [K_29 in Exclude<keyof I_1["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
1034
1051
|
targetUrl?: string | undefined;
|
1035
1052
|
} & { [K_30 in Exclude<keyof I_1["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
1036
|
-
|
1053
|
+
verificationAddAddressBody?: ({
|
1037
1054
|
address?: Uint8Array | undefined;
|
1038
|
-
|
1055
|
+
claimSignature?: Uint8Array | undefined;
|
1039
1056
|
blockHash?: Uint8Array | undefined;
|
1040
1057
|
verificationType?: number | undefined;
|
1041
1058
|
chainId?: number | undefined;
|
1059
|
+
protocol?: Protocol | undefined;
|
1042
1060
|
} & {
|
1043
1061
|
address?: Uint8Array | undefined;
|
1044
|
-
|
1062
|
+
claimSignature?: Uint8Array | undefined;
|
1045
1063
|
blockHash?: Uint8Array | undefined;
|
1046
1064
|
verificationType?: number | undefined;
|
1047
1065
|
chainId?: number | undefined;
|
1048
|
-
|
1066
|
+
protocol?: Protocol | undefined;
|
1067
|
+
} & { [K_31 in Exclude<keyof I_1["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
1049
1068
|
verificationRemoveBody?: ({
|
1050
1069
|
address?: Uint8Array | undefined;
|
1070
|
+
protocol?: Protocol | undefined;
|
1051
1071
|
} & {
|
1052
1072
|
address?: Uint8Array | undefined;
|
1053
|
-
|
1073
|
+
protocol?: Protocol | undefined;
|
1074
|
+
} & { [K_32 in Exclude<keyof I_1["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
1054
1075
|
userDataBody?: ({
|
1055
1076
|
type?: UserDataType | undefined;
|
1056
1077
|
value?: string | undefined;
|
@@ -1127,7 +1148,7 @@ interface MessageData {
|
|
1127
1148
|
castAddBody?: CastAddBody | undefined;
|
1128
1149
|
castRemoveBody?: CastRemoveBody | undefined;
|
1129
1150
|
reactionBody?: ReactionBody | undefined;
|
1130
|
-
|
1151
|
+
verificationAddAddressBody?: VerificationAddAddressBody | undefined;
|
1131
1152
|
verificationRemoveBody?: VerificationRemoveBody | undefined;
|
1132
1153
|
/** SignerAddBody signer_add_body = 11; // Deprecated */
|
1133
1154
|
userDataBody?: UserDataBody | undefined;
|
@@ -1175,15 +1196,17 @@ declare const MessageData: {
|
|
1175
1196
|
} | undefined;
|
1176
1197
|
targetUrl?: string | undefined;
|
1177
1198
|
} | undefined;
|
1178
|
-
|
1199
|
+
verificationAddAddressBody?: {
|
1179
1200
|
address?: Uint8Array | undefined;
|
1180
|
-
|
1201
|
+
claimSignature?: Uint8Array | undefined;
|
1181
1202
|
blockHash?: Uint8Array | undefined;
|
1182
1203
|
verificationType?: number | undefined;
|
1183
1204
|
chainId?: number | undefined;
|
1205
|
+
protocol?: Protocol | undefined;
|
1184
1206
|
} | undefined;
|
1185
1207
|
verificationRemoveBody?: {
|
1186
1208
|
address?: Uint8Array | undefined;
|
1209
|
+
protocol?: Protocol | undefined;
|
1187
1210
|
} | undefined;
|
1188
1211
|
userDataBody?: {
|
1189
1212
|
type?: UserDataType | undefined;
|
@@ -1298,24 +1321,28 @@ declare const MessageData: {
|
|
1298
1321
|
} & { [K_9 in Exclude<keyof I["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
1299
1322
|
targetUrl?: string | undefined;
|
1300
1323
|
} & { [K_10 in Exclude<keyof I["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
1301
|
-
|
1324
|
+
verificationAddAddressBody?: ({
|
1302
1325
|
address?: Uint8Array | undefined;
|
1303
|
-
|
1326
|
+
claimSignature?: Uint8Array | undefined;
|
1304
1327
|
blockHash?: Uint8Array | undefined;
|
1305
1328
|
verificationType?: number | undefined;
|
1306
1329
|
chainId?: number | undefined;
|
1330
|
+
protocol?: Protocol | undefined;
|
1307
1331
|
} & {
|
1308
1332
|
address?: Uint8Array | undefined;
|
1309
|
-
|
1333
|
+
claimSignature?: Uint8Array | undefined;
|
1310
1334
|
blockHash?: Uint8Array | undefined;
|
1311
1335
|
verificationType?: number | undefined;
|
1312
1336
|
chainId?: number | undefined;
|
1313
|
-
|
1337
|
+
protocol?: Protocol | undefined;
|
1338
|
+
} & { [K_11 in Exclude<keyof I["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
1314
1339
|
verificationRemoveBody?: ({
|
1315
1340
|
address?: Uint8Array | undefined;
|
1341
|
+
protocol?: Protocol | undefined;
|
1316
1342
|
} & {
|
1317
1343
|
address?: Uint8Array | undefined;
|
1318
|
-
|
1344
|
+
protocol?: Protocol | undefined;
|
1345
|
+
} & { [K_12 in Exclude<keyof I["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
1319
1346
|
userDataBody?: ({
|
1320
1347
|
type?: UserDataType | undefined;
|
1321
1348
|
value?: string | undefined;
|
@@ -1402,15 +1429,17 @@ declare const MessageData: {
|
|
1402
1429
|
} | undefined;
|
1403
1430
|
targetUrl?: string | undefined;
|
1404
1431
|
} | undefined;
|
1405
|
-
|
1432
|
+
verificationAddAddressBody?: {
|
1406
1433
|
address?: Uint8Array | undefined;
|
1407
|
-
|
1434
|
+
claimSignature?: Uint8Array | undefined;
|
1408
1435
|
blockHash?: Uint8Array | undefined;
|
1409
1436
|
verificationType?: number | undefined;
|
1410
1437
|
chainId?: number | undefined;
|
1438
|
+
protocol?: Protocol | undefined;
|
1411
1439
|
} | undefined;
|
1412
1440
|
verificationRemoveBody?: {
|
1413
1441
|
address?: Uint8Array | undefined;
|
1442
|
+
protocol?: Protocol | undefined;
|
1414
1443
|
} | undefined;
|
1415
1444
|
userDataBody?: {
|
1416
1445
|
type?: UserDataType | undefined;
|
@@ -1525,24 +1554,28 @@ declare const MessageData: {
|
|
1525
1554
|
} & { [K_28 in Exclude<keyof I_1["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
1526
1555
|
targetUrl?: string | undefined;
|
1527
1556
|
} & { [K_29 in Exclude<keyof I_1["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
1528
|
-
|
1557
|
+
verificationAddAddressBody?: ({
|
1529
1558
|
address?: Uint8Array | undefined;
|
1530
|
-
|
1559
|
+
claimSignature?: Uint8Array | undefined;
|
1531
1560
|
blockHash?: Uint8Array | undefined;
|
1532
1561
|
verificationType?: number | undefined;
|
1533
1562
|
chainId?: number | undefined;
|
1563
|
+
protocol?: Protocol | undefined;
|
1534
1564
|
} & {
|
1535
1565
|
address?: Uint8Array | undefined;
|
1536
|
-
|
1566
|
+
claimSignature?: Uint8Array | undefined;
|
1537
1567
|
blockHash?: Uint8Array | undefined;
|
1538
1568
|
verificationType?: number | undefined;
|
1539
1569
|
chainId?: number | undefined;
|
1540
|
-
|
1570
|
+
protocol?: Protocol | undefined;
|
1571
|
+
} & { [K_30 in Exclude<keyof I_1["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
1541
1572
|
verificationRemoveBody?: ({
|
1542
1573
|
address?: Uint8Array | undefined;
|
1574
|
+
protocol?: Protocol | undefined;
|
1543
1575
|
} & {
|
1544
1576
|
address?: Uint8Array | undefined;
|
1545
|
-
|
1577
|
+
protocol?: Protocol | undefined;
|
1578
|
+
} & { [K_31 in Exclude<keyof I_1["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
1546
1579
|
userDataBody?: ({
|
1547
1580
|
type?: UserDataType | undefined;
|
1548
1581
|
value?: string | undefined;
|
@@ -1905,55 +1938,63 @@ declare const ReactionBody: {
|
|
1905
1938
|
targetUrl?: string | undefined;
|
1906
1939
|
} & { [K_3 in Exclude<keyof I_1, keyof ReactionBody>]: never; }>(object: I_1): ReactionBody;
|
1907
1940
|
};
|
1908
|
-
/** Adds a Verification of ownership of an
|
1909
|
-
interface
|
1910
|
-
/**
|
1941
|
+
/** Adds a Verification of ownership of an Address based on Protocol */
|
1942
|
+
interface VerificationAddAddressBody {
|
1943
|
+
/** Address being verified for a given Protocol */
|
1911
1944
|
address: Uint8Array;
|
1912
|
-
/** Signature produced by the user's
|
1913
|
-
|
1945
|
+
/** Signature produced by the user's address for a given Protocol */
|
1946
|
+
claimSignature: Uint8Array;
|
1914
1947
|
/** Hash of the latest Ethereum block when the signature was produced */
|
1915
1948
|
blockHash: Uint8Array;
|
1916
1949
|
/** Type of verification. 0 = EOA, 1 = contract */
|
1917
1950
|
verificationType: number;
|
1918
1951
|
/** 0 for EOA verifications, 1 or 10 for contract verifications */
|
1919
1952
|
chainId: number;
|
1953
|
+
/** Protocol of the Verification */
|
1954
|
+
protocol: Protocol;
|
1920
1955
|
}
|
1921
|
-
declare const
|
1922
|
-
encode(message:
|
1923
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
1924
|
-
fromJSON(object: any):
|
1925
|
-
toJSON(message:
|
1956
|
+
declare const VerificationAddAddressBody: {
|
1957
|
+
encode(message: VerificationAddAddressBody, writer?: _m0.Writer): _m0.Writer;
|
1958
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): VerificationAddAddressBody;
|
1959
|
+
fromJSON(object: any): VerificationAddAddressBody;
|
1960
|
+
toJSON(message: VerificationAddAddressBody): unknown;
|
1926
1961
|
create<I extends {
|
1927
1962
|
address?: Uint8Array | undefined;
|
1928
|
-
|
1963
|
+
claimSignature?: Uint8Array | undefined;
|
1929
1964
|
blockHash?: Uint8Array | undefined;
|
1930
1965
|
verificationType?: number | undefined;
|
1931
1966
|
chainId?: number | undefined;
|
1967
|
+
protocol?: Protocol | undefined;
|
1932
1968
|
} & {
|
1933
1969
|
address?: Uint8Array | undefined;
|
1934
|
-
|
1970
|
+
claimSignature?: Uint8Array | undefined;
|
1935
1971
|
blockHash?: Uint8Array | undefined;
|
1936
1972
|
verificationType?: number | undefined;
|
1937
1973
|
chainId?: number | undefined;
|
1938
|
-
|
1974
|
+
protocol?: Protocol | undefined;
|
1975
|
+
} & { [K in Exclude<keyof I, keyof VerificationAddAddressBody>]: never; }>(base?: I | undefined): VerificationAddAddressBody;
|
1939
1976
|
fromPartial<I_1 extends {
|
1940
1977
|
address?: Uint8Array | undefined;
|
1941
|
-
|
1978
|
+
claimSignature?: Uint8Array | undefined;
|
1942
1979
|
blockHash?: Uint8Array | undefined;
|
1943
1980
|
verificationType?: number | undefined;
|
1944
1981
|
chainId?: number | undefined;
|
1982
|
+
protocol?: Protocol | undefined;
|
1945
1983
|
} & {
|
1946
1984
|
address?: Uint8Array | undefined;
|
1947
|
-
|
1985
|
+
claimSignature?: Uint8Array | undefined;
|
1948
1986
|
blockHash?: Uint8Array | undefined;
|
1949
1987
|
verificationType?: number | undefined;
|
1950
1988
|
chainId?: number | undefined;
|
1951
|
-
|
1989
|
+
protocol?: Protocol | undefined;
|
1990
|
+
} & { [K_1 in Exclude<keyof I_1, keyof VerificationAddAddressBody>]: never; }>(object: I_1): VerificationAddAddressBody;
|
1952
1991
|
};
|
1953
|
-
/** Removes a Verification of
|
1992
|
+
/** Removes a Verification of a given protocol */
|
1954
1993
|
interface VerificationRemoveBody {
|
1955
1994
|
/** Address of the Verification to remove */
|
1956
1995
|
address: Uint8Array;
|
1996
|
+
/** Protocol of the Verification to remove */
|
1997
|
+
protocol: Protocol;
|
1957
1998
|
}
|
1958
1999
|
declare const VerificationRemoveBody: {
|
1959
2000
|
encode(message: VerificationRemoveBody, writer?: _m0.Writer): _m0.Writer;
|
@@ -1962,14 +2003,18 @@ declare const VerificationRemoveBody: {
|
|
1962
2003
|
toJSON(message: VerificationRemoveBody): unknown;
|
1963
2004
|
create<I extends {
|
1964
2005
|
address?: Uint8Array | undefined;
|
2006
|
+
protocol?: Protocol | undefined;
|
1965
2007
|
} & {
|
1966
2008
|
address?: Uint8Array | undefined;
|
1967
|
-
|
2009
|
+
protocol?: Protocol | undefined;
|
2010
|
+
} & { [K in Exclude<keyof I, keyof VerificationRemoveBody>]: never; }>(base?: I | undefined): VerificationRemoveBody;
|
1968
2011
|
fromPartial<I_1 extends {
|
1969
2012
|
address?: Uint8Array | undefined;
|
2013
|
+
protocol?: Protocol | undefined;
|
1970
2014
|
} & {
|
1971
2015
|
address?: Uint8Array | undefined;
|
1972
|
-
|
2016
|
+
protocol?: Protocol | undefined;
|
2017
|
+
} & { [K_1 in Exclude<keyof I_1, keyof VerificationRemoveBody>]: never; }>(object: I_1): VerificationRemoveBody;
|
1973
2018
|
};
|
1974
2019
|
/** Adds or removes a Link */
|
1975
2020
|
interface LinkBody {
|
@@ -2125,15 +2170,17 @@ declare const MergeMessageBody: {
|
|
2125
2170
|
} | undefined;
|
2126
2171
|
targetUrl?: string | undefined;
|
2127
2172
|
} | undefined;
|
2128
|
-
|
2173
|
+
verificationAddAddressBody?: {
|
2129
2174
|
address?: Uint8Array | undefined;
|
2130
|
-
|
2175
|
+
claimSignature?: Uint8Array | undefined;
|
2131
2176
|
blockHash?: Uint8Array | undefined;
|
2132
2177
|
verificationType?: number | undefined;
|
2133
2178
|
chainId?: number | undefined;
|
2179
|
+
protocol?: Protocol | undefined;
|
2134
2180
|
} | undefined;
|
2135
2181
|
verificationRemoveBody?: {
|
2136
2182
|
address?: Uint8Array | undefined;
|
2183
|
+
protocol?: Protocol | undefined;
|
2137
2184
|
} | undefined;
|
2138
2185
|
userDataBody?: {
|
2139
2186
|
type?: UserDataType | undefined;
|
@@ -2204,15 +2251,17 @@ declare const MergeMessageBody: {
|
|
2204
2251
|
} | undefined;
|
2205
2252
|
targetUrl?: string | undefined;
|
2206
2253
|
} | undefined;
|
2207
|
-
|
2254
|
+
verificationAddAddressBody?: {
|
2208
2255
|
address?: Uint8Array | undefined;
|
2209
|
-
|
2256
|
+
claimSignature?: Uint8Array | undefined;
|
2210
2257
|
blockHash?: Uint8Array | undefined;
|
2211
2258
|
verificationType?: number | undefined;
|
2212
2259
|
chainId?: number | undefined;
|
2260
|
+
protocol?: Protocol | undefined;
|
2213
2261
|
} | undefined;
|
2214
2262
|
verificationRemoveBody?: {
|
2215
2263
|
address?: Uint8Array | undefined;
|
2264
|
+
protocol?: Protocol | undefined;
|
2216
2265
|
} | undefined;
|
2217
2266
|
userDataBody?: {
|
2218
2267
|
type?: UserDataType | undefined;
|
@@ -2284,15 +2333,17 @@ declare const MergeMessageBody: {
|
|
2284
2333
|
} | undefined;
|
2285
2334
|
targetUrl?: string | undefined;
|
2286
2335
|
} | undefined;
|
2287
|
-
|
2336
|
+
verificationAddAddressBody?: {
|
2288
2337
|
address?: Uint8Array | undefined;
|
2289
|
-
|
2338
|
+
claimSignature?: Uint8Array | undefined;
|
2290
2339
|
blockHash?: Uint8Array | undefined;
|
2291
2340
|
verificationType?: number | undefined;
|
2292
2341
|
chainId?: number | undefined;
|
2342
|
+
protocol?: Protocol | undefined;
|
2293
2343
|
} | undefined;
|
2294
2344
|
verificationRemoveBody?: {
|
2295
2345
|
address?: Uint8Array | undefined;
|
2346
|
+
protocol?: Protocol | undefined;
|
2296
2347
|
} | undefined;
|
2297
2348
|
userDataBody?: {
|
2298
2349
|
type?: UserDataType | undefined;
|
@@ -2362,15 +2413,17 @@ declare const MergeMessageBody: {
|
|
2362
2413
|
} | undefined;
|
2363
2414
|
targetUrl?: string | undefined;
|
2364
2415
|
} | undefined;
|
2365
|
-
|
2416
|
+
verificationAddAddressBody?: {
|
2366
2417
|
address?: Uint8Array | undefined;
|
2367
|
-
|
2418
|
+
claimSignature?: Uint8Array | undefined;
|
2368
2419
|
blockHash?: Uint8Array | undefined;
|
2369
2420
|
verificationType?: number | undefined;
|
2370
2421
|
chainId?: number | undefined;
|
2422
|
+
protocol?: Protocol | undefined;
|
2371
2423
|
} | undefined;
|
2372
2424
|
verificationRemoveBody?: {
|
2373
2425
|
address?: Uint8Array | undefined;
|
2426
|
+
protocol?: Protocol | undefined;
|
2374
2427
|
} | undefined;
|
2375
2428
|
userDataBody?: {
|
2376
2429
|
type?: UserDataType | undefined;
|
@@ -2485,24 +2538,28 @@ declare const MergeMessageBody: {
|
|
2485
2538
|
} & { [K_9 in Exclude<keyof I["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
2486
2539
|
targetUrl?: string | undefined;
|
2487
2540
|
} & { [K_10 in Exclude<keyof I["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
2488
|
-
|
2541
|
+
verificationAddAddressBody?: ({
|
2489
2542
|
address?: Uint8Array | undefined;
|
2490
|
-
|
2543
|
+
claimSignature?: Uint8Array | undefined;
|
2491
2544
|
blockHash?: Uint8Array | undefined;
|
2492
2545
|
verificationType?: number | undefined;
|
2493
2546
|
chainId?: number | undefined;
|
2547
|
+
protocol?: Protocol | undefined;
|
2494
2548
|
} & {
|
2495
2549
|
address?: Uint8Array | undefined;
|
2496
|
-
|
2550
|
+
claimSignature?: Uint8Array | undefined;
|
2497
2551
|
blockHash?: Uint8Array | undefined;
|
2498
2552
|
verificationType?: number | undefined;
|
2499
2553
|
chainId?: number | undefined;
|
2500
|
-
|
2554
|
+
protocol?: Protocol | undefined;
|
2555
|
+
} & { [K_11 in Exclude<keyof I["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
2501
2556
|
verificationRemoveBody?: ({
|
2502
2557
|
address?: Uint8Array | undefined;
|
2558
|
+
protocol?: Protocol | undefined;
|
2503
2559
|
} & {
|
2504
2560
|
address?: Uint8Array | undefined;
|
2505
|
-
|
2561
|
+
protocol?: Protocol | undefined;
|
2562
|
+
} & { [K_12 in Exclude<keyof I["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
2506
2563
|
userDataBody?: ({
|
2507
2564
|
type?: UserDataType | undefined;
|
2508
2565
|
value?: string | undefined;
|
@@ -2597,15 +2654,17 @@ declare const MergeMessageBody: {
|
|
2597
2654
|
} | undefined;
|
2598
2655
|
targetUrl?: string | undefined;
|
2599
2656
|
} | undefined;
|
2600
|
-
|
2657
|
+
verificationAddAddressBody?: {
|
2601
2658
|
address?: Uint8Array | undefined;
|
2602
|
-
|
2659
|
+
claimSignature?: Uint8Array | undefined;
|
2603
2660
|
blockHash?: Uint8Array | undefined;
|
2604
2661
|
verificationType?: number | undefined;
|
2605
2662
|
chainId?: number | undefined;
|
2663
|
+
protocol?: Protocol | undefined;
|
2606
2664
|
} | undefined;
|
2607
2665
|
verificationRemoveBody?: {
|
2608
2666
|
address?: Uint8Array | undefined;
|
2667
|
+
protocol?: Protocol | undefined;
|
2609
2668
|
} | undefined;
|
2610
2669
|
userDataBody?: {
|
2611
2670
|
type?: UserDataType | undefined;
|
@@ -2675,15 +2734,17 @@ declare const MergeMessageBody: {
|
|
2675
2734
|
} | undefined;
|
2676
2735
|
targetUrl?: string | undefined;
|
2677
2736
|
} | undefined;
|
2678
|
-
|
2737
|
+
verificationAddAddressBody?: {
|
2679
2738
|
address?: Uint8Array | undefined;
|
2680
|
-
|
2739
|
+
claimSignature?: Uint8Array | undefined;
|
2681
2740
|
blockHash?: Uint8Array | undefined;
|
2682
2741
|
verificationType?: number | undefined;
|
2683
2742
|
chainId?: number | undefined;
|
2743
|
+
protocol?: Protocol | undefined;
|
2684
2744
|
} | undefined;
|
2685
2745
|
verificationRemoveBody?: {
|
2686
2746
|
address?: Uint8Array | undefined;
|
2747
|
+
protocol?: Protocol | undefined;
|
2687
2748
|
} | undefined;
|
2688
2749
|
userDataBody?: {
|
2689
2750
|
type?: UserDataType | undefined;
|
@@ -2753,15 +2814,17 @@ declare const MergeMessageBody: {
|
|
2753
2814
|
} | undefined;
|
2754
2815
|
targetUrl?: string | undefined;
|
2755
2816
|
} | undefined;
|
2756
|
-
|
2817
|
+
verificationAddAddressBody?: {
|
2757
2818
|
address?: Uint8Array | undefined;
|
2758
|
-
|
2819
|
+
claimSignature?: Uint8Array | undefined;
|
2759
2820
|
blockHash?: Uint8Array | undefined;
|
2760
2821
|
verificationType?: number | undefined;
|
2761
2822
|
chainId?: number | undefined;
|
2823
|
+
protocol?: Protocol | undefined;
|
2762
2824
|
} | undefined;
|
2763
2825
|
verificationRemoveBody?: {
|
2764
2826
|
address?: Uint8Array | undefined;
|
2827
|
+
protocol?: Protocol | undefined;
|
2765
2828
|
} | undefined;
|
2766
2829
|
userDataBody?: {
|
2767
2830
|
type?: UserDataType | undefined;
|
@@ -2876,24 +2939,28 @@ declare const MergeMessageBody: {
|
|
2876
2939
|
} & { [K_29 in Exclude<keyof I["deletedMessages"][number]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
2877
2940
|
targetUrl?: string | undefined;
|
2878
2941
|
} & { [K_30 in Exclude<keyof I["deletedMessages"][number]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
2879
|
-
|
2942
|
+
verificationAddAddressBody?: ({
|
2880
2943
|
address?: Uint8Array | undefined;
|
2881
|
-
|
2944
|
+
claimSignature?: Uint8Array | undefined;
|
2882
2945
|
blockHash?: Uint8Array | undefined;
|
2883
2946
|
verificationType?: number | undefined;
|
2884
2947
|
chainId?: number | undefined;
|
2948
|
+
protocol?: Protocol | undefined;
|
2885
2949
|
} & {
|
2886
2950
|
address?: Uint8Array | undefined;
|
2887
|
-
|
2951
|
+
claimSignature?: Uint8Array | undefined;
|
2888
2952
|
blockHash?: Uint8Array | undefined;
|
2889
2953
|
verificationType?: number | undefined;
|
2890
2954
|
chainId?: number | undefined;
|
2891
|
-
|
2955
|
+
protocol?: Protocol | undefined;
|
2956
|
+
} & { [K_31 in Exclude<keyof I["deletedMessages"][number]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
2892
2957
|
verificationRemoveBody?: ({
|
2893
2958
|
address?: Uint8Array | undefined;
|
2959
|
+
protocol?: Protocol | undefined;
|
2894
2960
|
} & {
|
2895
2961
|
address?: Uint8Array | undefined;
|
2896
|
-
|
2962
|
+
protocol?: Protocol | undefined;
|
2963
|
+
} & { [K_32 in Exclude<keyof I["deletedMessages"][number]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
2897
2964
|
userDataBody?: ({
|
2898
2965
|
type?: UserDataType | undefined;
|
2899
2966
|
value?: string | undefined;
|
@@ -2987,15 +3054,17 @@ declare const MergeMessageBody: {
|
|
2987
3054
|
} | undefined;
|
2988
3055
|
targetUrl?: string | undefined;
|
2989
3056
|
} | undefined;
|
2990
|
-
|
3057
|
+
verificationAddAddressBody?: {
|
2991
3058
|
address?: Uint8Array | undefined;
|
2992
|
-
|
3059
|
+
claimSignature?: Uint8Array | undefined;
|
2993
3060
|
blockHash?: Uint8Array | undefined;
|
2994
3061
|
verificationType?: number | undefined;
|
2995
3062
|
chainId?: number | undefined;
|
3063
|
+
protocol?: Protocol | undefined;
|
2996
3064
|
} | undefined;
|
2997
3065
|
verificationRemoveBody?: {
|
2998
3066
|
address?: Uint8Array | undefined;
|
3067
|
+
protocol?: Protocol | undefined;
|
2999
3068
|
} | undefined;
|
3000
3069
|
userDataBody?: {
|
3001
3070
|
type?: UserDataType | undefined;
|
@@ -3068,15 +3137,17 @@ declare const MergeMessageBody: {
|
|
3068
3137
|
} | undefined;
|
3069
3138
|
targetUrl?: string | undefined;
|
3070
3139
|
} | undefined;
|
3071
|
-
|
3140
|
+
verificationAddAddressBody?: {
|
3072
3141
|
address?: Uint8Array | undefined;
|
3073
|
-
|
3142
|
+
claimSignature?: Uint8Array | undefined;
|
3074
3143
|
blockHash?: Uint8Array | undefined;
|
3075
3144
|
verificationType?: number | undefined;
|
3076
3145
|
chainId?: number | undefined;
|
3146
|
+
protocol?: Protocol | undefined;
|
3077
3147
|
} | undefined;
|
3078
3148
|
verificationRemoveBody?: {
|
3079
3149
|
address?: Uint8Array | undefined;
|
3150
|
+
protocol?: Protocol | undefined;
|
3080
3151
|
} | undefined;
|
3081
3152
|
userDataBody?: {
|
3082
3153
|
type?: UserDataType | undefined;
|
@@ -3147,15 +3218,17 @@ declare const MergeMessageBody: {
|
|
3147
3218
|
} | undefined;
|
3148
3219
|
targetUrl?: string | undefined;
|
3149
3220
|
} | undefined;
|
3150
|
-
|
3221
|
+
verificationAddAddressBody?: {
|
3151
3222
|
address?: Uint8Array | undefined;
|
3152
|
-
|
3223
|
+
claimSignature?: Uint8Array | undefined;
|
3153
3224
|
blockHash?: Uint8Array | undefined;
|
3154
3225
|
verificationType?: number | undefined;
|
3155
3226
|
chainId?: number | undefined;
|
3227
|
+
protocol?: Protocol | undefined;
|
3156
3228
|
} | undefined;
|
3157
3229
|
verificationRemoveBody?: {
|
3158
3230
|
address?: Uint8Array | undefined;
|
3231
|
+
protocol?: Protocol | undefined;
|
3159
3232
|
} | undefined;
|
3160
3233
|
userDataBody?: {
|
3161
3234
|
type?: UserDataType | undefined;
|
@@ -3227,15 +3300,17 @@ declare const MergeMessageBody: {
|
|
3227
3300
|
} | undefined;
|
3228
3301
|
targetUrl?: string | undefined;
|
3229
3302
|
} | undefined;
|
3230
|
-
|
3303
|
+
verificationAddAddressBody?: {
|
3231
3304
|
address?: Uint8Array | undefined;
|
3232
|
-
|
3305
|
+
claimSignature?: Uint8Array | undefined;
|
3233
3306
|
blockHash?: Uint8Array | undefined;
|
3234
3307
|
verificationType?: number | undefined;
|
3235
3308
|
chainId?: number | undefined;
|
3309
|
+
protocol?: Protocol | undefined;
|
3236
3310
|
} | undefined;
|
3237
3311
|
verificationRemoveBody?: {
|
3238
3312
|
address?: Uint8Array | undefined;
|
3313
|
+
protocol?: Protocol | undefined;
|
3239
3314
|
} | undefined;
|
3240
3315
|
userDataBody?: {
|
3241
3316
|
type?: UserDataType | undefined;
|
@@ -3305,15 +3380,17 @@ declare const MergeMessageBody: {
|
|
3305
3380
|
} | undefined;
|
3306
3381
|
targetUrl?: string | undefined;
|
3307
3382
|
} | undefined;
|
3308
|
-
|
3383
|
+
verificationAddAddressBody?: {
|
3309
3384
|
address?: Uint8Array | undefined;
|
3310
|
-
|
3385
|
+
claimSignature?: Uint8Array | undefined;
|
3311
3386
|
blockHash?: Uint8Array | undefined;
|
3312
3387
|
verificationType?: number | undefined;
|
3313
3388
|
chainId?: number | undefined;
|
3389
|
+
protocol?: Protocol | undefined;
|
3314
3390
|
} | undefined;
|
3315
3391
|
verificationRemoveBody?: {
|
3316
3392
|
address?: Uint8Array | undefined;
|
3393
|
+
protocol?: Protocol | undefined;
|
3317
3394
|
} | undefined;
|
3318
3395
|
userDataBody?: {
|
3319
3396
|
type?: UserDataType | undefined;
|
@@ -3428,24 +3505,28 @@ declare const MergeMessageBody: {
|
|
3428
3505
|
} & { [K_51 in Exclude<keyof I_1["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
3429
3506
|
targetUrl?: string | undefined;
|
3430
3507
|
} & { [K_52 in Exclude<keyof I_1["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
3431
|
-
|
3508
|
+
verificationAddAddressBody?: ({
|
3432
3509
|
address?: Uint8Array | undefined;
|
3433
|
-
|
3510
|
+
claimSignature?: Uint8Array | undefined;
|
3434
3511
|
blockHash?: Uint8Array | undefined;
|
3435
3512
|
verificationType?: number | undefined;
|
3436
3513
|
chainId?: number | undefined;
|
3514
|
+
protocol?: Protocol | undefined;
|
3437
3515
|
} & {
|
3438
3516
|
address?: Uint8Array | undefined;
|
3439
|
-
|
3517
|
+
claimSignature?: Uint8Array | undefined;
|
3440
3518
|
blockHash?: Uint8Array | undefined;
|
3441
3519
|
verificationType?: number | undefined;
|
3442
3520
|
chainId?: number | undefined;
|
3443
|
-
|
3521
|
+
protocol?: Protocol | undefined;
|
3522
|
+
} & { [K_53 in Exclude<keyof I_1["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
3444
3523
|
verificationRemoveBody?: ({
|
3445
3524
|
address?: Uint8Array | undefined;
|
3525
|
+
protocol?: Protocol | undefined;
|
3446
3526
|
} & {
|
3447
3527
|
address?: Uint8Array | undefined;
|
3448
|
-
|
3528
|
+
protocol?: Protocol | undefined;
|
3529
|
+
} & { [K_54 in Exclude<keyof I_1["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
3449
3530
|
userDataBody?: ({
|
3450
3531
|
type?: UserDataType | undefined;
|
3451
3532
|
value?: string | undefined;
|
@@ -3540,15 +3621,17 @@ declare const MergeMessageBody: {
|
|
3540
3621
|
} | undefined;
|
3541
3622
|
targetUrl?: string | undefined;
|
3542
3623
|
} | undefined;
|
3543
|
-
|
3624
|
+
verificationAddAddressBody?: {
|
3544
3625
|
address?: Uint8Array | undefined;
|
3545
|
-
|
3626
|
+
claimSignature?: Uint8Array | undefined;
|
3546
3627
|
blockHash?: Uint8Array | undefined;
|
3547
3628
|
verificationType?: number | undefined;
|
3548
3629
|
chainId?: number | undefined;
|
3630
|
+
protocol?: Protocol | undefined;
|
3549
3631
|
} | undefined;
|
3550
3632
|
verificationRemoveBody?: {
|
3551
3633
|
address?: Uint8Array | undefined;
|
3634
|
+
protocol?: Protocol | undefined;
|
3552
3635
|
} | undefined;
|
3553
3636
|
userDataBody?: {
|
3554
3637
|
type?: UserDataType | undefined;
|
@@ -3618,15 +3701,17 @@ declare const MergeMessageBody: {
|
|
3618
3701
|
} | undefined;
|
3619
3702
|
targetUrl?: string | undefined;
|
3620
3703
|
} | undefined;
|
3621
|
-
|
3704
|
+
verificationAddAddressBody?: {
|
3622
3705
|
address?: Uint8Array | undefined;
|
3623
|
-
|
3706
|
+
claimSignature?: Uint8Array | undefined;
|
3624
3707
|
blockHash?: Uint8Array | undefined;
|
3625
3708
|
verificationType?: number | undefined;
|
3626
3709
|
chainId?: number | undefined;
|
3710
|
+
protocol?: Protocol | undefined;
|
3627
3711
|
} | undefined;
|
3628
3712
|
verificationRemoveBody?: {
|
3629
3713
|
address?: Uint8Array | undefined;
|
3714
|
+
protocol?: Protocol | undefined;
|
3630
3715
|
} | undefined;
|
3631
3716
|
userDataBody?: {
|
3632
3717
|
type?: UserDataType | undefined;
|
@@ -3696,15 +3781,17 @@ declare const MergeMessageBody: {
|
|
3696
3781
|
} | undefined;
|
3697
3782
|
targetUrl?: string | undefined;
|
3698
3783
|
} | undefined;
|
3699
|
-
|
3784
|
+
verificationAddAddressBody?: {
|
3700
3785
|
address?: Uint8Array | undefined;
|
3701
|
-
|
3786
|
+
claimSignature?: Uint8Array | undefined;
|
3702
3787
|
blockHash?: Uint8Array | undefined;
|
3703
3788
|
verificationType?: number | undefined;
|
3704
3789
|
chainId?: number | undefined;
|
3790
|
+
protocol?: Protocol | undefined;
|
3705
3791
|
} | undefined;
|
3706
3792
|
verificationRemoveBody?: {
|
3707
3793
|
address?: Uint8Array | undefined;
|
3794
|
+
protocol?: Protocol | undefined;
|
3708
3795
|
} | undefined;
|
3709
3796
|
userDataBody?: {
|
3710
3797
|
type?: UserDataType | undefined;
|
@@ -3819,24 +3906,28 @@ declare const MergeMessageBody: {
|
|
3819
3906
|
} & { [K_71 in Exclude<keyof I_1["deletedMessages"][number]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
3820
3907
|
targetUrl?: string | undefined;
|
3821
3908
|
} & { [K_72 in Exclude<keyof I_1["deletedMessages"][number]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
3822
|
-
|
3909
|
+
verificationAddAddressBody?: ({
|
3823
3910
|
address?: Uint8Array | undefined;
|
3824
|
-
|
3911
|
+
claimSignature?: Uint8Array | undefined;
|
3825
3912
|
blockHash?: Uint8Array | undefined;
|
3826
3913
|
verificationType?: number | undefined;
|
3827
3914
|
chainId?: number | undefined;
|
3915
|
+
protocol?: Protocol | undefined;
|
3828
3916
|
} & {
|
3829
3917
|
address?: Uint8Array | undefined;
|
3830
|
-
|
3918
|
+
claimSignature?: Uint8Array | undefined;
|
3831
3919
|
blockHash?: Uint8Array | undefined;
|
3832
3920
|
verificationType?: number | undefined;
|
3833
3921
|
chainId?: number | undefined;
|
3834
|
-
|
3922
|
+
protocol?: Protocol | undefined;
|
3923
|
+
} & { [K_73 in Exclude<keyof I_1["deletedMessages"][number]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
3835
3924
|
verificationRemoveBody?: ({
|
3836
3925
|
address?: Uint8Array | undefined;
|
3926
|
+
protocol?: Protocol | undefined;
|
3837
3927
|
} & {
|
3838
3928
|
address?: Uint8Array | undefined;
|
3839
|
-
|
3929
|
+
protocol?: Protocol | undefined;
|
3930
|
+
} & { [K_74 in Exclude<keyof I_1["deletedMessages"][number]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
3840
3931
|
userDataBody?: ({
|
3841
3932
|
type?: UserDataType | undefined;
|
3842
3933
|
value?: string | undefined;
|
@@ -3930,15 +4021,17 @@ declare const MergeMessageBody: {
|
|
3930
4021
|
} | undefined;
|
3931
4022
|
targetUrl?: string | undefined;
|
3932
4023
|
} | undefined;
|
3933
|
-
|
4024
|
+
verificationAddAddressBody?: {
|
3934
4025
|
address?: Uint8Array | undefined;
|
3935
|
-
|
4026
|
+
claimSignature?: Uint8Array | undefined;
|
3936
4027
|
blockHash?: Uint8Array | undefined;
|
3937
4028
|
verificationType?: number | undefined;
|
3938
4029
|
chainId?: number | undefined;
|
4030
|
+
protocol?: Protocol | undefined;
|
3939
4031
|
} | undefined;
|
3940
4032
|
verificationRemoveBody?: {
|
3941
4033
|
address?: Uint8Array | undefined;
|
4034
|
+
protocol?: Protocol | undefined;
|
3942
4035
|
} | undefined;
|
3943
4036
|
userDataBody?: {
|
3944
4037
|
type?: UserDataType | undefined;
|
@@ -4020,15 +4113,17 @@ declare const PruneMessageBody: {
|
|
4020
4113
|
} | undefined;
|
4021
4114
|
targetUrl?: string | undefined;
|
4022
4115
|
} | undefined;
|
4023
|
-
|
4116
|
+
verificationAddAddressBody?: {
|
4024
4117
|
address?: Uint8Array | undefined;
|
4025
|
-
|
4118
|
+
claimSignature?: Uint8Array | undefined;
|
4026
4119
|
blockHash?: Uint8Array | undefined;
|
4027
4120
|
verificationType?: number | undefined;
|
4028
4121
|
chainId?: number | undefined;
|
4122
|
+
protocol?: Protocol | undefined;
|
4029
4123
|
} | undefined;
|
4030
4124
|
verificationRemoveBody?: {
|
4031
4125
|
address?: Uint8Array | undefined;
|
4126
|
+
protocol?: Protocol | undefined;
|
4032
4127
|
} | undefined;
|
4033
4128
|
userDataBody?: {
|
4034
4129
|
type?: UserDataType | undefined;
|
@@ -4100,15 +4195,17 @@ declare const PruneMessageBody: {
|
|
4100
4195
|
} | undefined;
|
4101
4196
|
targetUrl?: string | undefined;
|
4102
4197
|
} | undefined;
|
4103
|
-
|
4198
|
+
verificationAddAddressBody?: {
|
4104
4199
|
address?: Uint8Array | undefined;
|
4105
|
-
|
4200
|
+
claimSignature?: Uint8Array | undefined;
|
4106
4201
|
blockHash?: Uint8Array | undefined;
|
4107
4202
|
verificationType?: number | undefined;
|
4108
4203
|
chainId?: number | undefined;
|
4204
|
+
protocol?: Protocol | undefined;
|
4109
4205
|
} | undefined;
|
4110
4206
|
verificationRemoveBody?: {
|
4111
4207
|
address?: Uint8Array | undefined;
|
4208
|
+
protocol?: Protocol | undefined;
|
4112
4209
|
} | undefined;
|
4113
4210
|
userDataBody?: {
|
4114
4211
|
type?: UserDataType | undefined;
|
@@ -4178,15 +4275,17 @@ declare const PruneMessageBody: {
|
|
4178
4275
|
} | undefined;
|
4179
4276
|
targetUrl?: string | undefined;
|
4180
4277
|
} | undefined;
|
4181
|
-
|
4278
|
+
verificationAddAddressBody?: {
|
4182
4279
|
address?: Uint8Array | undefined;
|
4183
|
-
|
4280
|
+
claimSignature?: Uint8Array | undefined;
|
4184
4281
|
blockHash?: Uint8Array | undefined;
|
4185
4282
|
verificationType?: number | undefined;
|
4186
4283
|
chainId?: number | undefined;
|
4284
|
+
protocol?: Protocol | undefined;
|
4187
4285
|
} | undefined;
|
4188
4286
|
verificationRemoveBody?: {
|
4189
4287
|
address?: Uint8Array | undefined;
|
4288
|
+
protocol?: Protocol | undefined;
|
4190
4289
|
} | undefined;
|
4191
4290
|
userDataBody?: {
|
4192
4291
|
type?: UserDataType | undefined;
|
@@ -4301,24 +4400,28 @@ declare const PruneMessageBody: {
|
|
4301
4400
|
} & { [K_9 in Exclude<keyof I["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
4302
4401
|
targetUrl?: string | undefined;
|
4303
4402
|
} & { [K_10 in Exclude<keyof I["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
4304
|
-
|
4403
|
+
verificationAddAddressBody?: ({
|
4305
4404
|
address?: Uint8Array | undefined;
|
4306
|
-
|
4405
|
+
claimSignature?: Uint8Array | undefined;
|
4307
4406
|
blockHash?: Uint8Array | undefined;
|
4308
4407
|
verificationType?: number | undefined;
|
4309
4408
|
chainId?: number | undefined;
|
4409
|
+
protocol?: Protocol | undefined;
|
4310
4410
|
} & {
|
4311
4411
|
address?: Uint8Array | undefined;
|
4312
|
-
|
4412
|
+
claimSignature?: Uint8Array | undefined;
|
4313
4413
|
blockHash?: Uint8Array | undefined;
|
4314
4414
|
verificationType?: number | undefined;
|
4315
4415
|
chainId?: number | undefined;
|
4316
|
-
|
4416
|
+
protocol?: Protocol | undefined;
|
4417
|
+
} & { [K_11 in Exclude<keyof I["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
4317
4418
|
verificationRemoveBody?: ({
|
4318
4419
|
address?: Uint8Array | undefined;
|
4420
|
+
protocol?: Protocol | undefined;
|
4319
4421
|
} & {
|
4320
4422
|
address?: Uint8Array | undefined;
|
4321
|
-
|
4423
|
+
protocol?: Protocol | undefined;
|
4424
|
+
} & { [K_12 in Exclude<keyof I["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
4322
4425
|
userDataBody?: ({
|
4323
4426
|
type?: UserDataType | undefined;
|
4324
4427
|
value?: string | undefined;
|
@@ -4415,15 +4518,17 @@ declare const PruneMessageBody: {
|
|
4415
4518
|
} | undefined;
|
4416
4519
|
targetUrl?: string | undefined;
|
4417
4520
|
} | undefined;
|
4418
|
-
|
4521
|
+
verificationAddAddressBody?: {
|
4419
4522
|
address?: Uint8Array | undefined;
|
4420
|
-
|
4523
|
+
claimSignature?: Uint8Array | undefined;
|
4421
4524
|
blockHash?: Uint8Array | undefined;
|
4422
4525
|
verificationType?: number | undefined;
|
4423
4526
|
chainId?: number | undefined;
|
4527
|
+
protocol?: Protocol | undefined;
|
4424
4528
|
} | undefined;
|
4425
4529
|
verificationRemoveBody?: {
|
4426
4530
|
address?: Uint8Array | undefined;
|
4531
|
+
protocol?: Protocol | undefined;
|
4427
4532
|
} | undefined;
|
4428
4533
|
userDataBody?: {
|
4429
4534
|
type?: UserDataType | undefined;
|
@@ -4495,15 +4600,17 @@ declare const PruneMessageBody: {
|
|
4495
4600
|
} | undefined;
|
4496
4601
|
targetUrl?: string | undefined;
|
4497
4602
|
} | undefined;
|
4498
|
-
|
4603
|
+
verificationAddAddressBody?: {
|
4499
4604
|
address?: Uint8Array | undefined;
|
4500
|
-
|
4605
|
+
claimSignature?: Uint8Array | undefined;
|
4501
4606
|
blockHash?: Uint8Array | undefined;
|
4502
4607
|
verificationType?: number | undefined;
|
4503
4608
|
chainId?: number | undefined;
|
4609
|
+
protocol?: Protocol | undefined;
|
4504
4610
|
} | undefined;
|
4505
4611
|
verificationRemoveBody?: {
|
4506
4612
|
address?: Uint8Array | undefined;
|
4613
|
+
protocol?: Protocol | undefined;
|
4507
4614
|
} | undefined;
|
4508
4615
|
userDataBody?: {
|
4509
4616
|
type?: UserDataType | undefined;
|
@@ -4573,15 +4680,17 @@ declare const PruneMessageBody: {
|
|
4573
4680
|
} | undefined;
|
4574
4681
|
targetUrl?: string | undefined;
|
4575
4682
|
} | undefined;
|
4576
|
-
|
4683
|
+
verificationAddAddressBody?: {
|
4577
4684
|
address?: Uint8Array | undefined;
|
4578
|
-
|
4685
|
+
claimSignature?: Uint8Array | undefined;
|
4579
4686
|
blockHash?: Uint8Array | undefined;
|
4580
4687
|
verificationType?: number | undefined;
|
4581
4688
|
chainId?: number | undefined;
|
4689
|
+
protocol?: Protocol | undefined;
|
4582
4690
|
} | undefined;
|
4583
4691
|
verificationRemoveBody?: {
|
4584
4692
|
address?: Uint8Array | undefined;
|
4693
|
+
protocol?: Protocol | undefined;
|
4585
4694
|
} | undefined;
|
4586
4695
|
userDataBody?: {
|
4587
4696
|
type?: UserDataType | undefined;
|
@@ -4696,24 +4805,28 @@ declare const PruneMessageBody: {
|
|
4696
4805
|
} & { [K_30 in Exclude<keyof I_1["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
4697
4806
|
targetUrl?: string | undefined;
|
4698
4807
|
} & { [K_31 in Exclude<keyof I_1["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
4699
|
-
|
4808
|
+
verificationAddAddressBody?: ({
|
4700
4809
|
address?: Uint8Array | undefined;
|
4701
|
-
|
4810
|
+
claimSignature?: Uint8Array | undefined;
|
4702
4811
|
blockHash?: Uint8Array | undefined;
|
4703
4812
|
verificationType?: number | undefined;
|
4704
4813
|
chainId?: number | undefined;
|
4814
|
+
protocol?: Protocol | undefined;
|
4705
4815
|
} & {
|
4706
4816
|
address?: Uint8Array | undefined;
|
4707
|
-
|
4817
|
+
claimSignature?: Uint8Array | undefined;
|
4708
4818
|
blockHash?: Uint8Array | undefined;
|
4709
4819
|
verificationType?: number | undefined;
|
4710
4820
|
chainId?: number | undefined;
|
4711
|
-
|
4821
|
+
protocol?: Protocol | undefined;
|
4822
|
+
} & { [K_32 in Exclude<keyof I_1["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
4712
4823
|
verificationRemoveBody?: ({
|
4713
4824
|
address?: Uint8Array | undefined;
|
4825
|
+
protocol?: Protocol | undefined;
|
4714
4826
|
} & {
|
4715
4827
|
address?: Uint8Array | undefined;
|
4716
|
-
|
4828
|
+
protocol?: Protocol | undefined;
|
4829
|
+
} & { [K_33 in Exclude<keyof I_1["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
4717
4830
|
userDataBody?: ({
|
4718
4831
|
type?: UserDataType | undefined;
|
4719
4832
|
value?: string | undefined;
|
@@ -4819,15 +4932,17 @@ declare const RevokeMessageBody: {
|
|
4819
4932
|
} | undefined;
|
4820
4933
|
targetUrl?: string | undefined;
|
4821
4934
|
} | undefined;
|
4822
|
-
|
4935
|
+
verificationAddAddressBody?: {
|
4823
4936
|
address?: Uint8Array | undefined;
|
4824
|
-
|
4937
|
+
claimSignature?: Uint8Array | undefined;
|
4825
4938
|
blockHash?: Uint8Array | undefined;
|
4826
4939
|
verificationType?: number | undefined;
|
4827
4940
|
chainId?: number | undefined;
|
4941
|
+
protocol?: Protocol | undefined;
|
4828
4942
|
} | undefined;
|
4829
4943
|
verificationRemoveBody?: {
|
4830
4944
|
address?: Uint8Array | undefined;
|
4945
|
+
protocol?: Protocol | undefined;
|
4831
4946
|
} | undefined;
|
4832
4947
|
userDataBody?: {
|
4833
4948
|
type?: UserDataType | undefined;
|
@@ -4899,15 +5014,17 @@ declare const RevokeMessageBody: {
|
|
4899
5014
|
} | undefined;
|
4900
5015
|
targetUrl?: string | undefined;
|
4901
5016
|
} | undefined;
|
4902
|
-
|
5017
|
+
verificationAddAddressBody?: {
|
4903
5018
|
address?: Uint8Array | undefined;
|
4904
|
-
|
5019
|
+
claimSignature?: Uint8Array | undefined;
|
4905
5020
|
blockHash?: Uint8Array | undefined;
|
4906
5021
|
verificationType?: number | undefined;
|
4907
5022
|
chainId?: number | undefined;
|
5023
|
+
protocol?: Protocol | undefined;
|
4908
5024
|
} | undefined;
|
4909
5025
|
verificationRemoveBody?: {
|
4910
5026
|
address?: Uint8Array | undefined;
|
5027
|
+
protocol?: Protocol | undefined;
|
4911
5028
|
} | undefined;
|
4912
5029
|
userDataBody?: {
|
4913
5030
|
type?: UserDataType | undefined;
|
@@ -4977,15 +5094,17 @@ declare const RevokeMessageBody: {
|
|
4977
5094
|
} | undefined;
|
4978
5095
|
targetUrl?: string | undefined;
|
4979
5096
|
} | undefined;
|
4980
|
-
|
5097
|
+
verificationAddAddressBody?: {
|
4981
5098
|
address?: Uint8Array | undefined;
|
4982
|
-
|
5099
|
+
claimSignature?: Uint8Array | undefined;
|
4983
5100
|
blockHash?: Uint8Array | undefined;
|
4984
5101
|
verificationType?: number | undefined;
|
4985
5102
|
chainId?: number | undefined;
|
5103
|
+
protocol?: Protocol | undefined;
|
4986
5104
|
} | undefined;
|
4987
5105
|
verificationRemoveBody?: {
|
4988
5106
|
address?: Uint8Array | undefined;
|
5107
|
+
protocol?: Protocol | undefined;
|
4989
5108
|
} | undefined;
|
4990
5109
|
userDataBody?: {
|
4991
5110
|
type?: UserDataType | undefined;
|
@@ -5100,24 +5219,28 @@ declare const RevokeMessageBody: {
|
|
5100
5219
|
} & { [K_9 in Exclude<keyof I["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
5101
5220
|
targetUrl?: string | undefined;
|
5102
5221
|
} & { [K_10 in Exclude<keyof I["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
5103
|
-
|
5222
|
+
verificationAddAddressBody?: ({
|
5104
5223
|
address?: Uint8Array | undefined;
|
5105
|
-
|
5224
|
+
claimSignature?: Uint8Array | undefined;
|
5106
5225
|
blockHash?: Uint8Array | undefined;
|
5107
5226
|
verificationType?: number | undefined;
|
5108
5227
|
chainId?: number | undefined;
|
5228
|
+
protocol?: Protocol | undefined;
|
5109
5229
|
} & {
|
5110
5230
|
address?: Uint8Array | undefined;
|
5111
|
-
|
5231
|
+
claimSignature?: Uint8Array | undefined;
|
5112
5232
|
blockHash?: Uint8Array | undefined;
|
5113
5233
|
verificationType?: number | undefined;
|
5114
5234
|
chainId?: number | undefined;
|
5115
|
-
|
5235
|
+
protocol?: Protocol | undefined;
|
5236
|
+
} & { [K_11 in Exclude<keyof I["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
5116
5237
|
verificationRemoveBody?: ({
|
5117
5238
|
address?: Uint8Array | undefined;
|
5239
|
+
protocol?: Protocol | undefined;
|
5118
5240
|
} & {
|
5119
5241
|
address?: Uint8Array | undefined;
|
5120
|
-
|
5242
|
+
protocol?: Protocol | undefined;
|
5243
|
+
} & { [K_12 in Exclude<keyof I["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
5121
5244
|
userDataBody?: ({
|
5122
5245
|
type?: UserDataType | undefined;
|
5123
5246
|
value?: string | undefined;
|
@@ -5214,15 +5337,17 @@ declare const RevokeMessageBody: {
|
|
5214
5337
|
} | undefined;
|
5215
5338
|
targetUrl?: string | undefined;
|
5216
5339
|
} | undefined;
|
5217
|
-
|
5340
|
+
verificationAddAddressBody?: {
|
5218
5341
|
address?: Uint8Array | undefined;
|
5219
|
-
|
5342
|
+
claimSignature?: Uint8Array | undefined;
|
5220
5343
|
blockHash?: Uint8Array | undefined;
|
5221
5344
|
verificationType?: number | undefined;
|
5222
5345
|
chainId?: number | undefined;
|
5346
|
+
protocol?: Protocol | undefined;
|
5223
5347
|
} | undefined;
|
5224
5348
|
verificationRemoveBody?: {
|
5225
5349
|
address?: Uint8Array | undefined;
|
5350
|
+
protocol?: Protocol | undefined;
|
5226
5351
|
} | undefined;
|
5227
5352
|
userDataBody?: {
|
5228
5353
|
type?: UserDataType | undefined;
|
@@ -5294,15 +5419,17 @@ declare const RevokeMessageBody: {
|
|
5294
5419
|
} | undefined;
|
5295
5420
|
targetUrl?: string | undefined;
|
5296
5421
|
} | undefined;
|
5297
|
-
|
5422
|
+
verificationAddAddressBody?: {
|
5298
5423
|
address?: Uint8Array | undefined;
|
5299
|
-
|
5424
|
+
claimSignature?: Uint8Array | undefined;
|
5300
5425
|
blockHash?: Uint8Array | undefined;
|
5301
5426
|
verificationType?: number | undefined;
|
5302
5427
|
chainId?: number | undefined;
|
5428
|
+
protocol?: Protocol | undefined;
|
5303
5429
|
} | undefined;
|
5304
5430
|
verificationRemoveBody?: {
|
5305
5431
|
address?: Uint8Array | undefined;
|
5432
|
+
protocol?: Protocol | undefined;
|
5306
5433
|
} | undefined;
|
5307
5434
|
userDataBody?: {
|
5308
5435
|
type?: UserDataType | undefined;
|
@@ -5372,15 +5499,17 @@ declare const RevokeMessageBody: {
|
|
5372
5499
|
} | undefined;
|
5373
5500
|
targetUrl?: string | undefined;
|
5374
5501
|
} | undefined;
|
5375
|
-
|
5502
|
+
verificationAddAddressBody?: {
|
5376
5503
|
address?: Uint8Array | undefined;
|
5377
|
-
|
5504
|
+
claimSignature?: Uint8Array | undefined;
|
5378
5505
|
blockHash?: Uint8Array | undefined;
|
5379
5506
|
verificationType?: number | undefined;
|
5380
5507
|
chainId?: number | undefined;
|
5508
|
+
protocol?: Protocol | undefined;
|
5381
5509
|
} | undefined;
|
5382
5510
|
verificationRemoveBody?: {
|
5383
5511
|
address?: Uint8Array | undefined;
|
5512
|
+
protocol?: Protocol | undefined;
|
5384
5513
|
} | undefined;
|
5385
5514
|
userDataBody?: {
|
5386
5515
|
type?: UserDataType | undefined;
|
@@ -5495,24 +5624,28 @@ declare const RevokeMessageBody: {
|
|
5495
5624
|
} & { [K_30 in Exclude<keyof I_1["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
5496
5625
|
targetUrl?: string | undefined;
|
5497
5626
|
} & { [K_31 in Exclude<keyof I_1["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
5498
|
-
|
5627
|
+
verificationAddAddressBody?: ({
|
5499
5628
|
address?: Uint8Array | undefined;
|
5500
|
-
|
5629
|
+
claimSignature?: Uint8Array | undefined;
|
5501
5630
|
blockHash?: Uint8Array | undefined;
|
5502
5631
|
verificationType?: number | undefined;
|
5503
5632
|
chainId?: number | undefined;
|
5633
|
+
protocol?: Protocol | undefined;
|
5504
5634
|
} & {
|
5505
5635
|
address?: Uint8Array | undefined;
|
5506
|
-
|
5636
|
+
claimSignature?: Uint8Array | undefined;
|
5507
5637
|
blockHash?: Uint8Array | undefined;
|
5508
5638
|
verificationType?: number | undefined;
|
5509
5639
|
chainId?: number | undefined;
|
5510
|
-
|
5640
|
+
protocol?: Protocol | undefined;
|
5641
|
+
} & { [K_32 in Exclude<keyof I_1["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
5511
5642
|
verificationRemoveBody?: ({
|
5512
5643
|
address?: Uint8Array | undefined;
|
5644
|
+
protocol?: Protocol | undefined;
|
5513
5645
|
} & {
|
5514
5646
|
address?: Uint8Array | undefined;
|
5515
|
-
|
5647
|
+
protocol?: Protocol | undefined;
|
5648
|
+
} & { [K_33 in Exclude<keyof I_1["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
5516
5649
|
userDataBody?: ({
|
5517
5650
|
type?: UserDataType | undefined;
|
5518
5651
|
value?: string | undefined;
|
@@ -5882,15 +6015,17 @@ declare const MergeUserNameProofBody: {
|
|
5882
6015
|
} | undefined;
|
5883
6016
|
targetUrl?: string | undefined;
|
5884
6017
|
} | undefined;
|
5885
|
-
|
6018
|
+
verificationAddAddressBody?: {
|
5886
6019
|
address?: Uint8Array | undefined;
|
5887
|
-
|
6020
|
+
claimSignature?: Uint8Array | undefined;
|
5888
6021
|
blockHash?: Uint8Array | undefined;
|
5889
6022
|
verificationType?: number | undefined;
|
5890
6023
|
chainId?: number | undefined;
|
6024
|
+
protocol?: Protocol | undefined;
|
5891
6025
|
} | undefined;
|
5892
6026
|
verificationRemoveBody?: {
|
5893
6027
|
address?: Uint8Array | undefined;
|
6028
|
+
protocol?: Protocol | undefined;
|
5894
6029
|
} | undefined;
|
5895
6030
|
userDataBody?: {
|
5896
6031
|
type?: UserDataType | undefined;
|
@@ -5961,15 +6096,17 @@ declare const MergeUserNameProofBody: {
|
|
5961
6096
|
} | undefined;
|
5962
6097
|
targetUrl?: string | undefined;
|
5963
6098
|
} | undefined;
|
5964
|
-
|
6099
|
+
verificationAddAddressBody?: {
|
5965
6100
|
address?: Uint8Array | undefined;
|
5966
|
-
|
6101
|
+
claimSignature?: Uint8Array | undefined;
|
5967
6102
|
blockHash?: Uint8Array | undefined;
|
5968
6103
|
verificationType?: number | undefined;
|
5969
6104
|
chainId?: number | undefined;
|
6105
|
+
protocol?: Protocol | undefined;
|
5970
6106
|
} | undefined;
|
5971
6107
|
verificationRemoveBody?: {
|
5972
6108
|
address?: Uint8Array | undefined;
|
6109
|
+
protocol?: Protocol | undefined;
|
5973
6110
|
} | undefined;
|
5974
6111
|
userDataBody?: {
|
5975
6112
|
type?: UserDataType | undefined;
|
@@ -6071,15 +6208,17 @@ declare const MergeUserNameProofBody: {
|
|
6071
6208
|
} | undefined;
|
6072
6209
|
targetUrl?: string | undefined;
|
6073
6210
|
} | undefined;
|
6074
|
-
|
6211
|
+
verificationAddAddressBody?: {
|
6075
6212
|
address?: Uint8Array | undefined;
|
6076
|
-
|
6213
|
+
claimSignature?: Uint8Array | undefined;
|
6077
6214
|
blockHash?: Uint8Array | undefined;
|
6078
6215
|
verificationType?: number | undefined;
|
6079
6216
|
chainId?: number | undefined;
|
6217
|
+
protocol?: Protocol | undefined;
|
6080
6218
|
} | undefined;
|
6081
6219
|
verificationRemoveBody?: {
|
6082
6220
|
address?: Uint8Array | undefined;
|
6221
|
+
protocol?: Protocol | undefined;
|
6083
6222
|
} | undefined;
|
6084
6223
|
userDataBody?: {
|
6085
6224
|
type?: UserDataType | undefined;
|
@@ -6149,15 +6288,17 @@ declare const MergeUserNameProofBody: {
|
|
6149
6288
|
} | undefined;
|
6150
6289
|
targetUrl?: string | undefined;
|
6151
6290
|
} | undefined;
|
6152
|
-
|
6291
|
+
verificationAddAddressBody?: {
|
6153
6292
|
address?: Uint8Array | undefined;
|
6154
|
-
|
6293
|
+
claimSignature?: Uint8Array | undefined;
|
6155
6294
|
blockHash?: Uint8Array | undefined;
|
6156
6295
|
verificationType?: number | undefined;
|
6157
6296
|
chainId?: number | undefined;
|
6297
|
+
protocol?: Protocol | undefined;
|
6158
6298
|
} | undefined;
|
6159
6299
|
verificationRemoveBody?: {
|
6160
6300
|
address?: Uint8Array | undefined;
|
6301
|
+
protocol?: Protocol | undefined;
|
6161
6302
|
} | undefined;
|
6162
6303
|
userDataBody?: {
|
6163
6304
|
type?: UserDataType | undefined;
|
@@ -6272,24 +6413,28 @@ declare const MergeUserNameProofBody: {
|
|
6272
6413
|
} & { [K_11 in Exclude<keyof I["usernameProofMessage"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
6273
6414
|
targetUrl?: string | undefined;
|
6274
6415
|
} & { [K_12 in Exclude<keyof I["usernameProofMessage"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
6275
|
-
|
6416
|
+
verificationAddAddressBody?: ({
|
6276
6417
|
address?: Uint8Array | undefined;
|
6277
|
-
|
6418
|
+
claimSignature?: Uint8Array | undefined;
|
6278
6419
|
blockHash?: Uint8Array | undefined;
|
6279
6420
|
verificationType?: number | undefined;
|
6280
6421
|
chainId?: number | undefined;
|
6422
|
+
protocol?: Protocol | undefined;
|
6281
6423
|
} & {
|
6282
6424
|
address?: Uint8Array | undefined;
|
6283
|
-
|
6425
|
+
claimSignature?: Uint8Array | undefined;
|
6284
6426
|
blockHash?: Uint8Array | undefined;
|
6285
6427
|
verificationType?: number | undefined;
|
6286
6428
|
chainId?: number | undefined;
|
6287
|
-
|
6429
|
+
protocol?: Protocol | undefined;
|
6430
|
+
} & { [K_13 in Exclude<keyof I["usernameProofMessage"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
6288
6431
|
verificationRemoveBody?: ({
|
6289
6432
|
address?: Uint8Array | undefined;
|
6433
|
+
protocol?: Protocol | undefined;
|
6290
6434
|
} & {
|
6291
6435
|
address?: Uint8Array | undefined;
|
6292
|
-
|
6436
|
+
protocol?: Protocol | undefined;
|
6437
|
+
} & { [K_14 in Exclude<keyof I["usernameProofMessage"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
6293
6438
|
userDataBody?: ({
|
6294
6439
|
type?: UserDataType | undefined;
|
6295
6440
|
value?: string | undefined;
|
@@ -6384,15 +6529,17 @@ declare const MergeUserNameProofBody: {
|
|
6384
6529
|
} | undefined;
|
6385
6530
|
targetUrl?: string | undefined;
|
6386
6531
|
} | undefined;
|
6387
|
-
|
6532
|
+
verificationAddAddressBody?: {
|
6388
6533
|
address?: Uint8Array | undefined;
|
6389
|
-
|
6534
|
+
claimSignature?: Uint8Array | undefined;
|
6390
6535
|
blockHash?: Uint8Array | undefined;
|
6391
6536
|
verificationType?: number | undefined;
|
6392
6537
|
chainId?: number | undefined;
|
6538
|
+
protocol?: Protocol | undefined;
|
6393
6539
|
} | undefined;
|
6394
6540
|
verificationRemoveBody?: {
|
6395
6541
|
address?: Uint8Array | undefined;
|
6542
|
+
protocol?: Protocol | undefined;
|
6396
6543
|
} | undefined;
|
6397
6544
|
userDataBody?: {
|
6398
6545
|
type?: UserDataType | undefined;
|
@@ -6462,15 +6609,17 @@ declare const MergeUserNameProofBody: {
|
|
6462
6609
|
} | undefined;
|
6463
6610
|
targetUrl?: string | undefined;
|
6464
6611
|
} | undefined;
|
6465
|
-
|
6612
|
+
verificationAddAddressBody?: {
|
6466
6613
|
address?: Uint8Array | undefined;
|
6467
|
-
|
6614
|
+
claimSignature?: Uint8Array | undefined;
|
6468
6615
|
blockHash?: Uint8Array | undefined;
|
6469
6616
|
verificationType?: number | undefined;
|
6470
6617
|
chainId?: number | undefined;
|
6618
|
+
protocol?: Protocol | undefined;
|
6471
6619
|
} | undefined;
|
6472
6620
|
verificationRemoveBody?: {
|
6473
6621
|
address?: Uint8Array | undefined;
|
6622
|
+
protocol?: Protocol | undefined;
|
6474
6623
|
} | undefined;
|
6475
6624
|
userDataBody?: {
|
6476
6625
|
type?: UserDataType | undefined;
|
@@ -6585,24 +6734,28 @@ declare const MergeUserNameProofBody: {
|
|
6585
6734
|
} & { [K_31 in Exclude<keyof I["deletedUsernameProofMessage"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
6586
6735
|
targetUrl?: string | undefined;
|
6587
6736
|
} & { [K_32 in Exclude<keyof I["deletedUsernameProofMessage"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
6588
|
-
|
6737
|
+
verificationAddAddressBody?: ({
|
6589
6738
|
address?: Uint8Array | undefined;
|
6590
|
-
|
6739
|
+
claimSignature?: Uint8Array | undefined;
|
6591
6740
|
blockHash?: Uint8Array | undefined;
|
6592
6741
|
verificationType?: number | undefined;
|
6593
6742
|
chainId?: number | undefined;
|
6743
|
+
protocol?: Protocol | undefined;
|
6594
6744
|
} & {
|
6595
6745
|
address?: Uint8Array | undefined;
|
6596
|
-
|
6746
|
+
claimSignature?: Uint8Array | undefined;
|
6597
6747
|
blockHash?: Uint8Array | undefined;
|
6598
6748
|
verificationType?: number | undefined;
|
6599
6749
|
chainId?: number | undefined;
|
6600
|
-
|
6750
|
+
protocol?: Protocol | undefined;
|
6751
|
+
} & { [K_33 in Exclude<keyof I["deletedUsernameProofMessage"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
6601
6752
|
verificationRemoveBody?: ({
|
6602
6753
|
address?: Uint8Array | undefined;
|
6754
|
+
protocol?: Protocol | undefined;
|
6603
6755
|
} & {
|
6604
6756
|
address?: Uint8Array | undefined;
|
6605
|
-
|
6757
|
+
protocol?: Protocol | undefined;
|
6758
|
+
} & { [K_34 in Exclude<keyof I["deletedUsernameProofMessage"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
6606
6759
|
userDataBody?: ({
|
6607
6760
|
type?: UserDataType | undefined;
|
6608
6761
|
value?: string | undefined;
|
@@ -6715,15 +6868,17 @@ declare const MergeUserNameProofBody: {
|
|
6715
6868
|
} | undefined;
|
6716
6869
|
targetUrl?: string | undefined;
|
6717
6870
|
} | undefined;
|
6718
|
-
|
6871
|
+
verificationAddAddressBody?: {
|
6719
6872
|
address?: Uint8Array | undefined;
|
6720
|
-
|
6873
|
+
claimSignature?: Uint8Array | undefined;
|
6721
6874
|
blockHash?: Uint8Array | undefined;
|
6722
6875
|
verificationType?: number | undefined;
|
6723
6876
|
chainId?: number | undefined;
|
6877
|
+
protocol?: Protocol | undefined;
|
6724
6878
|
} | undefined;
|
6725
6879
|
verificationRemoveBody?: {
|
6726
6880
|
address?: Uint8Array | undefined;
|
6881
|
+
protocol?: Protocol | undefined;
|
6727
6882
|
} | undefined;
|
6728
6883
|
userDataBody?: {
|
6729
6884
|
type?: UserDataType | undefined;
|
@@ -6794,15 +6949,17 @@ declare const MergeUserNameProofBody: {
|
|
6794
6949
|
} | undefined;
|
6795
6950
|
targetUrl?: string | undefined;
|
6796
6951
|
} | undefined;
|
6797
|
-
|
6952
|
+
verificationAddAddressBody?: {
|
6798
6953
|
address?: Uint8Array | undefined;
|
6799
|
-
|
6954
|
+
claimSignature?: Uint8Array | undefined;
|
6800
6955
|
blockHash?: Uint8Array | undefined;
|
6801
6956
|
verificationType?: number | undefined;
|
6802
6957
|
chainId?: number | undefined;
|
6958
|
+
protocol?: Protocol | undefined;
|
6803
6959
|
} | undefined;
|
6804
6960
|
verificationRemoveBody?: {
|
6805
6961
|
address?: Uint8Array | undefined;
|
6962
|
+
protocol?: Protocol | undefined;
|
6806
6963
|
} | undefined;
|
6807
6964
|
userDataBody?: {
|
6808
6965
|
type?: UserDataType | undefined;
|
@@ -6904,15 +7061,17 @@ declare const MergeUserNameProofBody: {
|
|
6904
7061
|
} | undefined;
|
6905
7062
|
targetUrl?: string | undefined;
|
6906
7063
|
} | undefined;
|
6907
|
-
|
7064
|
+
verificationAddAddressBody?: {
|
6908
7065
|
address?: Uint8Array | undefined;
|
6909
|
-
|
7066
|
+
claimSignature?: Uint8Array | undefined;
|
6910
7067
|
blockHash?: Uint8Array | undefined;
|
6911
7068
|
verificationType?: number | undefined;
|
6912
7069
|
chainId?: number | undefined;
|
7070
|
+
protocol?: Protocol | undefined;
|
6913
7071
|
} | undefined;
|
6914
7072
|
verificationRemoveBody?: {
|
6915
7073
|
address?: Uint8Array | undefined;
|
7074
|
+
protocol?: Protocol | undefined;
|
6916
7075
|
} | undefined;
|
6917
7076
|
userDataBody?: {
|
6918
7077
|
type?: UserDataType | undefined;
|
@@ -6982,15 +7141,17 @@ declare const MergeUserNameProofBody: {
|
|
6982
7141
|
} | undefined;
|
6983
7142
|
targetUrl?: string | undefined;
|
6984
7143
|
} | undefined;
|
6985
|
-
|
7144
|
+
verificationAddAddressBody?: {
|
6986
7145
|
address?: Uint8Array | undefined;
|
6987
|
-
|
7146
|
+
claimSignature?: Uint8Array | undefined;
|
6988
7147
|
blockHash?: Uint8Array | undefined;
|
6989
7148
|
verificationType?: number | undefined;
|
6990
7149
|
chainId?: number | undefined;
|
7150
|
+
protocol?: Protocol | undefined;
|
6991
7151
|
} | undefined;
|
6992
7152
|
verificationRemoveBody?: {
|
6993
7153
|
address?: Uint8Array | undefined;
|
7154
|
+
protocol?: Protocol | undefined;
|
6994
7155
|
} | undefined;
|
6995
7156
|
userDataBody?: {
|
6996
7157
|
type?: UserDataType | undefined;
|
@@ -7105,24 +7266,28 @@ declare const MergeUserNameProofBody: {
|
|
7105
7266
|
} & { [K_54 in Exclude<keyof I_1["usernameProofMessage"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
7106
7267
|
targetUrl?: string | undefined;
|
7107
7268
|
} & { [K_55 in Exclude<keyof I_1["usernameProofMessage"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
7108
|
-
|
7269
|
+
verificationAddAddressBody?: ({
|
7109
7270
|
address?: Uint8Array | undefined;
|
7110
|
-
|
7271
|
+
claimSignature?: Uint8Array | undefined;
|
7111
7272
|
blockHash?: Uint8Array | undefined;
|
7112
7273
|
verificationType?: number | undefined;
|
7113
7274
|
chainId?: number | undefined;
|
7275
|
+
protocol?: Protocol | undefined;
|
7114
7276
|
} & {
|
7115
7277
|
address?: Uint8Array | undefined;
|
7116
|
-
|
7278
|
+
claimSignature?: Uint8Array | undefined;
|
7117
7279
|
blockHash?: Uint8Array | undefined;
|
7118
7280
|
verificationType?: number | undefined;
|
7119
7281
|
chainId?: number | undefined;
|
7120
|
-
|
7282
|
+
protocol?: Protocol | undefined;
|
7283
|
+
} & { [K_56 in Exclude<keyof I_1["usernameProofMessage"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
7121
7284
|
verificationRemoveBody?: ({
|
7122
7285
|
address?: Uint8Array | undefined;
|
7286
|
+
protocol?: Protocol | undefined;
|
7123
7287
|
} & {
|
7124
7288
|
address?: Uint8Array | undefined;
|
7125
|
-
|
7289
|
+
protocol?: Protocol | undefined;
|
7290
|
+
} & { [K_57 in Exclude<keyof I_1["usernameProofMessage"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
7126
7291
|
userDataBody?: ({
|
7127
7292
|
type?: UserDataType | undefined;
|
7128
7293
|
value?: string | undefined;
|
@@ -7217,15 +7382,17 @@ declare const MergeUserNameProofBody: {
|
|
7217
7382
|
} | undefined;
|
7218
7383
|
targetUrl?: string | undefined;
|
7219
7384
|
} | undefined;
|
7220
|
-
|
7385
|
+
verificationAddAddressBody?: {
|
7221
7386
|
address?: Uint8Array | undefined;
|
7222
|
-
|
7387
|
+
claimSignature?: Uint8Array | undefined;
|
7223
7388
|
blockHash?: Uint8Array | undefined;
|
7224
7389
|
verificationType?: number | undefined;
|
7225
7390
|
chainId?: number | undefined;
|
7391
|
+
protocol?: Protocol | undefined;
|
7226
7392
|
} | undefined;
|
7227
7393
|
verificationRemoveBody?: {
|
7228
7394
|
address?: Uint8Array | undefined;
|
7395
|
+
protocol?: Protocol | undefined;
|
7229
7396
|
} | undefined;
|
7230
7397
|
userDataBody?: {
|
7231
7398
|
type?: UserDataType | undefined;
|
@@ -7295,15 +7462,17 @@ declare const MergeUserNameProofBody: {
|
|
7295
7462
|
} | undefined;
|
7296
7463
|
targetUrl?: string | undefined;
|
7297
7464
|
} | undefined;
|
7298
|
-
|
7465
|
+
verificationAddAddressBody?: {
|
7299
7466
|
address?: Uint8Array | undefined;
|
7300
|
-
|
7467
|
+
claimSignature?: Uint8Array | undefined;
|
7301
7468
|
blockHash?: Uint8Array | undefined;
|
7302
7469
|
verificationType?: number | undefined;
|
7303
7470
|
chainId?: number | undefined;
|
7471
|
+
protocol?: Protocol | undefined;
|
7304
7472
|
} | undefined;
|
7305
7473
|
verificationRemoveBody?: {
|
7306
7474
|
address?: Uint8Array | undefined;
|
7475
|
+
protocol?: Protocol | undefined;
|
7307
7476
|
} | undefined;
|
7308
7477
|
userDataBody?: {
|
7309
7478
|
type?: UserDataType | undefined;
|
@@ -7418,24 +7587,28 @@ declare const MergeUserNameProofBody: {
|
|
7418
7587
|
} & { [K_74 in Exclude<keyof I_1["deletedUsernameProofMessage"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
7419
7588
|
targetUrl?: string | undefined;
|
7420
7589
|
} & { [K_75 in Exclude<keyof I_1["deletedUsernameProofMessage"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
7421
|
-
|
7590
|
+
verificationAddAddressBody?: ({
|
7422
7591
|
address?: Uint8Array | undefined;
|
7423
|
-
|
7592
|
+
claimSignature?: Uint8Array | undefined;
|
7424
7593
|
blockHash?: Uint8Array | undefined;
|
7425
7594
|
verificationType?: number | undefined;
|
7426
7595
|
chainId?: number | undefined;
|
7596
|
+
protocol?: Protocol | undefined;
|
7427
7597
|
} & {
|
7428
7598
|
address?: Uint8Array | undefined;
|
7429
|
-
|
7599
|
+
claimSignature?: Uint8Array | undefined;
|
7430
7600
|
blockHash?: Uint8Array | undefined;
|
7431
7601
|
verificationType?: number | undefined;
|
7432
7602
|
chainId?: number | undefined;
|
7433
|
-
|
7603
|
+
protocol?: Protocol | undefined;
|
7604
|
+
} & { [K_76 in Exclude<keyof I_1["deletedUsernameProofMessage"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
7434
7605
|
verificationRemoveBody?: ({
|
7435
7606
|
address?: Uint8Array | undefined;
|
7607
|
+
protocol?: Protocol | undefined;
|
7436
7608
|
} & {
|
7437
7609
|
address?: Uint8Array | undefined;
|
7438
|
-
|
7610
|
+
protocol?: Protocol | undefined;
|
7611
|
+
} & { [K_77 in Exclude<keyof I_1["deletedUsernameProofMessage"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
7439
7612
|
userDataBody?: ({
|
7440
7613
|
type?: UserDataType | undefined;
|
7441
7614
|
value?: string | undefined;
|
@@ -7560,15 +7733,17 @@ declare const HubEvent: {
|
|
7560
7733
|
} | undefined;
|
7561
7734
|
targetUrl?: string | undefined;
|
7562
7735
|
} | undefined;
|
7563
|
-
|
7736
|
+
verificationAddAddressBody?: {
|
7564
7737
|
address?: Uint8Array | undefined;
|
7565
|
-
|
7738
|
+
claimSignature?: Uint8Array | undefined;
|
7566
7739
|
blockHash?: Uint8Array | undefined;
|
7567
7740
|
verificationType?: number | undefined;
|
7568
7741
|
chainId?: number | undefined;
|
7742
|
+
protocol?: Protocol | undefined;
|
7569
7743
|
} | undefined;
|
7570
7744
|
verificationRemoveBody?: {
|
7571
7745
|
address?: Uint8Array | undefined;
|
7746
|
+
protocol?: Protocol | undefined;
|
7572
7747
|
} | undefined;
|
7573
7748
|
userDataBody?: {
|
7574
7749
|
type?: UserDataType | undefined;
|
@@ -7639,15 +7814,17 @@ declare const HubEvent: {
|
|
7639
7814
|
} | undefined;
|
7640
7815
|
targetUrl?: string | undefined;
|
7641
7816
|
} | undefined;
|
7642
|
-
|
7817
|
+
verificationAddAddressBody?: {
|
7643
7818
|
address?: Uint8Array | undefined;
|
7644
|
-
|
7819
|
+
claimSignature?: Uint8Array | undefined;
|
7645
7820
|
blockHash?: Uint8Array | undefined;
|
7646
7821
|
verificationType?: number | undefined;
|
7647
7822
|
chainId?: number | undefined;
|
7823
|
+
protocol?: Protocol | undefined;
|
7648
7824
|
} | undefined;
|
7649
7825
|
verificationRemoveBody?: {
|
7650
7826
|
address?: Uint8Array | undefined;
|
7827
|
+
protocol?: Protocol | undefined;
|
7651
7828
|
} | undefined;
|
7652
7829
|
userDataBody?: {
|
7653
7830
|
type?: UserDataType | undefined;
|
@@ -7720,15 +7897,17 @@ declare const HubEvent: {
|
|
7720
7897
|
} | undefined;
|
7721
7898
|
targetUrl?: string | undefined;
|
7722
7899
|
} | undefined;
|
7723
|
-
|
7900
|
+
verificationAddAddressBody?: {
|
7724
7901
|
address?: Uint8Array | undefined;
|
7725
|
-
|
7902
|
+
claimSignature?: Uint8Array | undefined;
|
7726
7903
|
blockHash?: Uint8Array | undefined;
|
7727
7904
|
verificationType?: number | undefined;
|
7728
7905
|
chainId?: number | undefined;
|
7906
|
+
protocol?: Protocol | undefined;
|
7729
7907
|
} | undefined;
|
7730
7908
|
verificationRemoveBody?: {
|
7731
7909
|
address?: Uint8Array | undefined;
|
7910
|
+
protocol?: Protocol | undefined;
|
7732
7911
|
} | undefined;
|
7733
7912
|
userDataBody?: {
|
7734
7913
|
type?: UserDataType | undefined;
|
@@ -7801,15 +7980,17 @@ declare const HubEvent: {
|
|
7801
7980
|
} | undefined;
|
7802
7981
|
targetUrl?: string | undefined;
|
7803
7982
|
} | undefined;
|
7804
|
-
|
7983
|
+
verificationAddAddressBody?: {
|
7805
7984
|
address?: Uint8Array | undefined;
|
7806
|
-
|
7985
|
+
claimSignature?: Uint8Array | undefined;
|
7807
7986
|
blockHash?: Uint8Array | undefined;
|
7808
7987
|
verificationType?: number | undefined;
|
7809
7988
|
chainId?: number | undefined;
|
7989
|
+
protocol?: Protocol | undefined;
|
7810
7990
|
} | undefined;
|
7811
7991
|
verificationRemoveBody?: {
|
7812
7992
|
address?: Uint8Array | undefined;
|
7993
|
+
protocol?: Protocol | undefined;
|
7813
7994
|
} | undefined;
|
7814
7995
|
userDataBody?: {
|
7815
7996
|
type?: UserDataType | undefined;
|
@@ -7898,15 +8079,17 @@ declare const HubEvent: {
|
|
7898
8079
|
} | undefined;
|
7899
8080
|
targetUrl?: string | undefined;
|
7900
8081
|
} | undefined;
|
7901
|
-
|
8082
|
+
verificationAddAddressBody?: {
|
7902
8083
|
address?: Uint8Array | undefined;
|
7903
|
-
|
8084
|
+
claimSignature?: Uint8Array | undefined;
|
7904
8085
|
blockHash?: Uint8Array | undefined;
|
7905
8086
|
verificationType?: number | undefined;
|
7906
8087
|
chainId?: number | undefined;
|
8088
|
+
protocol?: Protocol | undefined;
|
7907
8089
|
} | undefined;
|
7908
8090
|
verificationRemoveBody?: {
|
7909
8091
|
address?: Uint8Array | undefined;
|
8092
|
+
protocol?: Protocol | undefined;
|
7910
8093
|
} | undefined;
|
7911
8094
|
userDataBody?: {
|
7912
8095
|
type?: UserDataType | undefined;
|
@@ -7977,15 +8160,17 @@ declare const HubEvent: {
|
|
7977
8160
|
} | undefined;
|
7978
8161
|
targetUrl?: string | undefined;
|
7979
8162
|
} | undefined;
|
7980
|
-
|
8163
|
+
verificationAddAddressBody?: {
|
7981
8164
|
address?: Uint8Array | undefined;
|
7982
|
-
|
8165
|
+
claimSignature?: Uint8Array | undefined;
|
7983
8166
|
blockHash?: Uint8Array | undefined;
|
7984
8167
|
verificationType?: number | undefined;
|
7985
8168
|
chainId?: number | undefined;
|
8169
|
+
protocol?: Protocol | undefined;
|
7986
8170
|
} | undefined;
|
7987
8171
|
verificationRemoveBody?: {
|
7988
8172
|
address?: Uint8Array | undefined;
|
8173
|
+
protocol?: Protocol | undefined;
|
7989
8174
|
} | undefined;
|
7990
8175
|
userDataBody?: {
|
7991
8176
|
type?: UserDataType | undefined;
|
@@ -8096,15 +8281,17 @@ declare const HubEvent: {
|
|
8096
8281
|
} | undefined;
|
8097
8282
|
targetUrl?: string | undefined;
|
8098
8283
|
} | undefined;
|
8099
|
-
|
8284
|
+
verificationAddAddressBody?: {
|
8100
8285
|
address?: Uint8Array | undefined;
|
8101
|
-
|
8286
|
+
claimSignature?: Uint8Array | undefined;
|
8102
8287
|
blockHash?: Uint8Array | undefined;
|
8103
8288
|
verificationType?: number | undefined;
|
8104
8289
|
chainId?: number | undefined;
|
8290
|
+
protocol?: Protocol | undefined;
|
8105
8291
|
} | undefined;
|
8106
8292
|
verificationRemoveBody?: {
|
8107
8293
|
address?: Uint8Array | undefined;
|
8294
|
+
protocol?: Protocol | undefined;
|
8108
8295
|
} | undefined;
|
8109
8296
|
userDataBody?: {
|
8110
8297
|
type?: UserDataType | undefined;
|
@@ -8175,15 +8362,17 @@ declare const HubEvent: {
|
|
8175
8362
|
} | undefined;
|
8176
8363
|
targetUrl?: string | undefined;
|
8177
8364
|
} | undefined;
|
8178
|
-
|
8365
|
+
verificationAddAddressBody?: {
|
8179
8366
|
address?: Uint8Array | undefined;
|
8180
|
-
|
8367
|
+
claimSignature?: Uint8Array | undefined;
|
8181
8368
|
blockHash?: Uint8Array | undefined;
|
8182
8369
|
verificationType?: number | undefined;
|
8183
8370
|
chainId?: number | undefined;
|
8371
|
+
protocol?: Protocol | undefined;
|
8184
8372
|
} | undefined;
|
8185
8373
|
verificationRemoveBody?: {
|
8186
8374
|
address?: Uint8Array | undefined;
|
8375
|
+
protocol?: Protocol | undefined;
|
8187
8376
|
} | undefined;
|
8188
8377
|
userDataBody?: {
|
8189
8378
|
type?: UserDataType | undefined;
|
@@ -8255,15 +8444,17 @@ declare const HubEvent: {
|
|
8255
8444
|
} | undefined;
|
8256
8445
|
targetUrl?: string | undefined;
|
8257
8446
|
} | undefined;
|
8258
|
-
|
8447
|
+
verificationAddAddressBody?: {
|
8259
8448
|
address?: Uint8Array | undefined;
|
8260
|
-
|
8449
|
+
claimSignature?: Uint8Array | undefined;
|
8261
8450
|
blockHash?: Uint8Array | undefined;
|
8262
8451
|
verificationType?: number | undefined;
|
8263
8452
|
chainId?: number | undefined;
|
8453
|
+
protocol?: Protocol | undefined;
|
8264
8454
|
} | undefined;
|
8265
8455
|
verificationRemoveBody?: {
|
8266
8456
|
address?: Uint8Array | undefined;
|
8457
|
+
protocol?: Protocol | undefined;
|
8267
8458
|
} | undefined;
|
8268
8459
|
userDataBody?: {
|
8269
8460
|
type?: UserDataType | undefined;
|
@@ -8333,15 +8524,17 @@ declare const HubEvent: {
|
|
8333
8524
|
} | undefined;
|
8334
8525
|
targetUrl?: string | undefined;
|
8335
8526
|
} | undefined;
|
8336
|
-
|
8527
|
+
verificationAddAddressBody?: {
|
8337
8528
|
address?: Uint8Array | undefined;
|
8338
|
-
|
8529
|
+
claimSignature?: Uint8Array | undefined;
|
8339
8530
|
blockHash?: Uint8Array | undefined;
|
8340
8531
|
verificationType?: number | undefined;
|
8341
8532
|
chainId?: number | undefined;
|
8533
|
+
protocol?: Protocol | undefined;
|
8342
8534
|
} | undefined;
|
8343
8535
|
verificationRemoveBody?: {
|
8344
8536
|
address?: Uint8Array | undefined;
|
8537
|
+
protocol?: Protocol | undefined;
|
8345
8538
|
} | undefined;
|
8346
8539
|
userDataBody?: {
|
8347
8540
|
type?: UserDataType | undefined;
|
@@ -8456,24 +8649,28 @@ declare const HubEvent: {
|
|
8456
8649
|
} & { [K_9 in Exclude<keyof I["mergeMessageBody"]["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
8457
8650
|
targetUrl?: string | undefined;
|
8458
8651
|
} & { [K_10 in Exclude<keyof I["mergeMessageBody"]["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
8459
|
-
|
8652
|
+
verificationAddAddressBody?: ({
|
8460
8653
|
address?: Uint8Array | undefined;
|
8461
|
-
|
8654
|
+
claimSignature?: Uint8Array | undefined;
|
8462
8655
|
blockHash?: Uint8Array | undefined;
|
8463
8656
|
verificationType?: number | undefined;
|
8464
8657
|
chainId?: number | undefined;
|
8658
|
+
protocol?: Protocol | undefined;
|
8465
8659
|
} & {
|
8466
8660
|
address?: Uint8Array | undefined;
|
8467
|
-
|
8661
|
+
claimSignature?: Uint8Array | undefined;
|
8468
8662
|
blockHash?: Uint8Array | undefined;
|
8469
8663
|
verificationType?: number | undefined;
|
8470
8664
|
chainId?: number | undefined;
|
8471
|
-
|
8665
|
+
protocol?: Protocol | undefined;
|
8666
|
+
} & { [K_11 in Exclude<keyof I["mergeMessageBody"]["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
8472
8667
|
verificationRemoveBody?: ({
|
8473
8668
|
address?: Uint8Array | undefined;
|
8669
|
+
protocol?: Protocol | undefined;
|
8474
8670
|
} & {
|
8475
8671
|
address?: Uint8Array | undefined;
|
8476
|
-
|
8672
|
+
protocol?: Protocol | undefined;
|
8673
|
+
} & { [K_12 in Exclude<keyof I["mergeMessageBody"]["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
8477
8674
|
userDataBody?: ({
|
8478
8675
|
type?: UserDataType | undefined;
|
8479
8676
|
value?: string | undefined;
|
@@ -8568,15 +8765,17 @@ declare const HubEvent: {
|
|
8568
8765
|
} | undefined;
|
8569
8766
|
targetUrl?: string | undefined;
|
8570
8767
|
} | undefined;
|
8571
|
-
|
8768
|
+
verificationAddAddressBody?: {
|
8572
8769
|
address?: Uint8Array | undefined;
|
8573
|
-
|
8770
|
+
claimSignature?: Uint8Array | undefined;
|
8574
8771
|
blockHash?: Uint8Array | undefined;
|
8575
8772
|
verificationType?: number | undefined;
|
8576
8773
|
chainId?: number | undefined;
|
8774
|
+
protocol?: Protocol | undefined;
|
8577
8775
|
} | undefined;
|
8578
8776
|
verificationRemoveBody?: {
|
8579
8777
|
address?: Uint8Array | undefined;
|
8778
|
+
protocol?: Protocol | undefined;
|
8580
8779
|
} | undefined;
|
8581
8780
|
userDataBody?: {
|
8582
8781
|
type?: UserDataType | undefined;
|
@@ -8646,15 +8845,17 @@ declare const HubEvent: {
|
|
8646
8845
|
} | undefined;
|
8647
8846
|
targetUrl?: string | undefined;
|
8648
8847
|
} | undefined;
|
8649
|
-
|
8848
|
+
verificationAddAddressBody?: {
|
8650
8849
|
address?: Uint8Array | undefined;
|
8651
|
-
|
8850
|
+
claimSignature?: Uint8Array | undefined;
|
8652
8851
|
blockHash?: Uint8Array | undefined;
|
8653
8852
|
verificationType?: number | undefined;
|
8654
8853
|
chainId?: number | undefined;
|
8854
|
+
protocol?: Protocol | undefined;
|
8655
8855
|
} | undefined;
|
8656
8856
|
verificationRemoveBody?: {
|
8657
8857
|
address?: Uint8Array | undefined;
|
8858
|
+
protocol?: Protocol | undefined;
|
8658
8859
|
} | undefined;
|
8659
8860
|
userDataBody?: {
|
8660
8861
|
type?: UserDataType | undefined;
|
@@ -8724,15 +8925,17 @@ declare const HubEvent: {
|
|
8724
8925
|
} | undefined;
|
8725
8926
|
targetUrl?: string | undefined;
|
8726
8927
|
} | undefined;
|
8727
|
-
|
8928
|
+
verificationAddAddressBody?: {
|
8728
8929
|
address?: Uint8Array | undefined;
|
8729
|
-
|
8930
|
+
claimSignature?: Uint8Array | undefined;
|
8730
8931
|
blockHash?: Uint8Array | undefined;
|
8731
8932
|
verificationType?: number | undefined;
|
8732
8933
|
chainId?: number | undefined;
|
8934
|
+
protocol?: Protocol | undefined;
|
8733
8935
|
} | undefined;
|
8734
8936
|
verificationRemoveBody?: {
|
8735
8937
|
address?: Uint8Array | undefined;
|
8938
|
+
protocol?: Protocol | undefined;
|
8736
8939
|
} | undefined;
|
8737
8940
|
userDataBody?: {
|
8738
8941
|
type?: UserDataType | undefined;
|
@@ -8847,24 +9050,28 @@ declare const HubEvent: {
|
|
8847
9050
|
} & { [K_29 in Exclude<keyof I["mergeMessageBody"]["deletedMessages"][number]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
8848
9051
|
targetUrl?: string | undefined;
|
8849
9052
|
} & { [K_30 in Exclude<keyof I["mergeMessageBody"]["deletedMessages"][number]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
8850
|
-
|
9053
|
+
verificationAddAddressBody?: ({
|
8851
9054
|
address?: Uint8Array | undefined;
|
8852
|
-
|
9055
|
+
claimSignature?: Uint8Array | undefined;
|
8853
9056
|
blockHash?: Uint8Array | undefined;
|
8854
9057
|
verificationType?: number | undefined;
|
8855
9058
|
chainId?: number | undefined;
|
9059
|
+
protocol?: Protocol | undefined;
|
8856
9060
|
} & {
|
8857
9061
|
address?: Uint8Array | undefined;
|
8858
|
-
|
9062
|
+
claimSignature?: Uint8Array | undefined;
|
8859
9063
|
blockHash?: Uint8Array | undefined;
|
8860
9064
|
verificationType?: number | undefined;
|
8861
9065
|
chainId?: number | undefined;
|
8862
|
-
|
9066
|
+
protocol?: Protocol | undefined;
|
9067
|
+
} & { [K_31 in Exclude<keyof I["mergeMessageBody"]["deletedMessages"][number]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
8863
9068
|
verificationRemoveBody?: ({
|
8864
9069
|
address?: Uint8Array | undefined;
|
9070
|
+
protocol?: Protocol | undefined;
|
8865
9071
|
} & {
|
8866
9072
|
address?: Uint8Array | undefined;
|
8867
|
-
|
9073
|
+
protocol?: Protocol | undefined;
|
9074
|
+
} & { [K_32 in Exclude<keyof I["mergeMessageBody"]["deletedMessages"][number]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
8868
9075
|
userDataBody?: ({
|
8869
9076
|
type?: UserDataType | undefined;
|
8870
9077
|
value?: string | undefined;
|
@@ -8958,15 +9165,17 @@ declare const HubEvent: {
|
|
8958
9165
|
} | undefined;
|
8959
9166
|
targetUrl?: string | undefined;
|
8960
9167
|
} | undefined;
|
8961
|
-
|
9168
|
+
verificationAddAddressBody?: {
|
8962
9169
|
address?: Uint8Array | undefined;
|
8963
|
-
|
9170
|
+
claimSignature?: Uint8Array | undefined;
|
8964
9171
|
blockHash?: Uint8Array | undefined;
|
8965
9172
|
verificationType?: number | undefined;
|
8966
9173
|
chainId?: number | undefined;
|
9174
|
+
protocol?: Protocol | undefined;
|
8967
9175
|
} | undefined;
|
8968
9176
|
verificationRemoveBody?: {
|
8969
9177
|
address?: Uint8Array | undefined;
|
9178
|
+
protocol?: Protocol | undefined;
|
8970
9179
|
} | undefined;
|
8971
9180
|
userDataBody?: {
|
8972
9181
|
type?: UserDataType | undefined;
|
@@ -9039,15 +9248,17 @@ declare const HubEvent: {
|
|
9039
9248
|
} | undefined;
|
9040
9249
|
targetUrl?: string | undefined;
|
9041
9250
|
} | undefined;
|
9042
|
-
|
9251
|
+
verificationAddAddressBody?: {
|
9043
9252
|
address?: Uint8Array | undefined;
|
9044
|
-
|
9253
|
+
claimSignature?: Uint8Array | undefined;
|
9045
9254
|
blockHash?: Uint8Array | undefined;
|
9046
9255
|
verificationType?: number | undefined;
|
9047
9256
|
chainId?: number | undefined;
|
9257
|
+
protocol?: Protocol | undefined;
|
9048
9258
|
} | undefined;
|
9049
9259
|
verificationRemoveBody?: {
|
9050
9260
|
address?: Uint8Array | undefined;
|
9261
|
+
protocol?: Protocol | undefined;
|
9051
9262
|
} | undefined;
|
9052
9263
|
userDataBody?: {
|
9053
9264
|
type?: UserDataType | undefined;
|
@@ -9119,15 +9330,17 @@ declare const HubEvent: {
|
|
9119
9330
|
} | undefined;
|
9120
9331
|
targetUrl?: string | undefined;
|
9121
9332
|
} | undefined;
|
9122
|
-
|
9333
|
+
verificationAddAddressBody?: {
|
9123
9334
|
address?: Uint8Array | undefined;
|
9124
|
-
|
9335
|
+
claimSignature?: Uint8Array | undefined;
|
9125
9336
|
blockHash?: Uint8Array | undefined;
|
9126
9337
|
verificationType?: number | undefined;
|
9127
9338
|
chainId?: number | undefined;
|
9339
|
+
protocol?: Protocol | undefined;
|
9128
9340
|
} | undefined;
|
9129
9341
|
verificationRemoveBody?: {
|
9130
9342
|
address?: Uint8Array | undefined;
|
9343
|
+
protocol?: Protocol | undefined;
|
9131
9344
|
} | undefined;
|
9132
9345
|
userDataBody?: {
|
9133
9346
|
type?: UserDataType | undefined;
|
@@ -9197,15 +9410,17 @@ declare const HubEvent: {
|
|
9197
9410
|
} | undefined;
|
9198
9411
|
targetUrl?: string | undefined;
|
9199
9412
|
} | undefined;
|
9200
|
-
|
9413
|
+
verificationAddAddressBody?: {
|
9201
9414
|
address?: Uint8Array | undefined;
|
9202
|
-
|
9415
|
+
claimSignature?: Uint8Array | undefined;
|
9203
9416
|
blockHash?: Uint8Array | undefined;
|
9204
9417
|
verificationType?: number | undefined;
|
9205
9418
|
chainId?: number | undefined;
|
9419
|
+
protocol?: Protocol | undefined;
|
9206
9420
|
} | undefined;
|
9207
9421
|
verificationRemoveBody?: {
|
9208
9422
|
address?: Uint8Array | undefined;
|
9423
|
+
protocol?: Protocol | undefined;
|
9209
9424
|
} | undefined;
|
9210
9425
|
userDataBody?: {
|
9211
9426
|
type?: UserDataType | undefined;
|
@@ -9320,24 +9535,28 @@ declare const HubEvent: {
|
|
9320
9535
|
} & { [K_51 in Exclude<keyof I["pruneMessageBody"]["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
9321
9536
|
targetUrl?: string | undefined;
|
9322
9537
|
} & { [K_52 in Exclude<keyof I["pruneMessageBody"]["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
9323
|
-
|
9538
|
+
verificationAddAddressBody?: ({
|
9324
9539
|
address?: Uint8Array | undefined;
|
9325
|
-
|
9540
|
+
claimSignature?: Uint8Array | undefined;
|
9326
9541
|
blockHash?: Uint8Array | undefined;
|
9327
9542
|
verificationType?: number | undefined;
|
9328
9543
|
chainId?: number | undefined;
|
9544
|
+
protocol?: Protocol | undefined;
|
9329
9545
|
} & {
|
9330
9546
|
address?: Uint8Array | undefined;
|
9331
|
-
|
9547
|
+
claimSignature?: Uint8Array | undefined;
|
9332
9548
|
blockHash?: Uint8Array | undefined;
|
9333
9549
|
verificationType?: number | undefined;
|
9334
9550
|
chainId?: number | undefined;
|
9335
|
-
|
9551
|
+
protocol?: Protocol | undefined;
|
9552
|
+
} & { [K_53 in Exclude<keyof I["pruneMessageBody"]["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
9336
9553
|
verificationRemoveBody?: ({
|
9337
9554
|
address?: Uint8Array | undefined;
|
9555
|
+
protocol?: Protocol | undefined;
|
9338
9556
|
} & {
|
9339
9557
|
address?: Uint8Array | undefined;
|
9340
|
-
|
9558
|
+
protocol?: Protocol | undefined;
|
9559
|
+
} & { [K_54 in Exclude<keyof I["pruneMessageBody"]["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
9341
9560
|
userDataBody?: ({
|
9342
9561
|
type?: UserDataType | undefined;
|
9343
9562
|
value?: string | undefined;
|
@@ -9434,15 +9653,17 @@ declare const HubEvent: {
|
|
9434
9653
|
} | undefined;
|
9435
9654
|
targetUrl?: string | undefined;
|
9436
9655
|
} | undefined;
|
9437
|
-
|
9656
|
+
verificationAddAddressBody?: {
|
9438
9657
|
address?: Uint8Array | undefined;
|
9439
|
-
|
9658
|
+
claimSignature?: Uint8Array | undefined;
|
9440
9659
|
blockHash?: Uint8Array | undefined;
|
9441
9660
|
verificationType?: number | undefined;
|
9442
9661
|
chainId?: number | undefined;
|
9662
|
+
protocol?: Protocol | undefined;
|
9443
9663
|
} | undefined;
|
9444
9664
|
verificationRemoveBody?: {
|
9445
9665
|
address?: Uint8Array | undefined;
|
9666
|
+
protocol?: Protocol | undefined;
|
9446
9667
|
} | undefined;
|
9447
9668
|
userDataBody?: {
|
9448
9669
|
type?: UserDataType | undefined;
|
@@ -9514,15 +9735,17 @@ declare const HubEvent: {
|
|
9514
9735
|
} | undefined;
|
9515
9736
|
targetUrl?: string | undefined;
|
9516
9737
|
} | undefined;
|
9517
|
-
|
9738
|
+
verificationAddAddressBody?: {
|
9518
9739
|
address?: Uint8Array | undefined;
|
9519
|
-
|
9740
|
+
claimSignature?: Uint8Array | undefined;
|
9520
9741
|
blockHash?: Uint8Array | undefined;
|
9521
9742
|
verificationType?: number | undefined;
|
9522
9743
|
chainId?: number | undefined;
|
9744
|
+
protocol?: Protocol | undefined;
|
9523
9745
|
} | undefined;
|
9524
9746
|
verificationRemoveBody?: {
|
9525
9747
|
address?: Uint8Array | undefined;
|
9748
|
+
protocol?: Protocol | undefined;
|
9526
9749
|
} | undefined;
|
9527
9750
|
userDataBody?: {
|
9528
9751
|
type?: UserDataType | undefined;
|
@@ -9592,15 +9815,17 @@ declare const HubEvent: {
|
|
9592
9815
|
} | undefined;
|
9593
9816
|
targetUrl?: string | undefined;
|
9594
9817
|
} | undefined;
|
9595
|
-
|
9818
|
+
verificationAddAddressBody?: {
|
9596
9819
|
address?: Uint8Array | undefined;
|
9597
|
-
|
9820
|
+
claimSignature?: Uint8Array | undefined;
|
9598
9821
|
blockHash?: Uint8Array | undefined;
|
9599
9822
|
verificationType?: number | undefined;
|
9600
9823
|
chainId?: number | undefined;
|
9824
|
+
protocol?: Protocol | undefined;
|
9601
9825
|
} | undefined;
|
9602
9826
|
verificationRemoveBody?: {
|
9603
9827
|
address?: Uint8Array | undefined;
|
9828
|
+
protocol?: Protocol | undefined;
|
9604
9829
|
} | undefined;
|
9605
9830
|
userDataBody?: {
|
9606
9831
|
type?: UserDataType | undefined;
|
@@ -9715,24 +9940,28 @@ declare const HubEvent: {
|
|
9715
9940
|
} & { [K_72 in Exclude<keyof I["revokeMessageBody"]["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
9716
9941
|
targetUrl?: string | undefined;
|
9717
9942
|
} & { [K_73 in Exclude<keyof I["revokeMessageBody"]["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
9718
|
-
|
9943
|
+
verificationAddAddressBody?: ({
|
9719
9944
|
address?: Uint8Array | undefined;
|
9720
|
-
|
9945
|
+
claimSignature?: Uint8Array | undefined;
|
9721
9946
|
blockHash?: Uint8Array | undefined;
|
9722
9947
|
verificationType?: number | undefined;
|
9723
9948
|
chainId?: number | undefined;
|
9949
|
+
protocol?: Protocol | undefined;
|
9724
9950
|
} & {
|
9725
9951
|
address?: Uint8Array | undefined;
|
9726
|
-
|
9952
|
+
claimSignature?: Uint8Array | undefined;
|
9727
9953
|
blockHash?: Uint8Array | undefined;
|
9728
9954
|
verificationType?: number | undefined;
|
9729
9955
|
chainId?: number | undefined;
|
9730
|
-
|
9956
|
+
protocol?: Protocol | undefined;
|
9957
|
+
} & { [K_74 in Exclude<keyof I["revokeMessageBody"]["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
9731
9958
|
verificationRemoveBody?: ({
|
9732
9959
|
address?: Uint8Array | undefined;
|
9960
|
+
protocol?: Protocol | undefined;
|
9733
9961
|
} & {
|
9734
9962
|
address?: Uint8Array | undefined;
|
9735
|
-
|
9963
|
+
protocol?: Protocol | undefined;
|
9964
|
+
} & { [K_75 in Exclude<keyof I["revokeMessageBody"]["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
9736
9965
|
userDataBody?: ({
|
9737
9966
|
type?: UserDataType | undefined;
|
9738
9967
|
value?: string | undefined;
|
@@ -9845,15 +10074,17 @@ declare const HubEvent: {
|
|
9845
10074
|
} | undefined;
|
9846
10075
|
targetUrl?: string | undefined;
|
9847
10076
|
} | undefined;
|
9848
|
-
|
10077
|
+
verificationAddAddressBody?: {
|
9849
10078
|
address?: Uint8Array | undefined;
|
9850
|
-
|
10079
|
+
claimSignature?: Uint8Array | undefined;
|
9851
10080
|
blockHash?: Uint8Array | undefined;
|
9852
10081
|
verificationType?: number | undefined;
|
9853
10082
|
chainId?: number | undefined;
|
10083
|
+
protocol?: Protocol | undefined;
|
9854
10084
|
} | undefined;
|
9855
10085
|
verificationRemoveBody?: {
|
9856
10086
|
address?: Uint8Array | undefined;
|
10087
|
+
protocol?: Protocol | undefined;
|
9857
10088
|
} | undefined;
|
9858
10089
|
userDataBody?: {
|
9859
10090
|
type?: UserDataType | undefined;
|
@@ -9924,15 +10155,17 @@ declare const HubEvent: {
|
|
9924
10155
|
} | undefined;
|
9925
10156
|
targetUrl?: string | undefined;
|
9926
10157
|
} | undefined;
|
9927
|
-
|
10158
|
+
verificationAddAddressBody?: {
|
9928
10159
|
address?: Uint8Array | undefined;
|
9929
|
-
|
10160
|
+
claimSignature?: Uint8Array | undefined;
|
9930
10161
|
blockHash?: Uint8Array | undefined;
|
9931
10162
|
verificationType?: number | undefined;
|
9932
10163
|
chainId?: number | undefined;
|
10164
|
+
protocol?: Protocol | undefined;
|
9933
10165
|
} | undefined;
|
9934
10166
|
verificationRemoveBody?: {
|
9935
10167
|
address?: Uint8Array | undefined;
|
10168
|
+
protocol?: Protocol | undefined;
|
9936
10169
|
} | undefined;
|
9937
10170
|
userDataBody?: {
|
9938
10171
|
type?: UserDataType | undefined;
|
@@ -10034,15 +10267,17 @@ declare const HubEvent: {
|
|
10034
10267
|
} | undefined;
|
10035
10268
|
targetUrl?: string | undefined;
|
10036
10269
|
} | undefined;
|
10037
|
-
|
10270
|
+
verificationAddAddressBody?: {
|
10038
10271
|
address?: Uint8Array | undefined;
|
10039
|
-
|
10272
|
+
claimSignature?: Uint8Array | undefined;
|
10040
10273
|
blockHash?: Uint8Array | undefined;
|
10041
10274
|
verificationType?: number | undefined;
|
10042
10275
|
chainId?: number | undefined;
|
10276
|
+
protocol?: Protocol | undefined;
|
10043
10277
|
} | undefined;
|
10044
10278
|
verificationRemoveBody?: {
|
10045
10279
|
address?: Uint8Array | undefined;
|
10280
|
+
protocol?: Protocol | undefined;
|
10046
10281
|
} | undefined;
|
10047
10282
|
userDataBody?: {
|
10048
10283
|
type?: UserDataType | undefined;
|
@@ -10112,15 +10347,17 @@ declare const HubEvent: {
|
|
10112
10347
|
} | undefined;
|
10113
10348
|
targetUrl?: string | undefined;
|
10114
10349
|
} | undefined;
|
10115
|
-
|
10350
|
+
verificationAddAddressBody?: {
|
10116
10351
|
address?: Uint8Array | undefined;
|
10117
|
-
|
10352
|
+
claimSignature?: Uint8Array | undefined;
|
10118
10353
|
blockHash?: Uint8Array | undefined;
|
10119
10354
|
verificationType?: number | undefined;
|
10120
10355
|
chainId?: number | undefined;
|
10356
|
+
protocol?: Protocol | undefined;
|
10121
10357
|
} | undefined;
|
10122
10358
|
verificationRemoveBody?: {
|
10123
10359
|
address?: Uint8Array | undefined;
|
10360
|
+
protocol?: Protocol | undefined;
|
10124
10361
|
} | undefined;
|
10125
10362
|
userDataBody?: {
|
10126
10363
|
type?: UserDataType | undefined;
|
@@ -10235,24 +10472,28 @@ declare const HubEvent: {
|
|
10235
10472
|
} & { [K_95 in Exclude<keyof I["mergeUsernameProofBody"]["usernameProofMessage"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
10236
10473
|
targetUrl?: string | undefined;
|
10237
10474
|
} & { [K_96 in Exclude<keyof I["mergeUsernameProofBody"]["usernameProofMessage"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
10238
|
-
|
10475
|
+
verificationAddAddressBody?: ({
|
10239
10476
|
address?: Uint8Array | undefined;
|
10240
|
-
|
10477
|
+
claimSignature?: Uint8Array | undefined;
|
10241
10478
|
blockHash?: Uint8Array | undefined;
|
10242
10479
|
verificationType?: number | undefined;
|
10243
10480
|
chainId?: number | undefined;
|
10481
|
+
protocol?: Protocol | undefined;
|
10244
10482
|
} & {
|
10245
10483
|
address?: Uint8Array | undefined;
|
10246
|
-
|
10484
|
+
claimSignature?: Uint8Array | undefined;
|
10247
10485
|
blockHash?: Uint8Array | undefined;
|
10248
10486
|
verificationType?: number | undefined;
|
10249
10487
|
chainId?: number | undefined;
|
10250
|
-
|
10488
|
+
protocol?: Protocol | undefined;
|
10489
|
+
} & { [K_97 in Exclude<keyof I["mergeUsernameProofBody"]["usernameProofMessage"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
10251
10490
|
verificationRemoveBody?: ({
|
10252
10491
|
address?: Uint8Array | undefined;
|
10492
|
+
protocol?: Protocol | undefined;
|
10253
10493
|
} & {
|
10254
10494
|
address?: Uint8Array | undefined;
|
10255
|
-
|
10495
|
+
protocol?: Protocol | undefined;
|
10496
|
+
} & { [K_98 in Exclude<keyof I["mergeUsernameProofBody"]["usernameProofMessage"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
10256
10497
|
userDataBody?: ({
|
10257
10498
|
type?: UserDataType | undefined;
|
10258
10499
|
value?: string | undefined;
|
@@ -10347,15 +10588,17 @@ declare const HubEvent: {
|
|
10347
10588
|
} | undefined;
|
10348
10589
|
targetUrl?: string | undefined;
|
10349
10590
|
} | undefined;
|
10350
|
-
|
10591
|
+
verificationAddAddressBody?: {
|
10351
10592
|
address?: Uint8Array | undefined;
|
10352
|
-
|
10593
|
+
claimSignature?: Uint8Array | undefined;
|
10353
10594
|
blockHash?: Uint8Array | undefined;
|
10354
10595
|
verificationType?: number | undefined;
|
10355
10596
|
chainId?: number | undefined;
|
10597
|
+
protocol?: Protocol | undefined;
|
10356
10598
|
} | undefined;
|
10357
10599
|
verificationRemoveBody?: {
|
10358
10600
|
address?: Uint8Array | undefined;
|
10601
|
+
protocol?: Protocol | undefined;
|
10359
10602
|
} | undefined;
|
10360
10603
|
userDataBody?: {
|
10361
10604
|
type?: UserDataType | undefined;
|
@@ -10425,15 +10668,17 @@ declare const HubEvent: {
|
|
10425
10668
|
} | undefined;
|
10426
10669
|
targetUrl?: string | undefined;
|
10427
10670
|
} | undefined;
|
10428
|
-
|
10671
|
+
verificationAddAddressBody?: {
|
10429
10672
|
address?: Uint8Array | undefined;
|
10430
|
-
|
10673
|
+
claimSignature?: Uint8Array | undefined;
|
10431
10674
|
blockHash?: Uint8Array | undefined;
|
10432
10675
|
verificationType?: number | undefined;
|
10433
10676
|
chainId?: number | undefined;
|
10677
|
+
protocol?: Protocol | undefined;
|
10434
10678
|
} | undefined;
|
10435
10679
|
verificationRemoveBody?: {
|
10436
10680
|
address?: Uint8Array | undefined;
|
10681
|
+
protocol?: Protocol | undefined;
|
10437
10682
|
} | undefined;
|
10438
10683
|
userDataBody?: {
|
10439
10684
|
type?: UserDataType | undefined;
|
@@ -10548,24 +10793,28 @@ declare const HubEvent: {
|
|
10548
10793
|
} & { [K_115 in Exclude<keyof I["mergeUsernameProofBody"]["deletedUsernameProofMessage"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
10549
10794
|
targetUrl?: string | undefined;
|
10550
10795
|
} & { [K_116 in Exclude<keyof I["mergeUsernameProofBody"]["deletedUsernameProofMessage"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
10551
|
-
|
10796
|
+
verificationAddAddressBody?: ({
|
10552
10797
|
address?: Uint8Array | undefined;
|
10553
|
-
|
10798
|
+
claimSignature?: Uint8Array | undefined;
|
10554
10799
|
blockHash?: Uint8Array | undefined;
|
10555
10800
|
verificationType?: number | undefined;
|
10556
10801
|
chainId?: number | undefined;
|
10802
|
+
protocol?: Protocol | undefined;
|
10557
10803
|
} & {
|
10558
10804
|
address?: Uint8Array | undefined;
|
10559
|
-
|
10805
|
+
claimSignature?: Uint8Array | undefined;
|
10560
10806
|
blockHash?: Uint8Array | undefined;
|
10561
10807
|
verificationType?: number | undefined;
|
10562
10808
|
chainId?: number | undefined;
|
10563
|
-
|
10809
|
+
protocol?: Protocol | undefined;
|
10810
|
+
} & { [K_117 in Exclude<keyof I["mergeUsernameProofBody"]["deletedUsernameProofMessage"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
10564
10811
|
verificationRemoveBody?: ({
|
10565
10812
|
address?: Uint8Array | undefined;
|
10813
|
+
protocol?: Protocol | undefined;
|
10566
10814
|
} & {
|
10567
10815
|
address?: Uint8Array | undefined;
|
10568
|
-
|
10816
|
+
protocol?: Protocol | undefined;
|
10817
|
+
} & { [K_118 in Exclude<keyof I["mergeUsernameProofBody"]["deletedUsernameProofMessage"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
10569
10818
|
userDataBody?: ({
|
10570
10819
|
type?: UserDataType | undefined;
|
10571
10820
|
value?: string | undefined;
|
@@ -10784,15 +11033,17 @@ declare const HubEvent: {
|
|
10784
11033
|
} | undefined;
|
10785
11034
|
targetUrl?: string | undefined;
|
10786
11035
|
} | undefined;
|
10787
|
-
|
11036
|
+
verificationAddAddressBody?: {
|
10788
11037
|
address?: Uint8Array | undefined;
|
10789
|
-
|
11038
|
+
claimSignature?: Uint8Array | undefined;
|
10790
11039
|
blockHash?: Uint8Array | undefined;
|
10791
11040
|
verificationType?: number | undefined;
|
10792
11041
|
chainId?: number | undefined;
|
11042
|
+
protocol?: Protocol | undefined;
|
10793
11043
|
} | undefined;
|
10794
11044
|
verificationRemoveBody?: {
|
10795
11045
|
address?: Uint8Array | undefined;
|
11046
|
+
protocol?: Protocol | undefined;
|
10796
11047
|
} | undefined;
|
10797
11048
|
userDataBody?: {
|
10798
11049
|
type?: UserDataType | undefined;
|
@@ -10863,15 +11114,17 @@ declare const HubEvent: {
|
|
10863
11114
|
} | undefined;
|
10864
11115
|
targetUrl?: string | undefined;
|
10865
11116
|
} | undefined;
|
10866
|
-
|
11117
|
+
verificationAddAddressBody?: {
|
10867
11118
|
address?: Uint8Array | undefined;
|
10868
|
-
|
11119
|
+
claimSignature?: Uint8Array | undefined;
|
10869
11120
|
blockHash?: Uint8Array | undefined;
|
10870
11121
|
verificationType?: number | undefined;
|
10871
11122
|
chainId?: number | undefined;
|
11123
|
+
protocol?: Protocol | undefined;
|
10872
11124
|
} | undefined;
|
10873
11125
|
verificationRemoveBody?: {
|
10874
11126
|
address?: Uint8Array | undefined;
|
11127
|
+
protocol?: Protocol | undefined;
|
10875
11128
|
} | undefined;
|
10876
11129
|
userDataBody?: {
|
10877
11130
|
type?: UserDataType | undefined;
|
@@ -10944,15 +11197,17 @@ declare const HubEvent: {
|
|
10944
11197
|
} | undefined;
|
10945
11198
|
targetUrl?: string | undefined;
|
10946
11199
|
} | undefined;
|
10947
|
-
|
11200
|
+
verificationAddAddressBody?: {
|
10948
11201
|
address?: Uint8Array | undefined;
|
10949
|
-
|
11202
|
+
claimSignature?: Uint8Array | undefined;
|
10950
11203
|
blockHash?: Uint8Array | undefined;
|
10951
11204
|
verificationType?: number | undefined;
|
10952
11205
|
chainId?: number | undefined;
|
11206
|
+
protocol?: Protocol | undefined;
|
10953
11207
|
} | undefined;
|
10954
11208
|
verificationRemoveBody?: {
|
10955
11209
|
address?: Uint8Array | undefined;
|
11210
|
+
protocol?: Protocol | undefined;
|
10956
11211
|
} | undefined;
|
10957
11212
|
userDataBody?: {
|
10958
11213
|
type?: UserDataType | undefined;
|
@@ -11025,15 +11280,17 @@ declare const HubEvent: {
|
|
11025
11280
|
} | undefined;
|
11026
11281
|
targetUrl?: string | undefined;
|
11027
11282
|
} | undefined;
|
11028
|
-
|
11283
|
+
verificationAddAddressBody?: {
|
11029
11284
|
address?: Uint8Array | undefined;
|
11030
|
-
|
11285
|
+
claimSignature?: Uint8Array | undefined;
|
11031
11286
|
blockHash?: Uint8Array | undefined;
|
11032
11287
|
verificationType?: number | undefined;
|
11033
11288
|
chainId?: number | undefined;
|
11289
|
+
protocol?: Protocol | undefined;
|
11034
11290
|
} | undefined;
|
11035
11291
|
verificationRemoveBody?: {
|
11036
11292
|
address?: Uint8Array | undefined;
|
11293
|
+
protocol?: Protocol | undefined;
|
11037
11294
|
} | undefined;
|
11038
11295
|
userDataBody?: {
|
11039
11296
|
type?: UserDataType | undefined;
|
@@ -11122,15 +11379,17 @@ declare const HubEvent: {
|
|
11122
11379
|
} | undefined;
|
11123
11380
|
targetUrl?: string | undefined;
|
11124
11381
|
} | undefined;
|
11125
|
-
|
11382
|
+
verificationAddAddressBody?: {
|
11126
11383
|
address?: Uint8Array | undefined;
|
11127
|
-
|
11384
|
+
claimSignature?: Uint8Array | undefined;
|
11128
11385
|
blockHash?: Uint8Array | undefined;
|
11129
11386
|
verificationType?: number | undefined;
|
11130
11387
|
chainId?: number | undefined;
|
11388
|
+
protocol?: Protocol | undefined;
|
11131
11389
|
} | undefined;
|
11132
11390
|
verificationRemoveBody?: {
|
11133
11391
|
address?: Uint8Array | undefined;
|
11392
|
+
protocol?: Protocol | undefined;
|
11134
11393
|
} | undefined;
|
11135
11394
|
userDataBody?: {
|
11136
11395
|
type?: UserDataType | undefined;
|
@@ -11201,15 +11460,17 @@ declare const HubEvent: {
|
|
11201
11460
|
} | undefined;
|
11202
11461
|
targetUrl?: string | undefined;
|
11203
11462
|
} | undefined;
|
11204
|
-
|
11463
|
+
verificationAddAddressBody?: {
|
11205
11464
|
address?: Uint8Array | undefined;
|
11206
|
-
|
11465
|
+
claimSignature?: Uint8Array | undefined;
|
11207
11466
|
blockHash?: Uint8Array | undefined;
|
11208
11467
|
verificationType?: number | undefined;
|
11209
11468
|
chainId?: number | undefined;
|
11469
|
+
protocol?: Protocol | undefined;
|
11210
11470
|
} | undefined;
|
11211
11471
|
verificationRemoveBody?: {
|
11212
11472
|
address?: Uint8Array | undefined;
|
11473
|
+
protocol?: Protocol | undefined;
|
11213
11474
|
} | undefined;
|
11214
11475
|
userDataBody?: {
|
11215
11476
|
type?: UserDataType | undefined;
|
@@ -11320,15 +11581,17 @@ declare const HubEvent: {
|
|
11320
11581
|
} | undefined;
|
11321
11582
|
targetUrl?: string | undefined;
|
11322
11583
|
} | undefined;
|
11323
|
-
|
11584
|
+
verificationAddAddressBody?: {
|
11324
11585
|
address?: Uint8Array | undefined;
|
11325
|
-
|
11586
|
+
claimSignature?: Uint8Array | undefined;
|
11326
11587
|
blockHash?: Uint8Array | undefined;
|
11327
11588
|
verificationType?: number | undefined;
|
11328
11589
|
chainId?: number | undefined;
|
11590
|
+
protocol?: Protocol | undefined;
|
11329
11591
|
} | undefined;
|
11330
11592
|
verificationRemoveBody?: {
|
11331
11593
|
address?: Uint8Array | undefined;
|
11594
|
+
protocol?: Protocol | undefined;
|
11332
11595
|
} | undefined;
|
11333
11596
|
userDataBody?: {
|
11334
11597
|
type?: UserDataType | undefined;
|
@@ -11399,15 +11662,17 @@ declare const HubEvent: {
|
|
11399
11662
|
} | undefined;
|
11400
11663
|
targetUrl?: string | undefined;
|
11401
11664
|
} | undefined;
|
11402
|
-
|
11665
|
+
verificationAddAddressBody?: {
|
11403
11666
|
address?: Uint8Array | undefined;
|
11404
|
-
|
11667
|
+
claimSignature?: Uint8Array | undefined;
|
11405
11668
|
blockHash?: Uint8Array | undefined;
|
11406
11669
|
verificationType?: number | undefined;
|
11407
11670
|
chainId?: number | undefined;
|
11671
|
+
protocol?: Protocol | undefined;
|
11408
11672
|
} | undefined;
|
11409
11673
|
verificationRemoveBody?: {
|
11410
11674
|
address?: Uint8Array | undefined;
|
11675
|
+
protocol?: Protocol | undefined;
|
11411
11676
|
} | undefined;
|
11412
11677
|
userDataBody?: {
|
11413
11678
|
type?: UserDataType | undefined;
|
@@ -11479,15 +11744,17 @@ declare const HubEvent: {
|
|
11479
11744
|
} | undefined;
|
11480
11745
|
targetUrl?: string | undefined;
|
11481
11746
|
} | undefined;
|
11482
|
-
|
11747
|
+
verificationAddAddressBody?: {
|
11483
11748
|
address?: Uint8Array | undefined;
|
11484
|
-
|
11749
|
+
claimSignature?: Uint8Array | undefined;
|
11485
11750
|
blockHash?: Uint8Array | undefined;
|
11486
11751
|
verificationType?: number | undefined;
|
11487
11752
|
chainId?: number | undefined;
|
11753
|
+
protocol?: Protocol | undefined;
|
11488
11754
|
} | undefined;
|
11489
11755
|
verificationRemoveBody?: {
|
11490
11756
|
address?: Uint8Array | undefined;
|
11757
|
+
protocol?: Protocol | undefined;
|
11491
11758
|
} | undefined;
|
11492
11759
|
userDataBody?: {
|
11493
11760
|
type?: UserDataType | undefined;
|
@@ -11557,15 +11824,17 @@ declare const HubEvent: {
|
|
11557
11824
|
} | undefined;
|
11558
11825
|
targetUrl?: string | undefined;
|
11559
11826
|
} | undefined;
|
11560
|
-
|
11827
|
+
verificationAddAddressBody?: {
|
11561
11828
|
address?: Uint8Array | undefined;
|
11562
|
-
|
11829
|
+
claimSignature?: Uint8Array | undefined;
|
11563
11830
|
blockHash?: Uint8Array | undefined;
|
11564
11831
|
verificationType?: number | undefined;
|
11565
11832
|
chainId?: number | undefined;
|
11833
|
+
protocol?: Protocol | undefined;
|
11566
11834
|
} | undefined;
|
11567
11835
|
verificationRemoveBody?: {
|
11568
11836
|
address?: Uint8Array | undefined;
|
11837
|
+
protocol?: Protocol | undefined;
|
11569
11838
|
} | undefined;
|
11570
11839
|
userDataBody?: {
|
11571
11840
|
type?: UserDataType | undefined;
|
@@ -11680,24 +11949,28 @@ declare const HubEvent: {
|
|
11680
11949
|
} & { [K_143 in Exclude<keyof I_1["mergeMessageBody"]["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
11681
11950
|
targetUrl?: string | undefined;
|
11682
11951
|
} & { [K_144 in Exclude<keyof I_1["mergeMessageBody"]["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
11683
|
-
|
11952
|
+
verificationAddAddressBody?: ({
|
11684
11953
|
address?: Uint8Array | undefined;
|
11685
|
-
|
11954
|
+
claimSignature?: Uint8Array | undefined;
|
11686
11955
|
blockHash?: Uint8Array | undefined;
|
11687
11956
|
verificationType?: number | undefined;
|
11688
11957
|
chainId?: number | undefined;
|
11958
|
+
protocol?: Protocol | undefined;
|
11689
11959
|
} & {
|
11690
11960
|
address?: Uint8Array | undefined;
|
11691
|
-
|
11961
|
+
claimSignature?: Uint8Array | undefined;
|
11692
11962
|
blockHash?: Uint8Array | undefined;
|
11693
11963
|
verificationType?: number | undefined;
|
11694
11964
|
chainId?: number | undefined;
|
11695
|
-
|
11965
|
+
protocol?: Protocol | undefined;
|
11966
|
+
} & { [K_145 in Exclude<keyof I_1["mergeMessageBody"]["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
11696
11967
|
verificationRemoveBody?: ({
|
11697
11968
|
address?: Uint8Array | undefined;
|
11969
|
+
protocol?: Protocol | undefined;
|
11698
11970
|
} & {
|
11699
11971
|
address?: Uint8Array | undefined;
|
11700
|
-
|
11972
|
+
protocol?: Protocol | undefined;
|
11973
|
+
} & { [K_146 in Exclude<keyof I_1["mergeMessageBody"]["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
11701
11974
|
userDataBody?: ({
|
11702
11975
|
type?: UserDataType | undefined;
|
11703
11976
|
value?: string | undefined;
|
@@ -11792,15 +12065,17 @@ declare const HubEvent: {
|
|
11792
12065
|
} | undefined;
|
11793
12066
|
targetUrl?: string | undefined;
|
11794
12067
|
} | undefined;
|
11795
|
-
|
12068
|
+
verificationAddAddressBody?: {
|
11796
12069
|
address?: Uint8Array | undefined;
|
11797
|
-
|
12070
|
+
claimSignature?: Uint8Array | undefined;
|
11798
12071
|
blockHash?: Uint8Array | undefined;
|
11799
12072
|
verificationType?: number | undefined;
|
11800
12073
|
chainId?: number | undefined;
|
12074
|
+
protocol?: Protocol | undefined;
|
11801
12075
|
} | undefined;
|
11802
12076
|
verificationRemoveBody?: {
|
11803
12077
|
address?: Uint8Array | undefined;
|
12078
|
+
protocol?: Protocol | undefined;
|
11804
12079
|
} | undefined;
|
11805
12080
|
userDataBody?: {
|
11806
12081
|
type?: UserDataType | undefined;
|
@@ -11870,15 +12145,17 @@ declare const HubEvent: {
|
|
11870
12145
|
} | undefined;
|
11871
12146
|
targetUrl?: string | undefined;
|
11872
12147
|
} | undefined;
|
11873
|
-
|
12148
|
+
verificationAddAddressBody?: {
|
11874
12149
|
address?: Uint8Array | undefined;
|
11875
|
-
|
12150
|
+
claimSignature?: Uint8Array | undefined;
|
11876
12151
|
blockHash?: Uint8Array | undefined;
|
11877
12152
|
verificationType?: number | undefined;
|
11878
12153
|
chainId?: number | undefined;
|
12154
|
+
protocol?: Protocol | undefined;
|
11879
12155
|
} | undefined;
|
11880
12156
|
verificationRemoveBody?: {
|
11881
12157
|
address?: Uint8Array | undefined;
|
12158
|
+
protocol?: Protocol | undefined;
|
11882
12159
|
} | undefined;
|
11883
12160
|
userDataBody?: {
|
11884
12161
|
type?: UserDataType | undefined;
|
@@ -11948,15 +12225,17 @@ declare const HubEvent: {
|
|
11948
12225
|
} | undefined;
|
11949
12226
|
targetUrl?: string | undefined;
|
11950
12227
|
} | undefined;
|
11951
|
-
|
12228
|
+
verificationAddAddressBody?: {
|
11952
12229
|
address?: Uint8Array | undefined;
|
11953
|
-
|
12230
|
+
claimSignature?: Uint8Array | undefined;
|
11954
12231
|
blockHash?: Uint8Array | undefined;
|
11955
12232
|
verificationType?: number | undefined;
|
11956
12233
|
chainId?: number | undefined;
|
12234
|
+
protocol?: Protocol | undefined;
|
11957
12235
|
} | undefined;
|
11958
12236
|
verificationRemoveBody?: {
|
11959
12237
|
address?: Uint8Array | undefined;
|
12238
|
+
protocol?: Protocol | undefined;
|
11960
12239
|
} | undefined;
|
11961
12240
|
userDataBody?: {
|
11962
12241
|
type?: UserDataType | undefined;
|
@@ -12071,24 +12350,28 @@ declare const HubEvent: {
|
|
12071
12350
|
} & { [K_163 in Exclude<keyof I_1["mergeMessageBody"]["deletedMessages"][number]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
12072
12351
|
targetUrl?: string | undefined;
|
12073
12352
|
} & { [K_164 in Exclude<keyof I_1["mergeMessageBody"]["deletedMessages"][number]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
12074
|
-
|
12353
|
+
verificationAddAddressBody?: ({
|
12075
12354
|
address?: Uint8Array | undefined;
|
12076
|
-
|
12355
|
+
claimSignature?: Uint8Array | undefined;
|
12077
12356
|
blockHash?: Uint8Array | undefined;
|
12078
12357
|
verificationType?: number | undefined;
|
12079
12358
|
chainId?: number | undefined;
|
12359
|
+
protocol?: Protocol | undefined;
|
12080
12360
|
} & {
|
12081
12361
|
address?: Uint8Array | undefined;
|
12082
|
-
|
12362
|
+
claimSignature?: Uint8Array | undefined;
|
12083
12363
|
blockHash?: Uint8Array | undefined;
|
12084
12364
|
verificationType?: number | undefined;
|
12085
12365
|
chainId?: number | undefined;
|
12086
|
-
|
12366
|
+
protocol?: Protocol | undefined;
|
12367
|
+
} & { [K_165 in Exclude<keyof I_1["mergeMessageBody"]["deletedMessages"][number]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
12087
12368
|
verificationRemoveBody?: ({
|
12088
12369
|
address?: Uint8Array | undefined;
|
12370
|
+
protocol?: Protocol | undefined;
|
12089
12371
|
} & {
|
12090
12372
|
address?: Uint8Array | undefined;
|
12091
|
-
|
12373
|
+
protocol?: Protocol | undefined;
|
12374
|
+
} & { [K_166 in Exclude<keyof I_1["mergeMessageBody"]["deletedMessages"][number]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
12092
12375
|
userDataBody?: ({
|
12093
12376
|
type?: UserDataType | undefined;
|
12094
12377
|
value?: string | undefined;
|
@@ -12182,15 +12465,17 @@ declare const HubEvent: {
|
|
12182
12465
|
} | undefined;
|
12183
12466
|
targetUrl?: string | undefined;
|
12184
12467
|
} | undefined;
|
12185
|
-
|
12468
|
+
verificationAddAddressBody?: {
|
12186
12469
|
address?: Uint8Array | undefined;
|
12187
|
-
|
12470
|
+
claimSignature?: Uint8Array | undefined;
|
12188
12471
|
blockHash?: Uint8Array | undefined;
|
12189
12472
|
verificationType?: number | undefined;
|
12190
12473
|
chainId?: number | undefined;
|
12474
|
+
protocol?: Protocol | undefined;
|
12191
12475
|
} | undefined;
|
12192
12476
|
verificationRemoveBody?: {
|
12193
12477
|
address?: Uint8Array | undefined;
|
12478
|
+
protocol?: Protocol | undefined;
|
12194
12479
|
} | undefined;
|
12195
12480
|
userDataBody?: {
|
12196
12481
|
type?: UserDataType | undefined;
|
@@ -12263,15 +12548,17 @@ declare const HubEvent: {
|
|
12263
12548
|
} | undefined;
|
12264
12549
|
targetUrl?: string | undefined;
|
12265
12550
|
} | undefined;
|
12266
|
-
|
12551
|
+
verificationAddAddressBody?: {
|
12267
12552
|
address?: Uint8Array | undefined;
|
12268
|
-
|
12553
|
+
claimSignature?: Uint8Array | undefined;
|
12269
12554
|
blockHash?: Uint8Array | undefined;
|
12270
12555
|
verificationType?: number | undefined;
|
12271
12556
|
chainId?: number | undefined;
|
12557
|
+
protocol?: Protocol | undefined;
|
12272
12558
|
} | undefined;
|
12273
12559
|
verificationRemoveBody?: {
|
12274
12560
|
address?: Uint8Array | undefined;
|
12561
|
+
protocol?: Protocol | undefined;
|
12275
12562
|
} | undefined;
|
12276
12563
|
userDataBody?: {
|
12277
12564
|
type?: UserDataType | undefined;
|
@@ -12343,15 +12630,17 @@ declare const HubEvent: {
|
|
12343
12630
|
} | undefined;
|
12344
12631
|
targetUrl?: string | undefined;
|
12345
12632
|
} | undefined;
|
12346
|
-
|
12633
|
+
verificationAddAddressBody?: {
|
12347
12634
|
address?: Uint8Array | undefined;
|
12348
|
-
|
12635
|
+
claimSignature?: Uint8Array | undefined;
|
12349
12636
|
blockHash?: Uint8Array | undefined;
|
12350
12637
|
verificationType?: number | undefined;
|
12351
12638
|
chainId?: number | undefined;
|
12639
|
+
protocol?: Protocol | undefined;
|
12352
12640
|
} | undefined;
|
12353
12641
|
verificationRemoveBody?: {
|
12354
12642
|
address?: Uint8Array | undefined;
|
12643
|
+
protocol?: Protocol | undefined;
|
12355
12644
|
} | undefined;
|
12356
12645
|
userDataBody?: {
|
12357
12646
|
type?: UserDataType | undefined;
|
@@ -12421,15 +12710,17 @@ declare const HubEvent: {
|
|
12421
12710
|
} | undefined;
|
12422
12711
|
targetUrl?: string | undefined;
|
12423
12712
|
} | undefined;
|
12424
|
-
|
12713
|
+
verificationAddAddressBody?: {
|
12425
12714
|
address?: Uint8Array | undefined;
|
12426
|
-
|
12715
|
+
claimSignature?: Uint8Array | undefined;
|
12427
12716
|
blockHash?: Uint8Array | undefined;
|
12428
12717
|
verificationType?: number | undefined;
|
12429
12718
|
chainId?: number | undefined;
|
12719
|
+
protocol?: Protocol | undefined;
|
12430
12720
|
} | undefined;
|
12431
12721
|
verificationRemoveBody?: {
|
12432
12722
|
address?: Uint8Array | undefined;
|
12723
|
+
protocol?: Protocol | undefined;
|
12433
12724
|
} | undefined;
|
12434
12725
|
userDataBody?: {
|
12435
12726
|
type?: UserDataType | undefined;
|
@@ -12544,24 +12835,28 @@ declare const HubEvent: {
|
|
12544
12835
|
} & { [K_185 in Exclude<keyof I_1["pruneMessageBody"]["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
12545
12836
|
targetUrl?: string | undefined;
|
12546
12837
|
} & { [K_186 in Exclude<keyof I_1["pruneMessageBody"]["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
12547
|
-
|
12838
|
+
verificationAddAddressBody?: ({
|
12548
12839
|
address?: Uint8Array | undefined;
|
12549
|
-
|
12840
|
+
claimSignature?: Uint8Array | undefined;
|
12550
12841
|
blockHash?: Uint8Array | undefined;
|
12551
12842
|
verificationType?: number | undefined;
|
12552
12843
|
chainId?: number | undefined;
|
12844
|
+
protocol?: Protocol | undefined;
|
12553
12845
|
} & {
|
12554
12846
|
address?: Uint8Array | undefined;
|
12555
|
-
|
12847
|
+
claimSignature?: Uint8Array | undefined;
|
12556
12848
|
blockHash?: Uint8Array | undefined;
|
12557
12849
|
verificationType?: number | undefined;
|
12558
12850
|
chainId?: number | undefined;
|
12559
|
-
|
12851
|
+
protocol?: Protocol | undefined;
|
12852
|
+
} & { [K_187 in Exclude<keyof I_1["pruneMessageBody"]["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
12560
12853
|
verificationRemoveBody?: ({
|
12561
12854
|
address?: Uint8Array | undefined;
|
12855
|
+
protocol?: Protocol | undefined;
|
12562
12856
|
} & {
|
12563
12857
|
address?: Uint8Array | undefined;
|
12564
|
-
|
12858
|
+
protocol?: Protocol | undefined;
|
12859
|
+
} & { [K_188 in Exclude<keyof I_1["pruneMessageBody"]["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
12565
12860
|
userDataBody?: ({
|
12566
12861
|
type?: UserDataType | undefined;
|
12567
12862
|
value?: string | undefined;
|
@@ -12658,15 +12953,17 @@ declare const HubEvent: {
|
|
12658
12953
|
} | undefined;
|
12659
12954
|
targetUrl?: string | undefined;
|
12660
12955
|
} | undefined;
|
12661
|
-
|
12956
|
+
verificationAddAddressBody?: {
|
12662
12957
|
address?: Uint8Array | undefined;
|
12663
|
-
|
12958
|
+
claimSignature?: Uint8Array | undefined;
|
12664
12959
|
blockHash?: Uint8Array | undefined;
|
12665
12960
|
verificationType?: number | undefined;
|
12666
12961
|
chainId?: number | undefined;
|
12962
|
+
protocol?: Protocol | undefined;
|
12667
12963
|
} | undefined;
|
12668
12964
|
verificationRemoveBody?: {
|
12669
12965
|
address?: Uint8Array | undefined;
|
12966
|
+
protocol?: Protocol | undefined;
|
12670
12967
|
} | undefined;
|
12671
12968
|
userDataBody?: {
|
12672
12969
|
type?: UserDataType | undefined;
|
@@ -12738,15 +13035,17 @@ declare const HubEvent: {
|
|
12738
13035
|
} | undefined;
|
12739
13036
|
targetUrl?: string | undefined;
|
12740
13037
|
} | undefined;
|
12741
|
-
|
13038
|
+
verificationAddAddressBody?: {
|
12742
13039
|
address?: Uint8Array | undefined;
|
12743
|
-
|
13040
|
+
claimSignature?: Uint8Array | undefined;
|
12744
13041
|
blockHash?: Uint8Array | undefined;
|
12745
13042
|
verificationType?: number | undefined;
|
12746
13043
|
chainId?: number | undefined;
|
13044
|
+
protocol?: Protocol | undefined;
|
12747
13045
|
} | undefined;
|
12748
13046
|
verificationRemoveBody?: {
|
12749
13047
|
address?: Uint8Array | undefined;
|
13048
|
+
protocol?: Protocol | undefined;
|
12750
13049
|
} | undefined;
|
12751
13050
|
userDataBody?: {
|
12752
13051
|
type?: UserDataType | undefined;
|
@@ -12816,15 +13115,17 @@ declare const HubEvent: {
|
|
12816
13115
|
} | undefined;
|
12817
13116
|
targetUrl?: string | undefined;
|
12818
13117
|
} | undefined;
|
12819
|
-
|
13118
|
+
verificationAddAddressBody?: {
|
12820
13119
|
address?: Uint8Array | undefined;
|
12821
|
-
|
13120
|
+
claimSignature?: Uint8Array | undefined;
|
12822
13121
|
blockHash?: Uint8Array | undefined;
|
12823
13122
|
verificationType?: number | undefined;
|
12824
13123
|
chainId?: number | undefined;
|
13124
|
+
protocol?: Protocol | undefined;
|
12825
13125
|
} | undefined;
|
12826
13126
|
verificationRemoveBody?: {
|
12827
13127
|
address?: Uint8Array | undefined;
|
13128
|
+
protocol?: Protocol | undefined;
|
12828
13129
|
} | undefined;
|
12829
13130
|
userDataBody?: {
|
12830
13131
|
type?: UserDataType | undefined;
|
@@ -12939,24 +13240,28 @@ declare const HubEvent: {
|
|
12939
13240
|
} & { [K_206 in Exclude<keyof I_1["revokeMessageBody"]["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
12940
13241
|
targetUrl?: string | undefined;
|
12941
13242
|
} & { [K_207 in Exclude<keyof I_1["revokeMessageBody"]["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
12942
|
-
|
13243
|
+
verificationAddAddressBody?: ({
|
12943
13244
|
address?: Uint8Array | undefined;
|
12944
|
-
|
13245
|
+
claimSignature?: Uint8Array | undefined;
|
12945
13246
|
blockHash?: Uint8Array | undefined;
|
12946
13247
|
verificationType?: number | undefined;
|
12947
13248
|
chainId?: number | undefined;
|
13249
|
+
protocol?: Protocol | undefined;
|
12948
13250
|
} & {
|
12949
13251
|
address?: Uint8Array | undefined;
|
12950
|
-
|
13252
|
+
claimSignature?: Uint8Array | undefined;
|
12951
13253
|
blockHash?: Uint8Array | undefined;
|
12952
13254
|
verificationType?: number | undefined;
|
12953
13255
|
chainId?: number | undefined;
|
12954
|
-
|
13256
|
+
protocol?: Protocol | undefined;
|
13257
|
+
} & { [K_208 in Exclude<keyof I_1["revokeMessageBody"]["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
12955
13258
|
verificationRemoveBody?: ({
|
12956
13259
|
address?: Uint8Array | undefined;
|
13260
|
+
protocol?: Protocol | undefined;
|
12957
13261
|
} & {
|
12958
13262
|
address?: Uint8Array | undefined;
|
12959
|
-
|
13263
|
+
protocol?: Protocol | undefined;
|
13264
|
+
} & { [K_209 in Exclude<keyof I_1["revokeMessageBody"]["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
12960
13265
|
userDataBody?: ({
|
12961
13266
|
type?: UserDataType | undefined;
|
12962
13267
|
value?: string | undefined;
|
@@ -13069,15 +13374,17 @@ declare const HubEvent: {
|
|
13069
13374
|
} | undefined;
|
13070
13375
|
targetUrl?: string | undefined;
|
13071
13376
|
} | undefined;
|
13072
|
-
|
13377
|
+
verificationAddAddressBody?: {
|
13073
13378
|
address?: Uint8Array | undefined;
|
13074
|
-
|
13379
|
+
claimSignature?: Uint8Array | undefined;
|
13075
13380
|
blockHash?: Uint8Array | undefined;
|
13076
13381
|
verificationType?: number | undefined;
|
13077
13382
|
chainId?: number | undefined;
|
13383
|
+
protocol?: Protocol | undefined;
|
13078
13384
|
} | undefined;
|
13079
13385
|
verificationRemoveBody?: {
|
13080
13386
|
address?: Uint8Array | undefined;
|
13387
|
+
protocol?: Protocol | undefined;
|
13081
13388
|
} | undefined;
|
13082
13389
|
userDataBody?: {
|
13083
13390
|
type?: UserDataType | undefined;
|
@@ -13148,15 +13455,17 @@ declare const HubEvent: {
|
|
13148
13455
|
} | undefined;
|
13149
13456
|
targetUrl?: string | undefined;
|
13150
13457
|
} | undefined;
|
13151
|
-
|
13458
|
+
verificationAddAddressBody?: {
|
13152
13459
|
address?: Uint8Array | undefined;
|
13153
|
-
|
13460
|
+
claimSignature?: Uint8Array | undefined;
|
13154
13461
|
blockHash?: Uint8Array | undefined;
|
13155
13462
|
verificationType?: number | undefined;
|
13156
13463
|
chainId?: number | undefined;
|
13464
|
+
protocol?: Protocol | undefined;
|
13157
13465
|
} | undefined;
|
13158
13466
|
verificationRemoveBody?: {
|
13159
13467
|
address?: Uint8Array | undefined;
|
13468
|
+
protocol?: Protocol | undefined;
|
13160
13469
|
} | undefined;
|
13161
13470
|
userDataBody?: {
|
13162
13471
|
type?: UserDataType | undefined;
|
@@ -13258,15 +13567,17 @@ declare const HubEvent: {
|
|
13258
13567
|
} | undefined;
|
13259
13568
|
targetUrl?: string | undefined;
|
13260
13569
|
} | undefined;
|
13261
|
-
|
13570
|
+
verificationAddAddressBody?: {
|
13262
13571
|
address?: Uint8Array | undefined;
|
13263
|
-
|
13572
|
+
claimSignature?: Uint8Array | undefined;
|
13264
13573
|
blockHash?: Uint8Array | undefined;
|
13265
13574
|
verificationType?: number | undefined;
|
13266
13575
|
chainId?: number | undefined;
|
13576
|
+
protocol?: Protocol | undefined;
|
13267
13577
|
} | undefined;
|
13268
13578
|
verificationRemoveBody?: {
|
13269
13579
|
address?: Uint8Array | undefined;
|
13580
|
+
protocol?: Protocol | undefined;
|
13270
13581
|
} | undefined;
|
13271
13582
|
userDataBody?: {
|
13272
13583
|
type?: UserDataType | undefined;
|
@@ -13336,15 +13647,17 @@ declare const HubEvent: {
|
|
13336
13647
|
} | undefined;
|
13337
13648
|
targetUrl?: string | undefined;
|
13338
13649
|
} | undefined;
|
13339
|
-
|
13650
|
+
verificationAddAddressBody?: {
|
13340
13651
|
address?: Uint8Array | undefined;
|
13341
|
-
|
13652
|
+
claimSignature?: Uint8Array | undefined;
|
13342
13653
|
blockHash?: Uint8Array | undefined;
|
13343
13654
|
verificationType?: number | undefined;
|
13344
13655
|
chainId?: number | undefined;
|
13656
|
+
protocol?: Protocol | undefined;
|
13345
13657
|
} | undefined;
|
13346
13658
|
verificationRemoveBody?: {
|
13347
13659
|
address?: Uint8Array | undefined;
|
13660
|
+
protocol?: Protocol | undefined;
|
13348
13661
|
} | undefined;
|
13349
13662
|
userDataBody?: {
|
13350
13663
|
type?: UserDataType | undefined;
|
@@ -13459,24 +13772,28 @@ declare const HubEvent: {
|
|
13459
13772
|
} & { [K_229 in Exclude<keyof I_1["mergeUsernameProofBody"]["usernameProofMessage"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
13460
13773
|
targetUrl?: string | undefined;
|
13461
13774
|
} & { [K_230 in Exclude<keyof I_1["mergeUsernameProofBody"]["usernameProofMessage"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
13462
|
-
|
13775
|
+
verificationAddAddressBody?: ({
|
13463
13776
|
address?: Uint8Array | undefined;
|
13464
|
-
|
13777
|
+
claimSignature?: Uint8Array | undefined;
|
13465
13778
|
blockHash?: Uint8Array | undefined;
|
13466
13779
|
verificationType?: number | undefined;
|
13467
13780
|
chainId?: number | undefined;
|
13781
|
+
protocol?: Protocol | undefined;
|
13468
13782
|
} & {
|
13469
13783
|
address?: Uint8Array | undefined;
|
13470
|
-
|
13784
|
+
claimSignature?: Uint8Array | undefined;
|
13471
13785
|
blockHash?: Uint8Array | undefined;
|
13472
13786
|
verificationType?: number | undefined;
|
13473
13787
|
chainId?: number | undefined;
|
13474
|
-
|
13788
|
+
protocol?: Protocol | undefined;
|
13789
|
+
} & { [K_231 in Exclude<keyof I_1["mergeUsernameProofBody"]["usernameProofMessage"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
13475
13790
|
verificationRemoveBody?: ({
|
13476
13791
|
address?: Uint8Array | undefined;
|
13792
|
+
protocol?: Protocol | undefined;
|
13477
13793
|
} & {
|
13478
13794
|
address?: Uint8Array | undefined;
|
13479
|
-
|
13795
|
+
protocol?: Protocol | undefined;
|
13796
|
+
} & { [K_232 in Exclude<keyof I_1["mergeUsernameProofBody"]["usernameProofMessage"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
13480
13797
|
userDataBody?: ({
|
13481
13798
|
type?: UserDataType | undefined;
|
13482
13799
|
value?: string | undefined;
|
@@ -13571,15 +13888,17 @@ declare const HubEvent: {
|
|
13571
13888
|
} | undefined;
|
13572
13889
|
targetUrl?: string | undefined;
|
13573
13890
|
} | undefined;
|
13574
|
-
|
13891
|
+
verificationAddAddressBody?: {
|
13575
13892
|
address?: Uint8Array | undefined;
|
13576
|
-
|
13893
|
+
claimSignature?: Uint8Array | undefined;
|
13577
13894
|
blockHash?: Uint8Array | undefined;
|
13578
13895
|
verificationType?: number | undefined;
|
13579
13896
|
chainId?: number | undefined;
|
13897
|
+
protocol?: Protocol | undefined;
|
13580
13898
|
} | undefined;
|
13581
13899
|
verificationRemoveBody?: {
|
13582
13900
|
address?: Uint8Array | undefined;
|
13901
|
+
protocol?: Protocol | undefined;
|
13583
13902
|
} | undefined;
|
13584
13903
|
userDataBody?: {
|
13585
13904
|
type?: UserDataType | undefined;
|
@@ -13649,15 +13968,17 @@ declare const HubEvent: {
|
|
13649
13968
|
} | undefined;
|
13650
13969
|
targetUrl?: string | undefined;
|
13651
13970
|
} | undefined;
|
13652
|
-
|
13971
|
+
verificationAddAddressBody?: {
|
13653
13972
|
address?: Uint8Array | undefined;
|
13654
|
-
|
13973
|
+
claimSignature?: Uint8Array | undefined;
|
13655
13974
|
blockHash?: Uint8Array | undefined;
|
13656
13975
|
verificationType?: number | undefined;
|
13657
13976
|
chainId?: number | undefined;
|
13977
|
+
protocol?: Protocol | undefined;
|
13658
13978
|
} | undefined;
|
13659
13979
|
verificationRemoveBody?: {
|
13660
13980
|
address?: Uint8Array | undefined;
|
13981
|
+
protocol?: Protocol | undefined;
|
13661
13982
|
} | undefined;
|
13662
13983
|
userDataBody?: {
|
13663
13984
|
type?: UserDataType | undefined;
|
@@ -13772,24 +14093,28 @@ declare const HubEvent: {
|
|
13772
14093
|
} & { [K_249 in Exclude<keyof I_1["mergeUsernameProofBody"]["deletedUsernameProofMessage"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
13773
14094
|
targetUrl?: string | undefined;
|
13774
14095
|
} & { [K_250 in Exclude<keyof I_1["mergeUsernameProofBody"]["deletedUsernameProofMessage"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
13775
|
-
|
14096
|
+
verificationAddAddressBody?: ({
|
13776
14097
|
address?: Uint8Array | undefined;
|
13777
|
-
|
14098
|
+
claimSignature?: Uint8Array | undefined;
|
13778
14099
|
blockHash?: Uint8Array | undefined;
|
13779
14100
|
verificationType?: number | undefined;
|
13780
14101
|
chainId?: number | undefined;
|
14102
|
+
protocol?: Protocol | undefined;
|
13781
14103
|
} & {
|
13782
14104
|
address?: Uint8Array | undefined;
|
13783
|
-
|
14105
|
+
claimSignature?: Uint8Array | undefined;
|
13784
14106
|
blockHash?: Uint8Array | undefined;
|
13785
14107
|
verificationType?: number | undefined;
|
13786
14108
|
chainId?: number | undefined;
|
13787
|
-
|
14109
|
+
protocol?: Protocol | undefined;
|
14110
|
+
} & { [K_251 in Exclude<keyof I_1["mergeUsernameProofBody"]["deletedUsernameProofMessage"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
13788
14111
|
verificationRemoveBody?: ({
|
13789
14112
|
address?: Uint8Array | undefined;
|
14113
|
+
protocol?: Protocol | undefined;
|
13790
14114
|
} & {
|
13791
14115
|
address?: Uint8Array | undefined;
|
13792
|
-
|
14116
|
+
protocol?: Protocol | undefined;
|
14117
|
+
} & { [K_252 in Exclude<keyof I_1["mergeUsernameProofBody"]["deletedUsernameProofMessage"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
13793
14118
|
userDataBody?: ({
|
13794
14119
|
type?: UserDataType | undefined;
|
13795
14120
|
value?: string | undefined;
|
@@ -14810,15 +15135,17 @@ declare const MessagesResponse: {
|
|
14810
15135
|
} | undefined;
|
14811
15136
|
targetUrl?: string | undefined;
|
14812
15137
|
} | undefined;
|
14813
|
-
|
15138
|
+
verificationAddAddressBody?: {
|
14814
15139
|
address?: Uint8Array | undefined;
|
14815
|
-
|
15140
|
+
claimSignature?: Uint8Array | undefined;
|
14816
15141
|
blockHash?: Uint8Array | undefined;
|
14817
15142
|
verificationType?: number | undefined;
|
14818
15143
|
chainId?: number | undefined;
|
15144
|
+
protocol?: Protocol | undefined;
|
14819
15145
|
} | undefined;
|
14820
15146
|
verificationRemoveBody?: {
|
14821
15147
|
address?: Uint8Array | undefined;
|
15148
|
+
protocol?: Protocol | undefined;
|
14822
15149
|
} | undefined;
|
14823
15150
|
userDataBody?: {
|
14824
15151
|
type?: UserDataType | undefined;
|
@@ -14891,15 +15218,17 @@ declare const MessagesResponse: {
|
|
14891
15218
|
} | undefined;
|
14892
15219
|
targetUrl?: string | undefined;
|
14893
15220
|
} | undefined;
|
14894
|
-
|
15221
|
+
verificationAddAddressBody?: {
|
14895
15222
|
address?: Uint8Array | undefined;
|
14896
|
-
|
15223
|
+
claimSignature?: Uint8Array | undefined;
|
14897
15224
|
blockHash?: Uint8Array | undefined;
|
14898
15225
|
verificationType?: number | undefined;
|
14899
15226
|
chainId?: number | undefined;
|
15227
|
+
protocol?: Protocol | undefined;
|
14900
15228
|
} | undefined;
|
14901
15229
|
verificationRemoveBody?: {
|
14902
15230
|
address?: Uint8Array | undefined;
|
15231
|
+
protocol?: Protocol | undefined;
|
14903
15232
|
} | undefined;
|
14904
15233
|
userDataBody?: {
|
14905
15234
|
type?: UserDataType | undefined;
|
@@ -14969,15 +15298,17 @@ declare const MessagesResponse: {
|
|
14969
15298
|
} | undefined;
|
14970
15299
|
targetUrl?: string | undefined;
|
14971
15300
|
} | undefined;
|
14972
|
-
|
15301
|
+
verificationAddAddressBody?: {
|
14973
15302
|
address?: Uint8Array | undefined;
|
14974
|
-
|
15303
|
+
claimSignature?: Uint8Array | undefined;
|
14975
15304
|
blockHash?: Uint8Array | undefined;
|
14976
15305
|
verificationType?: number | undefined;
|
14977
15306
|
chainId?: number | undefined;
|
15307
|
+
protocol?: Protocol | undefined;
|
14978
15308
|
} | undefined;
|
14979
15309
|
verificationRemoveBody?: {
|
14980
15310
|
address?: Uint8Array | undefined;
|
15311
|
+
protocol?: Protocol | undefined;
|
14981
15312
|
} | undefined;
|
14982
15313
|
userDataBody?: {
|
14983
15314
|
type?: UserDataType | undefined;
|
@@ -15047,15 +15378,17 @@ declare const MessagesResponse: {
|
|
15047
15378
|
} | undefined;
|
15048
15379
|
targetUrl?: string | undefined;
|
15049
15380
|
} | undefined;
|
15050
|
-
|
15381
|
+
verificationAddAddressBody?: {
|
15051
15382
|
address?: Uint8Array | undefined;
|
15052
|
-
|
15383
|
+
claimSignature?: Uint8Array | undefined;
|
15053
15384
|
blockHash?: Uint8Array | undefined;
|
15054
15385
|
verificationType?: number | undefined;
|
15055
15386
|
chainId?: number | undefined;
|
15387
|
+
protocol?: Protocol | undefined;
|
15056
15388
|
} | undefined;
|
15057
15389
|
verificationRemoveBody?: {
|
15058
15390
|
address?: Uint8Array | undefined;
|
15391
|
+
protocol?: Protocol | undefined;
|
15059
15392
|
} | undefined;
|
15060
15393
|
userDataBody?: {
|
15061
15394
|
type?: UserDataType | undefined;
|
@@ -15170,24 +15503,28 @@ declare const MessagesResponse: {
|
|
15170
15503
|
} & { [K_9 in Exclude<keyof I["messages"][number]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
15171
15504
|
targetUrl?: string | undefined;
|
15172
15505
|
} & { [K_10 in Exclude<keyof I["messages"][number]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
15173
|
-
|
15506
|
+
verificationAddAddressBody?: ({
|
15174
15507
|
address?: Uint8Array | undefined;
|
15175
|
-
|
15508
|
+
claimSignature?: Uint8Array | undefined;
|
15176
15509
|
blockHash?: Uint8Array | undefined;
|
15177
15510
|
verificationType?: number | undefined;
|
15178
15511
|
chainId?: number | undefined;
|
15512
|
+
protocol?: Protocol | undefined;
|
15179
15513
|
} & {
|
15180
15514
|
address?: Uint8Array | undefined;
|
15181
|
-
|
15515
|
+
claimSignature?: Uint8Array | undefined;
|
15182
15516
|
blockHash?: Uint8Array | undefined;
|
15183
15517
|
verificationType?: number | undefined;
|
15184
15518
|
chainId?: number | undefined;
|
15185
|
-
|
15519
|
+
protocol?: Protocol | undefined;
|
15520
|
+
} & { [K_11 in Exclude<keyof I["messages"][number]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
15186
15521
|
verificationRemoveBody?: ({
|
15187
15522
|
address?: Uint8Array | undefined;
|
15523
|
+
protocol?: Protocol | undefined;
|
15188
15524
|
} & {
|
15189
15525
|
address?: Uint8Array | undefined;
|
15190
|
-
|
15526
|
+
protocol?: Protocol | undefined;
|
15527
|
+
} & { [K_12 in Exclude<keyof I["messages"][number]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
15191
15528
|
userDataBody?: ({
|
15192
15529
|
type?: UserDataType | undefined;
|
15193
15530
|
value?: string | undefined;
|
@@ -15281,15 +15618,17 @@ declare const MessagesResponse: {
|
|
15281
15618
|
} | undefined;
|
15282
15619
|
targetUrl?: string | undefined;
|
15283
15620
|
} | undefined;
|
15284
|
-
|
15621
|
+
verificationAddAddressBody?: {
|
15285
15622
|
address?: Uint8Array | undefined;
|
15286
|
-
|
15623
|
+
claimSignature?: Uint8Array | undefined;
|
15287
15624
|
blockHash?: Uint8Array | undefined;
|
15288
15625
|
verificationType?: number | undefined;
|
15289
15626
|
chainId?: number | undefined;
|
15627
|
+
protocol?: Protocol | undefined;
|
15290
15628
|
} | undefined;
|
15291
15629
|
verificationRemoveBody?: {
|
15292
15630
|
address?: Uint8Array | undefined;
|
15631
|
+
protocol?: Protocol | undefined;
|
15293
15632
|
} | undefined;
|
15294
15633
|
userDataBody?: {
|
15295
15634
|
type?: UserDataType | undefined;
|
@@ -15363,15 +15702,17 @@ declare const MessagesResponse: {
|
|
15363
15702
|
} | undefined;
|
15364
15703
|
targetUrl?: string | undefined;
|
15365
15704
|
} | undefined;
|
15366
|
-
|
15705
|
+
verificationAddAddressBody?: {
|
15367
15706
|
address?: Uint8Array | undefined;
|
15368
|
-
|
15707
|
+
claimSignature?: Uint8Array | undefined;
|
15369
15708
|
blockHash?: Uint8Array | undefined;
|
15370
15709
|
verificationType?: number | undefined;
|
15371
15710
|
chainId?: number | undefined;
|
15711
|
+
protocol?: Protocol | undefined;
|
15372
15712
|
} | undefined;
|
15373
15713
|
verificationRemoveBody?: {
|
15374
15714
|
address?: Uint8Array | undefined;
|
15715
|
+
protocol?: Protocol | undefined;
|
15375
15716
|
} | undefined;
|
15376
15717
|
userDataBody?: {
|
15377
15718
|
type?: UserDataType | undefined;
|
@@ -15444,15 +15785,17 @@ declare const MessagesResponse: {
|
|
15444
15785
|
} | undefined;
|
15445
15786
|
targetUrl?: string | undefined;
|
15446
15787
|
} | undefined;
|
15447
|
-
|
15788
|
+
verificationAddAddressBody?: {
|
15448
15789
|
address?: Uint8Array | undefined;
|
15449
|
-
|
15790
|
+
claimSignature?: Uint8Array | undefined;
|
15450
15791
|
blockHash?: Uint8Array | undefined;
|
15451
15792
|
verificationType?: number | undefined;
|
15452
15793
|
chainId?: number | undefined;
|
15794
|
+
protocol?: Protocol | undefined;
|
15453
15795
|
} | undefined;
|
15454
15796
|
verificationRemoveBody?: {
|
15455
15797
|
address?: Uint8Array | undefined;
|
15798
|
+
protocol?: Protocol | undefined;
|
15456
15799
|
} | undefined;
|
15457
15800
|
userDataBody?: {
|
15458
15801
|
type?: UserDataType | undefined;
|
@@ -15522,15 +15865,17 @@ declare const MessagesResponse: {
|
|
15522
15865
|
} | undefined;
|
15523
15866
|
targetUrl?: string | undefined;
|
15524
15867
|
} | undefined;
|
15525
|
-
|
15868
|
+
verificationAddAddressBody?: {
|
15526
15869
|
address?: Uint8Array | undefined;
|
15527
|
-
|
15870
|
+
claimSignature?: Uint8Array | undefined;
|
15528
15871
|
blockHash?: Uint8Array | undefined;
|
15529
15872
|
verificationType?: number | undefined;
|
15530
15873
|
chainId?: number | undefined;
|
15874
|
+
protocol?: Protocol | undefined;
|
15531
15875
|
} | undefined;
|
15532
15876
|
verificationRemoveBody?: {
|
15533
15877
|
address?: Uint8Array | undefined;
|
15878
|
+
protocol?: Protocol | undefined;
|
15534
15879
|
} | undefined;
|
15535
15880
|
userDataBody?: {
|
15536
15881
|
type?: UserDataType | undefined;
|
@@ -15600,15 +15945,17 @@ declare const MessagesResponse: {
|
|
15600
15945
|
} | undefined;
|
15601
15946
|
targetUrl?: string | undefined;
|
15602
15947
|
} | undefined;
|
15603
|
-
|
15948
|
+
verificationAddAddressBody?: {
|
15604
15949
|
address?: Uint8Array | undefined;
|
15605
|
-
|
15950
|
+
claimSignature?: Uint8Array | undefined;
|
15606
15951
|
blockHash?: Uint8Array | undefined;
|
15607
15952
|
verificationType?: number | undefined;
|
15608
15953
|
chainId?: number | undefined;
|
15954
|
+
protocol?: Protocol | undefined;
|
15609
15955
|
} | undefined;
|
15610
15956
|
verificationRemoveBody?: {
|
15611
15957
|
address?: Uint8Array | undefined;
|
15958
|
+
protocol?: Protocol | undefined;
|
15612
15959
|
} | undefined;
|
15613
15960
|
userDataBody?: {
|
15614
15961
|
type?: UserDataType | undefined;
|
@@ -15723,24 +16070,28 @@ declare const MessagesResponse: {
|
|
15723
16070
|
} & { [K_31 in Exclude<keyof I_1["messages"][number]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
15724
16071
|
targetUrl?: string | undefined;
|
15725
16072
|
} & { [K_32 in Exclude<keyof I_1["messages"][number]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
15726
|
-
|
16073
|
+
verificationAddAddressBody?: ({
|
15727
16074
|
address?: Uint8Array | undefined;
|
15728
|
-
|
16075
|
+
claimSignature?: Uint8Array | undefined;
|
15729
16076
|
blockHash?: Uint8Array | undefined;
|
15730
16077
|
verificationType?: number | undefined;
|
15731
16078
|
chainId?: number | undefined;
|
16079
|
+
protocol?: Protocol | undefined;
|
15732
16080
|
} & {
|
15733
16081
|
address?: Uint8Array | undefined;
|
15734
|
-
|
16082
|
+
claimSignature?: Uint8Array | undefined;
|
15735
16083
|
blockHash?: Uint8Array | undefined;
|
15736
16084
|
verificationType?: number | undefined;
|
15737
16085
|
chainId?: number | undefined;
|
15738
|
-
|
16086
|
+
protocol?: Protocol | undefined;
|
16087
|
+
} & { [K_33 in Exclude<keyof I_1["messages"][number]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
15739
16088
|
verificationRemoveBody?: ({
|
15740
16089
|
address?: Uint8Array | undefined;
|
16090
|
+
protocol?: Protocol | undefined;
|
15741
16091
|
} & {
|
15742
16092
|
address?: Uint8Array | undefined;
|
15743
|
-
|
16093
|
+
protocol?: Protocol | undefined;
|
16094
|
+
} & { [K_34 in Exclude<keyof I_1["messages"][number]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
15744
16095
|
userDataBody?: ({
|
15745
16096
|
type?: UserDataType | undefined;
|
15746
16097
|
value?: string | undefined;
|
@@ -15834,15 +16185,17 @@ declare const MessagesResponse: {
|
|
15834
16185
|
} | undefined;
|
15835
16186
|
targetUrl?: string | undefined;
|
15836
16187
|
} | undefined;
|
15837
|
-
|
16188
|
+
verificationAddAddressBody?: {
|
15838
16189
|
address?: Uint8Array | undefined;
|
15839
|
-
|
16190
|
+
claimSignature?: Uint8Array | undefined;
|
15840
16191
|
blockHash?: Uint8Array | undefined;
|
15841
16192
|
verificationType?: number | undefined;
|
15842
16193
|
chainId?: number | undefined;
|
16194
|
+
protocol?: Protocol | undefined;
|
15843
16195
|
} | undefined;
|
15844
16196
|
verificationRemoveBody?: {
|
15845
16197
|
address?: Uint8Array | undefined;
|
16198
|
+
protocol?: Protocol | undefined;
|
15846
16199
|
} | undefined;
|
15847
16200
|
userDataBody?: {
|
15848
16201
|
type?: UserDataType | undefined;
|
@@ -16998,15 +17351,17 @@ declare const ValidationResponse: {
|
|
16998
17351
|
} | undefined;
|
16999
17352
|
targetUrl?: string | undefined;
|
17000
17353
|
} | undefined;
|
17001
|
-
|
17354
|
+
verificationAddAddressBody?: {
|
17002
17355
|
address?: Uint8Array | undefined;
|
17003
|
-
|
17356
|
+
claimSignature?: Uint8Array | undefined;
|
17004
17357
|
blockHash?: Uint8Array | undefined;
|
17005
17358
|
verificationType?: number | undefined;
|
17006
17359
|
chainId?: number | undefined;
|
17360
|
+
protocol?: Protocol | undefined;
|
17007
17361
|
} | undefined;
|
17008
17362
|
verificationRemoveBody?: {
|
17009
17363
|
address?: Uint8Array | undefined;
|
17364
|
+
protocol?: Protocol | undefined;
|
17010
17365
|
} | undefined;
|
17011
17366
|
userDataBody?: {
|
17012
17367
|
type?: UserDataType | undefined;
|
@@ -17079,15 +17434,17 @@ declare const ValidationResponse: {
|
|
17079
17434
|
} | undefined;
|
17080
17435
|
targetUrl?: string | undefined;
|
17081
17436
|
} | undefined;
|
17082
|
-
|
17437
|
+
verificationAddAddressBody?: {
|
17083
17438
|
address?: Uint8Array | undefined;
|
17084
|
-
|
17439
|
+
claimSignature?: Uint8Array | undefined;
|
17085
17440
|
blockHash?: Uint8Array | undefined;
|
17086
17441
|
verificationType?: number | undefined;
|
17087
17442
|
chainId?: number | undefined;
|
17443
|
+
protocol?: Protocol | undefined;
|
17088
17444
|
} | undefined;
|
17089
17445
|
verificationRemoveBody?: {
|
17090
17446
|
address?: Uint8Array | undefined;
|
17447
|
+
protocol?: Protocol | undefined;
|
17091
17448
|
} | undefined;
|
17092
17449
|
userDataBody?: {
|
17093
17450
|
type?: UserDataType | undefined;
|
@@ -17157,15 +17514,17 @@ declare const ValidationResponse: {
|
|
17157
17514
|
} | undefined;
|
17158
17515
|
targetUrl?: string | undefined;
|
17159
17516
|
} | undefined;
|
17160
|
-
|
17517
|
+
verificationAddAddressBody?: {
|
17161
17518
|
address?: Uint8Array | undefined;
|
17162
|
-
|
17519
|
+
claimSignature?: Uint8Array | undefined;
|
17163
17520
|
blockHash?: Uint8Array | undefined;
|
17164
17521
|
verificationType?: number | undefined;
|
17165
17522
|
chainId?: number | undefined;
|
17523
|
+
protocol?: Protocol | undefined;
|
17166
17524
|
} | undefined;
|
17167
17525
|
verificationRemoveBody?: {
|
17168
17526
|
address?: Uint8Array | undefined;
|
17527
|
+
protocol?: Protocol | undefined;
|
17169
17528
|
} | undefined;
|
17170
17529
|
userDataBody?: {
|
17171
17530
|
type?: UserDataType | undefined;
|
@@ -17280,24 +17639,28 @@ declare const ValidationResponse: {
|
|
17280
17639
|
} & { [K_9 in Exclude<keyof I["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
17281
17640
|
targetUrl?: string | undefined;
|
17282
17641
|
} & { [K_10 in Exclude<keyof I["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
17283
|
-
|
17642
|
+
verificationAddAddressBody?: ({
|
17284
17643
|
address?: Uint8Array | undefined;
|
17285
|
-
|
17644
|
+
claimSignature?: Uint8Array | undefined;
|
17286
17645
|
blockHash?: Uint8Array | undefined;
|
17287
17646
|
verificationType?: number | undefined;
|
17288
17647
|
chainId?: number | undefined;
|
17648
|
+
protocol?: Protocol | undefined;
|
17289
17649
|
} & {
|
17290
17650
|
address?: Uint8Array | undefined;
|
17291
|
-
|
17651
|
+
claimSignature?: Uint8Array | undefined;
|
17292
17652
|
blockHash?: Uint8Array | undefined;
|
17293
17653
|
verificationType?: number | undefined;
|
17294
17654
|
chainId?: number | undefined;
|
17295
|
-
|
17655
|
+
protocol?: Protocol | undefined;
|
17656
|
+
} & { [K_11 in Exclude<keyof I["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
17296
17657
|
verificationRemoveBody?: ({
|
17297
17658
|
address?: Uint8Array | undefined;
|
17659
|
+
protocol?: Protocol | undefined;
|
17298
17660
|
} & {
|
17299
17661
|
address?: Uint8Array | undefined;
|
17300
|
-
|
17662
|
+
protocol?: Protocol | undefined;
|
17663
|
+
} & { [K_12 in Exclude<keyof I["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
17301
17664
|
userDataBody?: ({
|
17302
17665
|
type?: UserDataType | undefined;
|
17303
17666
|
value?: string | undefined;
|
@@ -17395,15 +17758,17 @@ declare const ValidationResponse: {
|
|
17395
17758
|
} | undefined;
|
17396
17759
|
targetUrl?: string | undefined;
|
17397
17760
|
} | undefined;
|
17398
|
-
|
17761
|
+
verificationAddAddressBody?: {
|
17399
17762
|
address?: Uint8Array | undefined;
|
17400
|
-
|
17763
|
+
claimSignature?: Uint8Array | undefined;
|
17401
17764
|
blockHash?: Uint8Array | undefined;
|
17402
17765
|
verificationType?: number | undefined;
|
17403
17766
|
chainId?: number | undefined;
|
17767
|
+
protocol?: Protocol | undefined;
|
17404
17768
|
} | undefined;
|
17405
17769
|
verificationRemoveBody?: {
|
17406
17770
|
address?: Uint8Array | undefined;
|
17771
|
+
protocol?: Protocol | undefined;
|
17407
17772
|
} | undefined;
|
17408
17773
|
userDataBody?: {
|
17409
17774
|
type?: UserDataType | undefined;
|
@@ -17476,15 +17841,17 @@ declare const ValidationResponse: {
|
|
17476
17841
|
} | undefined;
|
17477
17842
|
targetUrl?: string | undefined;
|
17478
17843
|
} | undefined;
|
17479
|
-
|
17844
|
+
verificationAddAddressBody?: {
|
17480
17845
|
address?: Uint8Array | undefined;
|
17481
|
-
|
17846
|
+
claimSignature?: Uint8Array | undefined;
|
17482
17847
|
blockHash?: Uint8Array | undefined;
|
17483
17848
|
verificationType?: number | undefined;
|
17484
17849
|
chainId?: number | undefined;
|
17850
|
+
protocol?: Protocol | undefined;
|
17485
17851
|
} | undefined;
|
17486
17852
|
verificationRemoveBody?: {
|
17487
17853
|
address?: Uint8Array | undefined;
|
17854
|
+
protocol?: Protocol | undefined;
|
17488
17855
|
} | undefined;
|
17489
17856
|
userDataBody?: {
|
17490
17857
|
type?: UserDataType | undefined;
|
@@ -17554,15 +17921,17 @@ declare const ValidationResponse: {
|
|
17554
17921
|
} | undefined;
|
17555
17922
|
targetUrl?: string | undefined;
|
17556
17923
|
} | undefined;
|
17557
|
-
|
17924
|
+
verificationAddAddressBody?: {
|
17558
17925
|
address?: Uint8Array | undefined;
|
17559
|
-
|
17926
|
+
claimSignature?: Uint8Array | undefined;
|
17560
17927
|
blockHash?: Uint8Array | undefined;
|
17561
17928
|
verificationType?: number | undefined;
|
17562
17929
|
chainId?: number | undefined;
|
17930
|
+
protocol?: Protocol | undefined;
|
17563
17931
|
} | undefined;
|
17564
17932
|
verificationRemoveBody?: {
|
17565
17933
|
address?: Uint8Array | undefined;
|
17934
|
+
protocol?: Protocol | undefined;
|
17566
17935
|
} | undefined;
|
17567
17936
|
userDataBody?: {
|
17568
17937
|
type?: UserDataType | undefined;
|
@@ -17677,24 +18046,28 @@ declare const ValidationResponse: {
|
|
17677
18046
|
} & { [K_30 in Exclude<keyof I_1["message"]["data"]["reactionBody"]["targetCastId"], keyof CastId>]: never; }) | undefined;
|
17678
18047
|
targetUrl?: string | undefined;
|
17679
18048
|
} & { [K_31 in Exclude<keyof I_1["message"]["data"]["reactionBody"], keyof ReactionBody>]: never; }) | undefined;
|
17680
|
-
|
18049
|
+
verificationAddAddressBody?: ({
|
17681
18050
|
address?: Uint8Array | undefined;
|
17682
|
-
|
18051
|
+
claimSignature?: Uint8Array | undefined;
|
17683
18052
|
blockHash?: Uint8Array | undefined;
|
17684
18053
|
verificationType?: number | undefined;
|
17685
18054
|
chainId?: number | undefined;
|
18055
|
+
protocol?: Protocol | undefined;
|
17686
18056
|
} & {
|
17687
18057
|
address?: Uint8Array | undefined;
|
17688
|
-
|
18058
|
+
claimSignature?: Uint8Array | undefined;
|
17689
18059
|
blockHash?: Uint8Array | undefined;
|
17690
18060
|
verificationType?: number | undefined;
|
17691
18061
|
chainId?: number | undefined;
|
17692
|
-
|
18062
|
+
protocol?: Protocol | undefined;
|
18063
|
+
} & { [K_32 in Exclude<keyof I_1["message"]["data"]["verificationAddAddressBody"], keyof VerificationAddAddressBody>]: never; }) | undefined;
|
17693
18064
|
verificationRemoveBody?: ({
|
17694
18065
|
address?: Uint8Array | undefined;
|
18066
|
+
protocol?: Protocol | undefined;
|
17695
18067
|
} & {
|
17696
18068
|
address?: Uint8Array | undefined;
|
17697
|
-
|
18069
|
+
protocol?: Protocol | undefined;
|
18070
|
+
} & { [K_33 in Exclude<keyof I_1["message"]["data"]["verificationRemoveBody"], keyof VerificationRemoveBody>]: never; }) | undefined;
|
17698
18071
|
userDataBody?: ({
|
17699
18072
|
type?: UserDataType | undefined;
|
17700
18073
|
value?: string | undefined;
|