zattera-js 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +694 -0
  3. package/dist/browser/index.js +2466 -0
  4. package/dist/browser/index.js.map +1 -0
  5. package/dist/node/auth/index.js +188 -0
  6. package/dist/node/auth/index.js.map +1 -0
  7. package/dist/node/auth/keys.js +264 -0
  8. package/dist/node/auth/keys.js.map +1 -0
  9. package/dist/node/auth/memo.js +79 -0
  10. package/dist/node/auth/memo.js.map +1 -0
  11. package/dist/node/auth/serializer.js +162 -0
  12. package/dist/node/auth/serializer.js.map +1 -0
  13. package/dist/node/client/index.js +838 -0
  14. package/dist/node/client/index.js.map +1 -0
  15. package/dist/node/index.js +30 -0
  16. package/dist/node/index.js.map +1 -0
  17. package/dist/node/node_modules/@noble/ciphers/aes.js +254 -0
  18. package/dist/node/node_modules/@noble/ciphers/aes.js.map +1 -0
  19. package/dist/node/node_modules/@noble/ciphers/utils.js +113 -0
  20. package/dist/node/node_modules/@noble/ciphers/utils.js.map +1 -0
  21. package/dist/node/node_modules/@noble/hashes/esm/_md.js +146 -0
  22. package/dist/node/node_modules/@noble/hashes/esm/_md.js.map +1 -0
  23. package/dist/node/node_modules/@noble/hashes/esm/_u64.js +51 -0
  24. package/dist/node/node_modules/@noble/hashes/esm/_u64.js.map +1 -0
  25. package/dist/node/node_modules/@noble/hashes/esm/legacy.js +123 -0
  26. package/dist/node/node_modules/@noble/hashes/esm/legacy.js.map +1 -0
  27. package/dist/node/node_modules/@noble/hashes/esm/sha2.js +346 -0
  28. package/dist/node/node_modules/@noble/hashes/esm/sha2.js.map +1 -0
  29. package/dist/node/node_modules/@noble/hashes/esm/utils.js +73 -0
  30. package/dist/node/node_modules/@noble/hashes/esm/utils.js.map +1 -0
  31. package/dist/node/node_modules/@noble/secp256k1/index.js +578 -0
  32. package/dist/node/node_modules/@noble/secp256k1/index.js.map +1 -0
  33. package/dist/node/node_modules/bs58/node_modules/base-x/src/esm/index.js +132 -0
  34. package/dist/node/node_modules/bs58/node_modules/base-x/src/esm/index.js.map +1 -0
  35. package/dist/node/node_modules/bs58/src/esm/index.js +7 -0
  36. package/dist/node/node_modules/bs58/src/esm/index.js.map +1 -0
  37. package/dist/node/types/index.js +48 -0
  38. package/dist/node/types/index.js.map +1 -0
  39. package/dist/node/utils/chain-id.js +9 -0
  40. package/dist/node/utils/chain-id.js.map +1 -0
  41. package/dist/types/auth/index.d.ts +134 -0
  42. package/dist/types/auth/index.d.ts.map +1 -0
  43. package/dist/types/auth/keys.d.ts +112 -0
  44. package/dist/types/auth/keys.d.ts.map +1 -0
  45. package/dist/types/auth/memo.d.ts +51 -0
  46. package/dist/types/auth/memo.d.ts.map +1 -0
  47. package/dist/types/auth/serializer.d.ts +57 -0
  48. package/dist/types/auth/serializer.d.ts.map +1 -0
  49. package/dist/types/client/index.d.ts +360 -0
  50. package/dist/types/client/index.d.ts.map +1 -0
  51. package/dist/types/index.d.ts +16 -0
  52. package/dist/types/index.d.ts.map +1 -0
  53. package/dist/types/types/index.d.ts +593 -0
  54. package/dist/types/types/index.d.ts.map +1 -0
  55. package/dist/types/utils/chain-id.d.ts +10 -0
  56. package/dist/types/utils/chain-id.d.ts.map +1 -0
  57. package/package.json +63 -0
@@ -0,0 +1,360 @@
1
+ import type { ZatteraClientConfig, DynamicGlobalProperties, ChainConfig, WitnessSchedule, HardforkProperties, RewardFund, PriceFeed, FeedHistory, Account, Witness, Comment, SignedBlock, SignedTransaction, ListAccountsParams, FindAccountsParams, ListWitnessesParams, GetAccountHistoryParams, GetOpsInBlockParams, DiscussionQuery, GetFollowersParams, GetFollowingParams, BroadcastTransactionResult, VerifyAuthorityResult, GetTransactionResult, AccountHistoryEntry, Ticker, Volume, TradeHistory, MarketHistory, OrderBook, LimitOrder, ActiveVote, AccountName, PublicKey, TransactionId, OwnerHistory, AccountRecoveryRequest, Escrow, VestingDelegation, ConversionRequest, Vote, WitnessVote } from '../types/index.js';
2
+ /**
3
+ * Zattera RPC Client
4
+ *
5
+ * Provides type-safe access to all Zattera blockchain RPC APIs
6
+ * following JSON-RPC 2.0 specification
7
+ */
8
+ export declare class ZatteraClient {
9
+ private endpoint;
10
+ private chainId;
11
+ private timeout;
12
+ private retries;
13
+ private requestId;
14
+ constructor(config: ZatteraClientConfig);
15
+ private getNextId;
16
+ /**
17
+ * Get the configured chain ID
18
+ */
19
+ getChainId(): string;
20
+ /**
21
+ * Internal method to make JSON-RPC 2.0 requests with retry logic
22
+ */
23
+ private request;
24
+ /**
25
+ * Make batch JSON-RPC requests
26
+ */
27
+ batch<T = unknown>(requests: Array<{
28
+ method: string;
29
+ params?: unknown[] | Record<string, unknown>;
30
+ }>): Promise<T[]>;
31
+ /**
32
+ * Generic RPC call method for custom or new API methods
33
+ */
34
+ call<T>(method: string, params?: unknown[] | Record<string, unknown>): Promise<T>;
35
+ /**
36
+ * Get compile-time chain configuration constants
37
+ */
38
+ getConfig(): Promise<ChainConfig>;
39
+ /**
40
+ * Get current dynamic global properties (head block, supply, etc.)
41
+ */
42
+ getDynamicGlobalProperties(): Promise<DynamicGlobalProperties>;
43
+ /**
44
+ * Get active witness schedule
45
+ */
46
+ getWitnessSchedule(): Promise<WitnessSchedule>;
47
+ /**
48
+ * Get hardfork properties and version information
49
+ */
50
+ getHardforkProperties(): Promise<HardforkProperties>;
51
+ /**
52
+ * Get reward fund details
53
+ */
54
+ getRewardFunds(): Promise<RewardFund[]>;
55
+ /**
56
+ * Get current median price feed
57
+ */
58
+ getCurrentPriceFeed(): Promise<PriceFeed>;
59
+ /**
60
+ * Get price feed history
61
+ */
62
+ getFeedHistory(): Promise<FeedHistory>;
63
+ /**
64
+ * List witnesses by specified order
65
+ */
66
+ listWitnesses(params: ListWitnessesParams): Promise<Witness[]>;
67
+ /**
68
+ * Find specific witnesses by account names
69
+ */
70
+ findWitnesses(owners: AccountName[]): Promise<Witness[]>;
71
+ /**
72
+ * List witness votes
73
+ */
74
+ listWitnessVotes(start: [AccountName, AccountName] | null, limit: number, order: string): Promise<WitnessVote[]>;
75
+ /**
76
+ * Get currently active witnesses
77
+ */
78
+ getActiveWitnesses(): Promise<AccountName[]>;
79
+ /**
80
+ * List accounts by specified order
81
+ */
82
+ listAccounts(params: ListAccountsParams): Promise<Account[]>;
83
+ /**
84
+ * Find specific accounts by names
85
+ */
86
+ findAccounts(params: FindAccountsParams): Promise<Account[]>;
87
+ /**
88
+ * List account owner authority change history
89
+ */
90
+ listOwnerHistories(start: [AccountName, string] | null, limit: number): Promise<OwnerHistory[]>;
91
+ /**
92
+ * Find owner history for specific account
93
+ */
94
+ findOwnerHistories(owner: AccountName): Promise<OwnerHistory[]>;
95
+ /**
96
+ * List account recovery requests
97
+ */
98
+ listAccountRecoveryRequests(start: AccountName | null, limit: number, order: string): Promise<AccountRecoveryRequest[]>;
99
+ /**
100
+ * Find account recovery requests
101
+ */
102
+ findAccountRecoveryRequests(accounts: AccountName[]): Promise<AccountRecoveryRequest[]>;
103
+ /**
104
+ * List escrows
105
+ */
106
+ listEscrows(start: [AccountName, number] | null, limit: number, order: string): Promise<Escrow[]>;
107
+ /**
108
+ * Find escrows
109
+ */
110
+ findEscrows(from: AccountName): Promise<Escrow[]>;
111
+ /**
112
+ * List vesting delegations
113
+ */
114
+ listVestingDelegations(start: [AccountName, AccountName] | null, limit: number, order: string): Promise<VestingDelegation[]>;
115
+ /**
116
+ * Find vesting delegations
117
+ */
118
+ findVestingDelegations(account: AccountName): Promise<VestingDelegation[]>;
119
+ /**
120
+ * List SBD conversion requests
121
+ */
122
+ listDollarConversionRequests(start: [AccountName, number] | null, limit: number, order: string): Promise<ConversionRequest[]>;
123
+ /**
124
+ * Find SBD conversion requests
125
+ */
126
+ findDollarConversionRequests(account: AccountName): Promise<ConversionRequest[]>;
127
+ /**
128
+ * List comments by specified order
129
+ */
130
+ listComments(start: [AccountName, string] | null, limit: number, order: string): Promise<Comment[]>;
131
+ /**
132
+ * Find specific comments
133
+ */
134
+ findComments(comments: Array<[AccountName, string]>): Promise<Comment[]>;
135
+ /**
136
+ * List votes
137
+ */
138
+ listVotes(start: [AccountName, AccountName, string] | null, limit: number, order: string): Promise<Vote[]>;
139
+ /**
140
+ * Find specific votes
141
+ */
142
+ findVotes(author: AccountName, permlink: string): Promise<Vote[]>;
143
+ /**
144
+ * List limit orders
145
+ */
146
+ listLimitOrders(start: [AccountName, number] | null, limit: number, order: string): Promise<LimitOrder[]>;
147
+ /**
148
+ * Find limit orders
149
+ */
150
+ findLimitOrders(account: AccountName): Promise<LimitOrder[]>;
151
+ /**
152
+ * Get current order book
153
+ */
154
+ getOrderBook(limit?: number): Promise<OrderBook>;
155
+ /**
156
+ * Get transaction as hex string
157
+ */
158
+ getTransactionHex(trx: SignedTransaction): Promise<string>;
159
+ /**
160
+ * Get required signatures for transaction
161
+ */
162
+ getRequiredSignatures(trx: SignedTransaction, availableKeys: PublicKey[]): Promise<PublicKey[]>;
163
+ /**
164
+ * Get all potential signatures for transaction
165
+ */
166
+ getPotentialSignatures(trx: SignedTransaction): Promise<PublicKey[]>;
167
+ /**
168
+ * Verify transaction has required authority
169
+ */
170
+ verifyAuthority(trx: SignedTransaction): Promise<VerifyAuthorityResult>;
171
+ /**
172
+ * Verify account has authority from signers
173
+ */
174
+ verifyAccountAuthority(account: AccountName, signers: PublicKey[]): Promise<VerifyAuthorityResult>;
175
+ /**
176
+ * Verify arbitrary signatures
177
+ */
178
+ verifySignatures(hash: string, signatures: string[], requiredOwner: AccountName[], requiredActive: AccountName[], requiredPosting: AccountName[], requiredOther: PublicKey[]): Promise<VerifyAuthorityResult>;
179
+ /**
180
+ * Broadcast transaction to the network
181
+ */
182
+ broadcastTransaction(trx: SignedTransaction, maxBlockAge?: number): Promise<BroadcastTransactionResult>;
183
+ /**
184
+ * Broadcast block to the network
185
+ */
186
+ broadcastBlock(block: SignedBlock): Promise<void>;
187
+ /**
188
+ * Get block header by block number
189
+ */
190
+ getBlockHeader(blockNum: number): Promise<SignedBlock>;
191
+ /**
192
+ * Get full block by block number
193
+ */
194
+ getBlock(blockNum: number): Promise<SignedBlock>;
195
+ /**
196
+ * Get operations in a specific block
197
+ */
198
+ getOpsInBlock(params: GetOpsInBlockParams): Promise<unknown[]>;
199
+ /**
200
+ * Get transaction by ID
201
+ */
202
+ getTransaction(id: TransactionId): Promise<GetTransactionResult>;
203
+ /**
204
+ * Get account operation history
205
+ */
206
+ getAccountHistory(params: GetAccountHistoryParams): Promise<Record<number, AccountHistoryEntry>>;
207
+ /**
208
+ * Enumerate virtual operations in block range
209
+ */
210
+ enumVirtualOps(blockRangeBegin: number, blockRangeEnd: number): Promise<unknown[]>;
211
+ /**
212
+ * Get trending tags
213
+ */
214
+ getTrendingTags(startTag?: string, limit?: number): Promise<unknown[]>;
215
+ /**
216
+ * Get tags used by author
217
+ */
218
+ getTagsUsedByAuthor(author: AccountName): Promise<unknown[]>;
219
+ /**
220
+ * Get single discussion/post
221
+ */
222
+ getDiscussion(author: AccountName, permlink: string): Promise<Comment>;
223
+ /**
224
+ * Get replies to a post
225
+ */
226
+ getContentReplies(author: AccountName, permlink: string): Promise<Comment[]>;
227
+ /**
228
+ * Get discussions by trending
229
+ */
230
+ getDiscussionsByTrending(query: DiscussionQuery): Promise<Comment[]>;
231
+ /**
232
+ * Get discussions by creation time
233
+ */
234
+ getDiscussionsByCreated(query: DiscussionQuery): Promise<Comment[]>;
235
+ /**
236
+ * Get discussions by activity
237
+ */
238
+ getDiscussionsByActive(query: DiscussionQuery): Promise<Comment[]>;
239
+ /**
240
+ * Get discussions by cashout time
241
+ */
242
+ getDiscussionsByCashout(query: DiscussionQuery): Promise<Comment[]>;
243
+ /**
244
+ * Get discussions by votes
245
+ */
246
+ getDiscussionsByVotes(query: DiscussionQuery): Promise<Comment[]>;
247
+ /**
248
+ * Get discussions by children count
249
+ */
250
+ getDiscussionsByChildren(query: DiscussionQuery): Promise<Comment[]>;
251
+ /**
252
+ * Get hot discussions
253
+ */
254
+ getDiscussionsByHot(query: DiscussionQuery): Promise<Comment[]>;
255
+ /**
256
+ * Get discussions from follower feed
257
+ */
258
+ getDiscussionsByFeed(query: DiscussionQuery): Promise<Comment[]>;
259
+ /**
260
+ * Get discussions from blog
261
+ */
262
+ getDiscussionsByBlog(query: DiscussionQuery): Promise<Comment[]>;
263
+ /**
264
+ * Get discussions by comment count
265
+ */
266
+ getDiscussionsByComments(query: DiscussionQuery): Promise<Comment[]>;
267
+ /**
268
+ * Get promoted discussions
269
+ */
270
+ getDiscussionsByPromoted(query: DiscussionQuery): Promise<Comment[]>;
271
+ /**
272
+ * Get active votes on a post
273
+ */
274
+ getActiveVotes(author: AccountName, permlink: string): Promise<ActiveVote[]>;
275
+ /**
276
+ * Get followers of an account
277
+ */
278
+ getFollowers(params: GetFollowersParams): Promise<unknown[]>;
279
+ /**
280
+ * Get accounts that an account is following
281
+ */
282
+ getFollowing(params: GetFollowingParams): Promise<unknown[]>;
283
+ /**
284
+ * Get follower and following counts
285
+ */
286
+ getFollowCount(account: AccountName): Promise<{
287
+ account: AccountName;
288
+ follower_count: number;
289
+ following_count: number;
290
+ }>;
291
+ /**
292
+ * Get feed entries
293
+ */
294
+ getFeedEntries(account: AccountName, startEntryId?: number, limit?: number): Promise<unknown[]>;
295
+ /**
296
+ * Get feed with full comments
297
+ */
298
+ getFeed(account: AccountName, startEntryId?: number, limit?: number): Promise<Comment[]>;
299
+ /**
300
+ * Get blog entries
301
+ */
302
+ getBlogEntries(account: AccountName, startEntryId?: number, limit?: number): Promise<unknown[]>;
303
+ /**
304
+ * Get blog with full comments
305
+ */
306
+ getBlog(account: AccountName, startEntryId?: number, limit?: number): Promise<Comment[]>;
307
+ /**
308
+ * Get account reputation scores
309
+ */
310
+ getAccountReputations(accountLowerBound?: AccountName, limit?: number): Promise<unknown[]>;
311
+ /**
312
+ * Get accounts that reblogged a post
313
+ */
314
+ getRebloggedBy(author: AccountName, permlink: string): Promise<AccountName[]>;
315
+ /**
316
+ * Get blog author statistics
317
+ */
318
+ getBlogAuthors(blogAccount: AccountName): Promise<unknown[]>;
319
+ /**
320
+ * Get market ticker
321
+ */
322
+ getTicker(): Promise<Ticker>;
323
+ /**
324
+ * Get market volume
325
+ */
326
+ getVolume(): Promise<Volume>;
327
+ /**
328
+ * Get market order book
329
+ */
330
+ getMarketOrderBook(limit?: number): Promise<OrderBook>;
331
+ /**
332
+ * Get trade history
333
+ */
334
+ getTradeHistory(start: string, end: string, limit?: number): Promise<TradeHistory[]>;
335
+ /**
336
+ * Get recent trades
337
+ */
338
+ getRecentTrades(limit?: number): Promise<TradeHistory[]>;
339
+ /**
340
+ * Get market history buckets
341
+ */
342
+ getMarketHistory(bucketSeconds: number, start: string, end: string): Promise<MarketHistory[]>;
343
+ /**
344
+ * Get available bucket sizes
345
+ */
346
+ getMarketHistoryBuckets(): Promise<number[]>;
347
+ /**
348
+ * Get accounts that can sign with given public keys
349
+ */
350
+ getKeyReferences(keys: PublicKey[]): Promise<AccountName[][]>;
351
+ /**
352
+ * Get list of all available RPC methods
353
+ */
354
+ getMethods(): Promise<string[]>;
355
+ /**
356
+ * Get signature (parameters and return type) for an RPC method
357
+ */
358
+ getSignature(method: string): Promise<unknown>;
359
+ }
360
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/client/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EAGnB,uBAAuB,EACvB,WAAW,EACX,eAAe,EACf,kBAAkB,EAClB,UAAU,EACV,SAAS,EACT,WAAW,EACX,OAAO,EACP,OAAO,EACP,OAAO,EACP,WAAW,EACX,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,uBAAuB,EACvB,mBAAmB,EACnB,eAAe,EACf,kBAAkB,EAClB,kBAAkB,EAClB,0BAA0B,EAC1B,qBAAqB,EACrB,oBAAoB,EACpB,mBAAmB,EACnB,MAAM,EACN,MAAM,EACN,YAAY,EACZ,aAAa,EACb,SAAS,EACT,UAAU,EACV,UAAU,EACV,WAAW,EACX,SAAS,EACT,aAAa,EACb,YAAY,EACZ,sBAAsB,EACtB,MAAM,EACN,iBAAiB,EACjB,iBAAiB,EACjB,IAAI,EACJ,WAAW,EACZ,MAAM,mBAAmB,CAAC;AAG3B;;;;;GAKG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,SAAS,CAAS;gBAEd,MAAM,EAAE,mBAAmB;IAQvC,OAAO,CAAC,SAAS;IAIjB;;OAEG;IACH,UAAU,IAAI,MAAM;IAIpB;;OAEG;YACW,OAAO;IA6DrB;;OAEG;IACG,KAAK,CAAC,CAAC,GAAG,OAAO,EACrB,QAAQ,EAAE,KAAK,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,CAAC,GAChF,OAAO,CAAC,CAAC,EAAE,CAAC;IA8Df;;OAEG;IACG,IAAI,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAE,OAAO,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAQ3F;;OAEG;IACG,SAAS,IAAI,OAAO,CAAC,WAAW,CAAC;IAIvC;;OAEG;IACG,0BAA0B,IAAI,OAAO,CAAC,uBAAuB,CAAC;IAOpE;;OAEG;IACG,kBAAkB,IAAI,OAAO,CAAC,eAAe,CAAC;IAOpD;;OAEG;IACG,qBAAqB,IAAI,OAAO,CAAC,kBAAkB,CAAC;IAO1D;;OAEG;IACG,cAAc,IAAI,OAAO,CAAC,UAAU,EAAE,CAAC;IAK7C;;OAEG;IACG,mBAAmB,IAAI,OAAO,CAAC,SAAS,CAAC;IAO/C;;OAEG;IACG,cAAc,IAAI,OAAO,CAAC,WAAW,CAAC;IAQ5C;;OAEG;IACG,aAAa,CAAC,MAAM,EAAE,mBAAmB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAKpE;;OAEG;IACG,aAAa,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAO9D;;OAEG;IACG,gBAAgB,CACpB,KAAK,EAAE,CAAC,WAAW,EAAE,WAAW,CAAC,GAAG,IAAI,EACxC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,WAAW,EAAE,CAAC;IAQzB;;OAEG;IACG,kBAAkB,IAAI,OAAO,CAAC,WAAW,EAAE,CAAC;IAYlD;;OAEG;IACG,YAAY,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAKlE;;OAEG;IACG,YAAY,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAKlE;;OAEG;IACG,kBAAkB,CACtB,KAAK,EAAE,CAAC,WAAW,EAAE,MAAM,CAAC,GAAG,IAAI,EACnC,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,YAAY,EAAE,CAAC;IAO1B;;OAEG;IACG,kBAAkB,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC;IAOrE;;OAEG;IACG,2BAA2B,CAC/B,KAAK,EAAE,WAAW,GAAG,IAAI,EACzB,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,sBAAsB,EAAE,CAAC;IAOpC;;OAEG;IACG,2BAA2B,CAC/B,QAAQ,EAAE,WAAW,EAAE,GACtB,OAAO,CAAC,sBAAsB,EAAE,CAAC;IAOpC;;OAEG;IACG,WAAW,CACf,KAAK,EAAE,CAAC,WAAW,EAAE,MAAM,CAAC,GAAG,IAAI,EACnC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,MAAM,EAAE,CAAC;IAQpB;;OAEG;IACG,WAAW,CAAC,IAAI,EAAE,WAAW,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAIvD;;OAEG;IACG,sBAAsB,CAC1B,KAAK,EAAE,CAAC,WAAW,EAAE,WAAW,CAAC,GAAG,IAAI,EACxC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAO/B;;OAEG;IACG,sBAAsB,CAC1B,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAO/B;;OAEG;IACG,4BAA4B,CAChC,KAAK,EAAE,CAAC,WAAW,EAAE,MAAM,CAAC,GAAG,IAAI,EACnC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAO/B;;OAEG;IACG,4BAA4B,CAChC,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAW/B;;OAEG;IACG,YAAY,CAChB,KAAK,EAAE,CAAC,WAAW,EAAE,MAAM,CAAC,GAAG,IAAI,EACnC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,OAAO,EAAE,CAAC;IAQrB;;OAEG;IACG,YAAY,CAChB,QAAQ,EAAE,KAAK,CAAC,CAAC,WAAW,EAAE,MAAM,CAAC,CAAC,GACrC,OAAO,CAAC,OAAO,EAAE,CAAC;IAMrB;;OAEG;IACG,SAAS,CACb,KAAK,EAAE,CAAC,WAAW,EAAE,WAAW,EAAE,MAAM,CAAC,GAAG,IAAI,EAChD,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,IAAI,EAAE,CAAC;IAQlB;;OAEG;IACG,SAAS,CACb,MAAM,EAAE,WAAW,EACnB,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,IAAI,EAAE,CAAC;IAWlB;;OAEG;IACG,eAAe,CACnB,KAAK,EAAE,CAAC,WAAW,EAAE,MAAM,CAAC,GAAG,IAAI,EACnC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,UAAU,EAAE,CAAC;IAQxB;;OAEG;IACG,eAAe,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAMlE;;OAEG;IACG,YAAY,CAAC,KAAK,GAAE,MAAW,GAAG,OAAO,CAAC,SAAS,CAAC;IAU1D;;OAEG;IACG,iBAAiB,CAAC,GAAG,EAAE,iBAAiB,GAAG,OAAO,CAAC,MAAM,CAAC;IAIhE;;OAEG;IACG,qBAAqB,CACzB,GAAG,EAAE,iBAAiB,EACtB,aAAa,EAAE,SAAS,EAAE,GACzB,OAAO,CAAC,SAAS,EAAE,CAAC;IAOvB;;OAEG;IACG,sBAAsB,CAC1B,GAAG,EAAE,iBAAiB,GACrB,OAAO,CAAC,SAAS,EAAE,CAAC;IAOvB;;OAEG;IACG,eAAe,CAAC,GAAG,EAAE,iBAAiB,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAO7E;;OAEG;IACG,sBAAsB,CAC1B,OAAO,EAAE,WAAW,EACpB,OAAO,EAAE,SAAS,EAAE,GACnB,OAAO,CAAC,qBAAqB,CAAC;IAOjC;;OAEG;IACG,gBAAgB,CACpB,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,MAAM,EAAE,EACpB,aAAa,EAAE,WAAW,EAAE,EAC5B,cAAc,EAAE,WAAW,EAAE,EAC7B,eAAe,EAAE,WAAW,EAAE,EAC9B,aAAa,EAAE,SAAS,EAAE,GACzB,OAAO,CAAC,qBAAqB,CAAC;IAkBjC;;OAEG;IACG,oBAAoB,CACxB,GAAG,EAAE,iBAAiB,EACtB,WAAW,GAAE,MAAW,GACvB,OAAO,CAAC,0BAA0B,CAAC;IAOtC;;OAEG;IACG,cAAc,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAUvD;;OAEG;IACG,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAO5D;;OAEG;IACG,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAWtD;;OAEG;IACG,aAAa,CAAC,MAAM,EAAE,mBAAmB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAIpE;;OAEG;IACG,cAAc,CAAC,EAAE,EAAE,aAAa,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAOtE;;OAEG;IACG,iBAAiB,CACrB,MAAM,EAAE,uBAAuB,GAC9B,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAC;IAO/C;;OAEG;IACG,cAAc,CAClB,eAAe,EAAE,MAAM,EACvB,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC,OAAO,EAAE,CAAC;IAWrB;;OAEG;IACG,eAAe,CACnB,QAAQ,GAAE,MAAW,EACrB,KAAK,GAAE,MAAY,GAClB,OAAO,CAAC,OAAO,EAAE,CAAC;IAQrB;;OAEG;IACG,mBAAmB,CAAC,MAAM,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAMlE;;OAEG;IACG,aAAa,CACjB,MAAM,EAAE,WAAW,EACnB,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,OAAO,CAAC;IAOnB;;OAEG;IACG,iBAAiB,CACrB,MAAM,EAAE,WAAW,EACnB,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,OAAO,EAAE,CAAC;IAQrB;;OAEG;IACG,wBAAwB,CAC5B,KAAK,EAAE,eAAe,GACrB,OAAO,CAAC,OAAO,EAAE,CAAC;IAIrB;;OAEG;IACG,uBAAuB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAIzE;;OAEG;IACG,sBAAsB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAIxE;;OAEG;IACG,uBAAuB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAIzE;;OAEG;IACG,qBAAqB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAIvE;;OAEG;IACG,wBAAwB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAI1E;;OAEG;IACG,mBAAmB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAIrE;;OAEG;IACG,oBAAoB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAItE;;OAEG;IACG,oBAAoB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAItE;;OAEG;IACG,wBAAwB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAI1E;;OAEG;IACG,wBAAwB,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAI1E;;OAEG;IACG,cAAc,CAClB,MAAM,EAAE,WAAW,EACnB,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,UAAU,EAAE,CAAC;IAWxB;;OAEG;IACG,YAAY,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAKlE;;OAEG;IACG,YAAY,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAKlE;;OAEG;IACG,cAAc,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC;QAClD,OAAO,EAAE,WAAW,CAAC;QACrB,cAAc,EAAE,MAAM,CAAC;QACvB,eAAe,EAAE,MAAM,CAAC;KACzB,CAAC;IAIF;;OAEG;IACG,cAAc,CAClB,OAAO,EAAE,WAAW,EACpB,YAAY,GAAE,MAAU,EACxB,KAAK,GAAE,MAAY,GAClB,OAAO,CAAC,OAAO,EAAE,CAAC;IAQrB;;OAEG;IACG,OAAO,CACX,OAAO,EAAE,WAAW,EACpB,YAAY,GAAE,MAAU,EACxB,KAAK,GAAE,MAAY,GAClB,OAAO,CAAC,OAAO,EAAE,CAAC;IAQrB;;OAEG;IACG,cAAc,CAClB,OAAO,EAAE,WAAW,EACpB,YAAY,GAAE,MAAU,EACxB,KAAK,GAAE,MAAY,GAClB,OAAO,CAAC,OAAO,EAAE,CAAC;IAQrB;;OAEG;IACG,OAAO,CACX,OAAO,EAAE,WAAW,EACpB,YAAY,GAAE,MAAU,EACxB,KAAK,GAAE,MAAY,GAClB,OAAO,CAAC,OAAO,EAAE,CAAC;IAQrB;;OAEG;IACG,qBAAqB,CACzB,iBAAiB,GAAE,WAAgB,EACnC,KAAK,GAAE,MAAY,GAClB,OAAO,CAAC,OAAO,EAAE,CAAC;IAOrB;;OAEG;IACG,cAAc,CAClB,MAAM,EAAE,WAAW,EACnB,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,WAAW,EAAE,CAAC;IAOzB;;OAEG;IACG,cAAc,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAUlE;;OAEG;IACG,SAAS,IAAI,OAAO,CAAC,MAAM,CAAC;IAIlC;;OAEG;IACG,SAAS,IAAI,OAAO,CAAC,MAAM,CAAC;IAIlC;;OAEG;IACG,kBAAkB,CAAC,KAAK,GAAE,MAAW,GAAG,OAAO,CAAC,SAAS,CAAC;IAMhE;;OAEG;IACG,eAAe,CACnB,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,EACX,KAAK,GAAE,MAAY,GAClB,OAAO,CAAC,YAAY,EAAE,CAAC;IAQ1B;;OAEG;IACG,eAAe,CAAC,KAAK,GAAE,MAAY,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC;IAMnE;;OAEG;IACG,gBAAgB,CACpB,aAAa,EAAE,MAAM,EACrB,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,GACV,OAAO,CAAC,aAAa,EAAE,CAAC;IAW3B;;OAEG;IACG,uBAAuB,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAYlD;;OAEG;IACG,gBAAgB,CAAC,IAAI,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,WAAW,EAAE,EAAE,CAAC;IAUnE;;OAEG;IACG,UAAU,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAIrC;;OAEG;IACG,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;CAGrD"}
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Zattera JS - TypeScript library for Zattera blockchain RPC calls
3
+ * @packageDocumentation
4
+ */
5
+ export { ZatteraClient } from './client/index.js';
6
+ export { generateChainId } from './utils/chain-id.js';
7
+ export { PrivateKey, PublicKey, Signature, generateKeys, isWif, isPublicKey, signTransaction, verifyTransactionSignatures, createTransaction, serializeTransaction, serializeSignedTransaction, TransactionSerializer, Auth, encodeMemo, decodeMemo, decodeMemoWithKey, } from './auth/index.js';
8
+ export type { SignConfig } from './auth/index.js';
9
+ export type { ZatteraClientConfig, NetworkName, JsonRpcRequest, JsonRpcResponse, JsonRpcError, RpcMethod, RpcParams, AccountName, BlockId, TransactionId, ShareType, AssetSymbol, Asset, Price, Operation, } from './types/index.js';
10
+ export { JsonRpcErrorCode } from './types/index.js';
11
+ export type { Transaction, SignedTransaction, BlockHeader, SignedBlockHeader, SignedBlock, } from './types/index.js';
12
+ export type { DynamicGlobalProperties, ChainConfig, WitnessSchedule, HardforkProperties, RewardFund, PriceFeed, FeedHistory, Account, Authority, OwnerHistory, AccountRecoveryRequest, Escrow, VestingDelegation, ConversionRequest, Comment, Beneficiary, ActiveVote, Vote, Witness, WitnessVote, LimitOrder, OrderBook, Order, } from './types/index.js';
13
+ export type { ListAccountsParams, FindAccountsParams, ListWitnessesParams, GetAccountHistoryParams, GetOpsInBlockParams, DiscussionQuery, GetFollowersParams, GetFollowingParams, } from './types/index.js';
14
+ export type { BroadcastTransactionResult, VerifyAuthorityResult, GetTransactionResult, AccountHistoryEntry, Ticker, Volume, TradeHistory, MarketHistory, Bucket, } from './types/index.js';
15
+ export { ListOrder } from './types/index.js';
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAGlD,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAGtD,OAAO,EACL,UAAU,EACV,SAAS,EACT,SAAS,EACT,YAAY,EACZ,KAAK,EACL,WAAW,EACX,eAAe,EACf,2BAA2B,EAC3B,iBAAiB,EACjB,oBAAoB,EACpB,0BAA0B,EAC1B,qBAAqB,EACrB,IAAI,EACJ,UAAU,EACV,UAAU,EACV,iBAAiB,GAClB,MAAM,iBAAiB,CAAC;AAEzB,YAAY,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAGlD,YAAY,EACV,mBAAmB,EACnB,WAAW,EACX,cAAc,EACd,eAAe,EACf,YAAY,EACZ,SAAS,EACT,SAAS,EACT,WAAW,EACX,OAAO,EACP,aAAa,EACb,SAAS,EACT,WAAW,EACX,KAAK,EACL,KAAK,EACL,SAAS,GACV,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAGpD,YAAY,EACV,WAAW,EACX,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,WAAW,GACZ,MAAM,kBAAkB,CAAC;AAG1B,YAAY,EACV,uBAAuB,EACvB,WAAW,EACX,eAAe,EACf,kBAAkB,EAClB,UAAU,EACV,SAAS,EACT,WAAW,EACX,OAAO,EACP,SAAS,EACT,YAAY,EACZ,sBAAsB,EACtB,MAAM,EACN,iBAAiB,EACjB,iBAAiB,EACjB,OAAO,EACP,WAAW,EACX,UAAU,EACV,IAAI,EACJ,OAAO,EACP,WAAW,EACX,UAAU,EACV,SAAS,EACT,KAAK,GACN,MAAM,kBAAkB,CAAC;AAG1B,YAAY,EACV,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,uBAAuB,EACvB,mBAAmB,EACnB,eAAe,EACf,kBAAkB,EAClB,kBAAkB,GACnB,MAAM,kBAAkB,CAAC;AAG1B,YAAY,EACV,0BAA0B,EAC1B,qBAAqB,EACrB,oBAAoB,EACpB,mBAAmB,EACnB,MAAM,EACN,MAAM,EACN,YAAY,EACZ,aAAa,EACb,MAAM,GACP,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC"}