@algorandfoundation/algokit-utils 1.0.0-beta.9 → 1.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 (158) hide show
  1. package/README.md +38 -0
  2. package/account.d.ts +41 -36
  3. package/account.d.ts.map +1 -1
  4. package/account.js +59 -44
  5. package/account.js.map +1 -1
  6. package/amount.d.ts +20 -0
  7. package/amount.d.ts.map +1 -0
  8. package/amount.js +36 -0
  9. package/amount.js.map +1 -0
  10. package/app-client.d.ts +14 -0
  11. package/app-client.d.ts.map +1 -0
  12. package/app-client.js +19 -0
  13. package/app-client.js.map +1 -0
  14. package/app-deploy.d.ts +95 -0
  15. package/app-deploy.d.ts.map +1 -0
  16. package/{deploy-app.js → app-deploy.js} +129 -119
  17. package/app-deploy.js.map +1 -0
  18. package/app.d.ts +112 -148
  19. package/app.d.ts.map +1 -1
  20. package/app.js +460 -143
  21. package/app.js.map +1 -1
  22. package/index.d.ts +6 -4
  23. package/index.d.ts.map +1 -1
  24. package/index.js +7 -4
  25. package/index.js.map +1 -1
  26. package/indexer-lookup.d.ts +11 -4
  27. package/indexer-lookup.d.ts.map +1 -1
  28. package/indexer-lookup.js +19 -9
  29. package/indexer-lookup.js.map +1 -1
  30. package/localnet.d.ts +10 -10
  31. package/localnet.d.ts.map +1 -1
  32. package/localnet.js +16 -16
  33. package/localnet.js.map +1 -1
  34. package/network-client.d.ts +15 -24
  35. package/network-client.d.ts.map +1 -1
  36. package/network-client.js +16 -16
  37. package/network-client.js.map +1 -1
  38. package/package.json +2 -2
  39. package/testing/account.d.ts +14 -0
  40. package/testing/account.d.ts.map +1 -0
  41. package/testing/account.js +31 -0
  42. package/testing/account.js.map +1 -0
  43. package/testing/fixtures/algokit-log-capture-fixture.d.ts +19 -0
  44. package/testing/fixtures/algokit-log-capture-fixture.d.ts.map +1 -0
  45. package/testing/fixtures/algokit-log-capture-fixture.js +43 -0
  46. package/testing/fixtures/algokit-log-capture-fixture.js.map +1 -0
  47. package/testing/fixtures/algorand-fixture.d.ts +24 -0
  48. package/testing/fixtures/algorand-fixture.d.ts.map +1 -0
  49. package/testing/fixtures/algorand-fixture.js +60 -0
  50. package/testing/fixtures/algorand-fixture.js.map +1 -0
  51. package/testing/fixtures/index.d.ts +3 -0
  52. package/testing/fixtures/index.d.ts.map +1 -0
  53. package/testing/fixtures/index.js +19 -0
  54. package/testing/fixtures/index.js.map +1 -0
  55. package/testing/index.d.ts +6 -0
  56. package/testing/index.d.ts.map +1 -0
  57. package/testing/index.js +22 -0
  58. package/testing/index.js.map +1 -0
  59. package/testing/indexer.d.ts +12 -0
  60. package/testing/indexer.d.ts.map +1 -0
  61. package/testing/indexer.js +40 -0
  62. package/testing/indexer.js.map +1 -0
  63. package/testing/test-logger.d.ts +41 -0
  64. package/testing/test-logger.d.ts.map +1 -0
  65. package/testing/test-logger.js +71 -0
  66. package/testing/test-logger.js.map +1 -0
  67. package/testing/transaction-logger.d.ts +29 -0
  68. package/testing/transaction-logger.d.ts.map +1 -0
  69. package/testing/transaction-logger.js +71 -0
  70. package/testing/transaction-logger.js.map +1 -0
  71. package/transaction.d.ts +55 -91
  72. package/transaction.d.ts.map +1 -1
  73. package/transaction.js +213 -155
  74. package/transaction.js.map +1 -1
  75. package/transfer.d.ts +14 -16
  76. package/transfer.d.ts.map +1 -1
  77. package/transfer.js +38 -4
  78. package/transfer.js.map +1 -1
  79. package/types/account.d.ts +55 -0
  80. package/types/account.d.ts.map +1 -0
  81. package/types/account.js +91 -0
  82. package/types/account.js.map +1 -0
  83. package/types/algo-http-client-with-retry.d.ts.map +1 -0
  84. package/{algo-http-client-with-retry.js → types/algo-http-client-with-retry.js} +3 -3
  85. package/types/algo-http-client-with-retry.js.map +1 -0
  86. package/types/algod.d.ts +28 -15
  87. package/types/algod.d.ts.map +1 -1
  88. package/{algo-amount.d.ts → types/amount.d.ts} +9 -3
  89. package/types/amount.d.ts.map +1 -0
  90. package/{algo-amount.js → types/amount.js} +13 -3
  91. package/types/amount.js.map +1 -0
  92. package/types/app-client.d.ts +282 -0
  93. package/types/app-client.d.ts.map +1 -0
  94. package/types/app-client.js +529 -0
  95. package/types/app-client.js.map +1 -0
  96. package/types/app-spec.d.ts +141 -0
  97. package/types/app-spec.d.ts.map +1 -0
  98. package/types/{appspec.js → app-spec.js} +5 -7
  99. package/types/app-spec.js.map +1 -0
  100. package/types/app.d.ts +285 -0
  101. package/types/app.d.ts.map +1 -0
  102. package/types/app.js +32 -0
  103. package/types/app.js.map +1 -0
  104. package/types/config.d.ts +32 -0
  105. package/types/config.d.ts.map +1 -0
  106. package/types/config.js +53 -0
  107. package/types/config.js.map +1 -0
  108. package/types/indexer.d.ts +368 -58
  109. package/types/indexer.d.ts.map +1 -1
  110. package/types/indexer.js +9 -0
  111. package/types/indexer.js.map +1 -1
  112. package/{config.d.ts → types/logging.d.ts} +2 -16
  113. package/types/logging.d.ts.map +1 -0
  114. package/{config.js → types/logging.js} +5 -24
  115. package/types/logging.js.map +1 -0
  116. package/types/logic-error.d.ts +37 -0
  117. package/types/logic-error.d.ts.map +1 -0
  118. package/types/logic-error.js +50 -0
  119. package/types/logic-error.js.map +1 -0
  120. package/types/network-client.d.ts +11 -0
  121. package/types/network-client.d.ts.map +1 -0
  122. package/types/network-client.js +3 -0
  123. package/types/network-client.js.map +1 -0
  124. package/types/testing.d.ts +89 -0
  125. package/types/testing.d.ts.map +1 -0
  126. package/types/testing.js +3 -0
  127. package/types/testing.js.map +1 -0
  128. package/types/transaction.d.ts +112 -0
  129. package/types/transaction.d.ts.map +1 -0
  130. package/types/transaction.js +3 -0
  131. package/types/transaction.js.map +1 -0
  132. package/types/transfer.d.ts +32 -0
  133. package/types/transfer.d.ts.map +1 -0
  134. package/types/transfer.js +3 -0
  135. package/types/transfer.js.map +1 -0
  136. package/types/urlTokenBaseHTTPClient.d.ts.map +1 -0
  137. package/types/urlTokenBaseHTTPClient.js.map +1 -0
  138. package/algo-amount.d.ts.map +0 -1
  139. package/algo-amount.js.map +0 -1
  140. package/algo-http-client-with-retry.d.ts.map +0 -1
  141. package/algo-http-client-with-retry.js.map +0 -1
  142. package/application-client.d.ts +0 -113
  143. package/application-client.d.ts.map +0 -1
  144. package/application-client.js +0 -258
  145. package/application-client.js.map +0 -1
  146. package/config.d.ts.map +0 -1
  147. package/config.js.map +0 -1
  148. package/deploy-app.d.ts +0 -164
  149. package/deploy-app.d.ts.map +0 -1
  150. package/deploy-app.js.map +0 -1
  151. package/types/appspec.d.ts +0 -78
  152. package/types/appspec.d.ts.map +0 -1
  153. package/types/appspec.js.map +0 -1
  154. package/urlTokenBaseHTTPClient.d.ts.map +0 -1
  155. package/urlTokenBaseHTTPClient.js.map +0 -1
  156. /package/{algo-http-client-with-retry.d.ts → types/algo-http-client-with-retry.d.ts} +0 -0
  157. /package/{urlTokenBaseHTTPClient.d.ts → types/urlTokenBaseHTTPClient.d.ts} +0 -0
  158. /package/{urlTokenBaseHTTPClient.js → types/urlTokenBaseHTTPClient.js} +0 -0
@@ -1,143 +1,340 @@
1
1
  import { TransactionType } from 'algosdk';
2
2
  import { TealKeyValue } from 'algosdk/dist/types/client/v2/algod/models/types';
3
- /** https://developer.algorand.org/docs/rest-apis/indexer/#get-v2transactions */
3
+ /** Indexer result for a transaction search, https://developer.algorand.org/docs/rest-apis/indexer/#get-v2transactions */
4
4
  export interface TransactionSearchResults {
5
- 'current-round': string;
5
+ /** Round at which the results were computed. */
6
+ 'current-round': number;
7
+ /** Used for pagination, when making another request provide this token with the next parameter. */
6
8
  'next-token': string;
9
+ /** The returned transactions */
7
10
  transactions: TransactionResult[];
8
11
  }
9
- /** https://developer.algorand.org/docs/rest-apis/indexer/#get-v2accountsaccount-id */
12
+ /** Indexer result for an account lookup, https://developer.algorand.org/docs/rest-apis/indexer/#get-v2accountsaccount-id */
10
13
  export interface AccountLookupResult {
11
- 'current-round': string;
14
+ /** Round at which the results were computed. */
15
+ 'current-round': number;
16
+ /** The returned account */
12
17
  account: AccountResult;
13
18
  }
14
- /** https://developer.algorand.org/docs/rest-apis/indexer/#get-v2accountsaccount-idassets */
19
+ /** Indexer result for an account's asset holdings, https://developer.algorand.org/docs/rest-apis/indexer/#get-v2accountsaccount-idassets */
15
20
  export interface AssetsLookupResult {
16
- 'current-round': string;
21
+ /** Round at which the results were computed. */
22
+ 'current-round': number;
23
+ /** Used for pagination, when making another request provide this token with the next parameter. */
17
24
  'next-token': string;
25
+ /** The returned asset holdings */
18
26
  assets: AssetHolding[];
19
27
  }
20
- /** https://developer.algorand.org/docs/rest-apis/indexer/#get-v2accountsaccount-idcreated-assets */
28
+ /** Indexer result for an account's created assets, https://developer.algorand.org/docs/rest-apis/indexer/#get-v2accountsaccount-idcreated-assets */
21
29
  export interface AssetsCreatedLookupResult {
22
- 'current-round': string;
30
+ /** Round at which the results were computed. */
31
+ 'current-round': number;
32
+ /** Used for pagination, when making another request provide this token with the next parameter. */
23
33
  'next-token': string;
34
+ /** The returned assets */
24
35
  assets: AssetResult[];
25
36
  }
26
- /** https://developer.algorand.org/docs/rest-apis/indexer/#get-v2accountsaccount-idcreated-applications */
37
+ /** Indexer result for an account's created applications, https://developer.algorand.org/docs/rest-apis/indexer/#get-v2accountsaccount-idcreated-applications */
27
38
  export interface ApplicationCreatedLookupResult {
28
- 'current-round': string;
39
+ /** Round at which the results were computed. */
40
+ 'current-round': number;
41
+ /** Used for pagination, when making another request provide this token with the next parameter. */
29
42
  'next-token': string;
43
+ /** The returned applications */
30
44
  applications: ApplicationResult[];
31
45
  }
32
- /** https://developer.algorand.org/docs/rest-apis/indexer/#get-v2assetsasset-id */
46
+ /** Indexer result for an asset lookup, https://developer.algorand.org/docs/rest-apis/indexer/#get-v2assetsasset-id */
33
47
  export interface AssetLookupResult {
34
- 'current-round': string;
48
+ /** Round at which the results were computed. */
49
+ 'current-round': number;
50
+ /** The returned asset */
35
51
  asset: AssetResult;
36
52
  }
37
- /** https://developer.algorand.org/docs/rest-apis/indexer/#get-v2transactionstxid */
53
+ /** Indexer result for a transaction lookup, https://developer.algorand.org/docs/rest-apis/indexer/#get-v2transactionstxid */
38
54
  export interface TransactionLookupResult {
55
+ /** Round at which the results were computed. */
39
56
  'current-round': number;
57
+ /** The returned transaction */
40
58
  transaction: TransactionResult;
41
59
  }
42
- /** https://developer.algorand.org/docs/rest-apis/indexer/#get-v2applicationsapplication-id */
60
+ /** Indexer result for an application lookup, https://developer.algorand.org/docs/rest-apis/indexer/#get-v2applicationsapplication-id */
43
61
  export interface ApplicationLookupResult {
44
- 'current-round': string;
62
+ /** Round at which the results were computed. */
63
+ 'current-round': number;
64
+ /** The returned application */
45
65
  application: ApplicationResult;
46
66
  }
47
- /** Indexer result for a transaction, @see https://developer.algorand.org/docs/rest-apis/indexer/#transaction */
48
- export interface TransactionResult {
67
+ /** Indexer result for a transaction, https://developer.algorand.org/docs/rest-apis/indexer/#transaction */
68
+ export interface TransactionResult extends Record<string, any> {
69
+ /** Transaction ID */
49
70
  id: string;
71
+ /** [type] Indicates what type of transaction this is. Different types have different fields. */
72
+ 'tx-type': TransactionType;
73
+ /** [fee] Transaction fee. */
50
74
  fee: number;
75
+ /** [snd] Sender's address. */
51
76
  sender: string;
77
+ /** [fv] First valid round for this transaction. */
52
78
  'first-valid': number;
79
+ /** [lv] Last valid round for this transaction. */
53
80
  'last-valid': number;
81
+ /** Round when the transaction was confirmed. */
54
82
  'confirmed-round'?: number;
83
+ /** [grp] Base64 encoded byte array of a sha512/256 digest.
84
+ *
85
+ * When present indicates that this transaction is part of a transaction group
86
+ * and the value is the sha512/256 hash of the transactions in that group.
87
+ *
88
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
89
+ */
55
90
  group?: string;
91
+ /**
92
+ * [note] Free form data.
93
+ *
94
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
95
+ */
56
96
  note?: string;
97
+ /** [lg] Logs for the application being executed by this transaction. */
57
98
  logs?: string[];
99
+ /** Time when the block this transaction is in was confirmed. */
58
100
  'round-time'?: number;
101
+ /** Offset into the round where this transaction was confirmed. */
59
102
  'intra-round-offset'?: number;
103
+ /** Signature of the transaction */
60
104
  signature?: TransactionSignature;
105
+ /** If the transaction is an `appl` transaction this will be populated see `tx-type` */
61
106
  'application-transaction'?: ApplicationTransactionResult;
107
+ /** If the transaction is an `appl` transaction that resulted in an application creation then this
108
+ * specifies the application index (ID) of that application.
109
+ */
62
110
  'created-application-index'?: number;
111
+ /** If the transaction is an `acfg` transaction this will be populated see `tx-type` */
63
112
  'asset-config-transaction': AssetConfigTransactionResult;
113
+ /** If the transaction is an `acfg` transaction that resulted in an asset creation then this
114
+ * specifies the asset index (ID) of that asset.
115
+ */
64
116
  'created-asset-index'?: number;
117
+ /** If the transaction is an `afrz` transaction this will be populated see `tx-type` */
65
118
  'asset-freeze-transaction'?: AssetFreezeTransactionResult;
119
+ /** If the transaction is an `axfer` transaction this will be populated see `tx-type` */
66
120
  'asset-transfer-transaction'?: AssetTransferTransactionResult;
67
- 'keyreg-transaction'?: any;
121
+ /** If the transaction is a `keyreg` transaction this will be populated see `tx-type` */
122
+ 'keyreg-transaction'?: KeyRegistrationTransactionResult;
123
+ /** If the transaction is a `pay` transaction this will be populated see `tx-type` */
68
124
  'payment-transaction'?: PaymentTransactionResult;
125
+ /** [sgnr] this is included with signed transactions when the signing address does not equal the sender.
126
+ * The backend can use this to ensure that auth addr is equal to the accounts auth addr.
127
+ */
69
128
  'auth-addr'?: string;
129
+ /** [ca] closing amount for transaction. */
70
130
  'closing-amount'?: number;
131
+ /** [gh] Hash of genesis block.
132
+ *
133
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
134
+ */
71
135
  'genesis-hash'?: string;
136
+ /** [gen] genesis block ID. */
72
137
  'genesis-id'?: string;
138
+ /** Inner transactions produced by application execution. */
73
139
  'inner-txns'?: TransactionResult[];
140
+ /** [rekey] when included in a valid transaction, the accounts auth addr will be updated with
141
+ * this value and future signatures must be signed with the key represented by this address.
142
+ */
74
143
  'rekey-to'?: string;
144
+ /** [lx] Base64 encoded 32-byte array. Lease enforces mutual exclusion of transactions.
145
+ *
146
+ * If this field is nonzero, then once the transaction is confirmed, it acquires the lease
147
+ * identified by the (Sender, Lease) pair of the transaction until the LastValid round passes.
148
+ *
149
+ * While this transaction possesses the lease, no other transaction specifying this lease can be confirmed.
150
+ *
151
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
152
+ */
75
153
  lease?: string;
154
+ /** [ld] Local state key/value changes for the application being executed by this transaction. */
76
155
  'local-state-delta'?: Record<string, EvalDelta>[];
156
+ /** [gd] Global state key/value changes for the application being executed by this transaction. */
77
157
  'global-state-delta'?: Record<string, EvalDelta>[];
158
+ /** [rr] rewards applied to receiver account. */
78
159
  'receiver-rewards'?: number;
160
+ /** [rs] rewards applied to sender account. */
79
161
  'sender-rewards'?: number;
162
+ /** [rc] rewards applied to close-remainder-to account. */
80
163
  'close-rewards'?: number;
81
- 'tx-type': TransactionType;
82
164
  }
83
- export interface AccountResult {
165
+ /** Account information at a given round https://developer.algorand.org/docs/rest-apis/indexer/#account */
166
+ export interface AccountResult extends Record<string, any> {
167
+ /** the account public key */
84
168
  address: string;
169
+ /** [algo] total number of MicroAlgos in the account */
85
170
  amount: number;
171
+ /** specifies the amount of MicroAlgos in the account, without the pending rewards. */
86
172
  'amount-without-pending-rewards': number;
173
+ /** [appl] applications local data stored in this account.
174
+ *
175
+ * Note the raw object uses map[int] -> AppLocalState for this type.
176
+ */
87
177
  'apps-local-state'?: AppLocalState[];
178
+ /** [teap] the sum of all extra application program pages for this account. */
88
179
  'apps-total-extra-pages'?: number;
180
+ /** [tsch] stores the sum of all of the local schemas and global schemas in this account.
181
+ *
182
+ * Note: the raw account uses StateSchema for this type.
183
+ */
89
184
  'apps-total-schema'?: StateSchema;
185
+ /** [asset] assets held by this account.
186
+ *
187
+ * Note the raw object uses map[int] -> AssetHolding for this type.
188
+ */
189
+ assets?: AssetHolding[];
190
+ /** [spend] the address against which signing should be checked.
191
+ *
192
+ * If empty, the address of the current account is used.
193
+ *
194
+ * This field can be updated in any transaction by setting the RekeyTo field.
195
+ */
90
196
  'auth-addr'?: string;
197
+ /** Round during which this account was most recently closed. */
91
198
  'closed-at-round'?: number;
199
+ /** [appp] parameters of applications created by this account including app global data.
200
+ *
201
+ * Note: the raw account uses map[int] -> AppParams for this type.
202
+ */
203
+ 'created-apps'?: ApplicationResult[];
204
+ /** [apar] parameters of assets created by this account.
205
+ *
206
+ * Note: the raw account uses map[int] -> Asset for this type.
207
+ */
208
+ 'created-assets'?: AssetResult[];
209
+ /** Round during which this account first appeared in a transaction. */
92
210
  'created-at-round'?: number;
211
+ /** Whether or not this account is currently closed. */
93
212
  deleted?: boolean;
94
- participation: any;
213
+ /** If participating in consensus, the parameters used by this account in the consensus protocol. */
214
+ participation?: AccountParticipation;
215
+ /** amount of MicroAlgos of pending rewards in this account. */
95
216
  'pending-rewards': number;
96
- 'reward-base': number;
217
+ /** [ebase] used as part of the rewards computation. Only applicable to accounts which are participating. */
218
+ 'reward-base'?: number;
219
+ /** [ern] total rewards of MicroAlgos the account has received, including pending rewards. */
97
220
  rewards: number;
221
+ /** The round for which this information is relevant. */
98
222
  round: number;
223
+ /** Indicates what type of signature is used by this account */
99
224
  'sig-type': SignatureType;
225
+ /** [onl] delegation status of the account's MicroAlgos */
100
226
  status: AccountStatus;
227
+ /** The count of all applications that have been opted in, equivalent to the count of application local data (AppLocalState objects) stored in this account. */
228
+ 'total-apps-opted-in': number;
229
+ /** The count of all assets that have been opted in, equivalent to the count of AssetHolding objects held by this account. */
230
+ 'total-assets-opted-in': number;
231
+ /** For app-accounts only. The total number of bytes allocated for the keys and values of boxes which belong to the associated application. */
232
+ 'total-box-bytes': number;
233
+ /** For app-accounts only. The total number of boxes which belong to the associated application. */
234
+ 'total-boxes': number;
235
+ /** The count of all apps (AppParams objects) created by this account. */
236
+ 'total-created-apps': number;
237
+ /** The count of all assets (AssetParams objects) created by this account. */
238
+ 'total-created-assets': number;
101
239
  }
240
+ /** Fields for a payment transaction https://developer.algorand.org/docs/rest-apis/indexer/#transactionpayment */
102
241
  export interface PaymentTransactionResult {
242
+ /** [amt] number of MicroAlgos intended to be transferred. */
103
243
  amount: number;
244
+ /** Number of MicroAlgos that were sent to the close-remainder-to address when closing the sender account. */
104
245
  'close-amount'?: number;
246
+ /** [close] when set, indicates that the sending account should be closed and all remaining funds be transferred to this address. */
105
247
  'close-remainder-to'?: string;
248
+ /** [rcv] receiver's address. */
106
249
  receiver: string;
107
250
  }
108
- export interface ApplicationTransactionResult extends Exclude<{
109
- creator: string;
110
- 'global-state': TealKeyValue[];
111
- }, ApplicationParams> {
112
- 'application-id': number;
113
- 'on-completion': ApplicationOnComplete;
114
- 'application-args'?: string[];
251
+ /** Fields for an application transaction https://developer.algorand.org/docs/rest-apis/indexer/#transactionapplication */
252
+ export interface ApplicationTransactionResult extends Omit<ApplicationParams, 'creator' | 'global-state'> {
253
+ /** [apat] List of accounts in addition to the sender that may be accessed from the application's approval-program and clear-state-program. */
115
254
  accounts?: string[];
255
+ /** [apaa] transaction specific arguments accessed from the application's approval-program and clear-state-program. */
256
+ 'application-args'?: string[];
257
+ /** [apid] ID of the application being configured or empty if creating. */
258
+ 'application-id': number;
259
+ /** [apfa] Lists the applications in addition to the application-id whose global states may be accessed by this application's approval-program and clear-state-program. The access is read-only. */
116
260
  'foreign-apps'?: number[];
261
+ /** [apas] lists the assets whose parameters may be accessed by this application's ApprovalProgram and ClearStateProgram. The access is read-only. */
117
262
  'foreign-assets'?: number[];
263
+ /** [apan] defines the what additional actions occur with the transaction. */
264
+ 'on-completion': ApplicationOnComplete;
118
265
  }
266
+ /** Fields for asset allocation, re-configuration, and destruction.
267
+ * https://developer.algorand.org/docs/rest-apis/indexer/#transactionassetconfig
268
+ *
269
+ * A zero value for asset-id indicates asset creation. A zero value for the params indicates asset destruction.
270
+ */
119
271
  export interface AssetConfigTransactionResult {
272
+ /** [xaid] ID of the asset being configured or empty if creating. */
120
273
  'asset-id': number;
274
+ /** [apar] the parameters for the asset. */
121
275
  params: AssetParams;
122
276
  }
277
+ /** Fields for an asset freeze transaction. https://developer.algorand.org/docs/rest-apis/indexer/#transactionassetfreeze */
123
278
  export interface AssetFreezeTransactionResult {
279
+ /** [fadd] Address of the account whose asset is being frozen or thawed. */
124
280
  address: string;
281
+ /** [faid] ID of the asset being frozen or thawed. */
125
282
  'asset-id': number;
283
+ /** [afrz] The new freeze status. */
126
284
  'new-freeze-status': boolean;
127
285
  }
286
+ /** Fields for an asset transfer transaction. https://developer.algorand.org/docs/rest-apis/indexer/#transactionassettransfer */
128
287
  export interface AssetTransferTransactionResult {
288
+ /** [aamt] Amount of asset to transfer. A zero amount transferred to self allocates that asset in the account's Assets map. */
129
289
  amount: number;
290
+ /** [xaid] ID of the asset being transferred. */
130
291
  'asset-id': number;
292
+ /** Number of assets transfered to the close-to account as part of the transaction. */
131
293
  'close-amount'?: number;
294
+ /** [aclose] Indicates that the asset should be removed from the account's Assets map, and specifies where the remaining asset holdings should be transferred. It's always valid to transfer remaining asset holdings to the creator account. */
132
295
  'close-to'?: string;
133
- receiver?: string;
296
+ /** [arcv] Recipient address of the transfer. */
297
+ receiver: string;
298
+ /** [asnd] The effective sender during a clawback transactions. If this is not a zero value, the real transaction sender must be the Clawback address from the AssetParams. */
134
299
  sender?: string;
135
300
  }
301
+ /** Fields for a `keyreg` transaction https://developer.algorand.org/docs/rest-apis/indexer/#transactionkeyreg */
302
+ export interface KeyRegistrationTransactionResult {
303
+ /** [nonpart] Mark the account as participating or non-participating. */
304
+ 'non-participation'?: boolean;
305
+ /** [selkey] Public key used with the Verified Random Function (VRF) result during committee selection.
306
+ *
307
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
308
+ */
309
+ 'selection-participation-key'?: string;
310
+ /** [selkey] Public key used with the Verified Random Function (VRF) result during committee selection.
311
+ *
312
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
313
+ */
314
+ 'state-proof-key'?: string;
315
+ /** [votefst] First round this participation key is valid. */
316
+ 'vote-first-valid'?: number;
317
+ /** [votekd] Number of subkeys in each batch of participation keys. */
318
+ 'vote-key-dilution'?: number;
319
+ /** [votelst] Last round this participation key is valid. */
320
+ 'vote-last-valid'?: number;
321
+ /** [votekey] Participation public key used in key registration transactions.
322
+ *
323
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
324
+ */
325
+ 'vote-participation-key'?: string;
326
+ }
327
+ /** Specifies both the unique identifier and the parameters for an asset. https://developer.algorand.org/docs/rest-apis/indexer/#asset */
136
328
  export interface AssetResult {
329
+ /** Unique asset identifier. */
137
330
  index: number;
331
+ /** Whether or not this asset is currently deleted. */
138
332
  deleted?: boolean;
139
- 'created-at-round': number;
140
- 'deleted-at-round': number;
333
+ /** Round during which this asset was created. */
334
+ 'created-at-round'?: number;
335
+ /** Round during which this asset was destroyed. */
336
+ 'destroyed-at-round'?: number;
337
+ /** The parameters for the asset */
141
338
  params: AssetParams;
142
339
  }
143
340
  /**
@@ -150,44 +347,120 @@ export interface ApplicationResult {
150
347
  deleted?: boolean;
151
348
  'deleted-at-round'?: number;
152
349
  }
153
- interface TransactionSignature {
350
+ /** Validation signature associated with some data. Only one of the signatures should be provided. https://developer.algorand.org/docs/rest-apis/indexer/#transactionsignature */
351
+ export interface TransactionSignature {
352
+ /** Logicsig signature */
154
353
  logicsig: LogicTransactionSignature;
354
+ /** Multisig signature */
155
355
  multisig: MultisigTransactionSignature;
356
+ /** [sig] Standard ed25519 signature.
357
+ *
358
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
359
+ */
156
360
  sig: string;
157
361
  }
158
- interface LogicTransactionSignature {
159
- args: string[];
362
+ /** [lsig] Programatic transaction signature.
363
+ *
364
+ * https://developer.algorand.org/docs/rest-apis/indexer/#transactionsignaturelogicsig
365
+ *
366
+ * https://developer.algorand.org/docs/get-details/transactions/signatures/#logic-signatures
367
+ */
368
+ export interface LogicTransactionSignature {
369
+ /** [arg] Logic arguments, base64 encoded. */
370
+ args?: string[];
371
+ /** [l] Program signed by a signature or multi signature, or hashed to be the address of ana ccount.
372
+ *
373
+ * Base64 encoded TEAL program.
374
+ *
375
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
376
+ */
160
377
  logic: string;
161
- 'multisig-signature': MultisigTransactionSignature;
162
- signature: string;
378
+ /** The signature of the multisig the logic signature delegating the logicsig. https://developer.algorand.org/docs/get-details/dapps/smart-contracts/smartsigs/modes/#delegated-approval */
379
+ 'multisig-signature'?: MultisigTransactionSignature;
380
+ /** [sig] Standard ed25519 signature delegating the logicsig. https://developer.algorand.org/docs/get-details/dapps/smart-contracts/smartsigs/modes/#delegated-approval
381
+ *
382
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
383
+ */
384
+ signature?: string;
163
385
  }
164
- interface MultisigTransactionSignature {
386
+ /** [msig] structure holding multiple subsignatures. https://developer.algorand.org/docs/rest-apis/indexer/#transactionsignaturemultisig */
387
+ export interface MultisigTransactionSignature {
388
+ /** [subsig] Holds pairs of public key and signatures. */
165
389
  subsignature: MultisigTransactionSubSignature;
390
+ /** [thr] The threshold of signatures required for the multisig */
166
391
  threshold: number;
392
+ /** [v] The version of the multisig */
167
393
  version: number;
168
394
  }
169
- interface MultisigTransactionSubSignature {
395
+ /** Sub-signature for a multisig signature https://developer.algorand.org/docs/rest-apis/indexer/#transactionsignaturemultisigsubsignature */
396
+ export interface MultisigTransactionSubSignature {
397
+ /** [pk] The public key of the account making the signature
398
+ *
399
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
400
+ */
170
401
  'public-key': string;
402
+ /** [s] The signature
403
+ *
404
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
405
+ */
171
406
  signature: string;
172
407
  }
408
+ /** Represents a TEAL value delta. https://developer.algorand.org/docs/rest-apis/indexer/#evaldelta */
173
409
  export interface EvalDelta {
410
+ /** [at] delta action. */
174
411
  action: number;
175
- bytes: string;
176
- uint: number;
412
+ /** [bs] bytes value. */
413
+ bytes?: string;
414
+ /** [ui] uint value. */
415
+ uint?: number;
177
416
  }
178
- interface ApplicationParams {
417
+ /** Stores the global information associated with an application https://developer.algorand.org/docs/rest-apis/indexer/#applicationparams */
418
+ export interface ApplicationParams {
419
+ /** The address that created this application. This is the address where the parameters and global state for this application can be found. */
179
420
  creator: string;
421
+ /**
422
+ * [apap]/[approv] Logic executed for every application transaction, except when on-completion is set to "clear".
423
+ *
424
+ * It can read and write global state for the application, as well as account-specific local state.
425
+ *
426
+ * Approval programs may reject the transaction.
427
+ *
428
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
429
+ */
180
430
  'approval-program': string;
431
+ /**
432
+ * [apsu]/[clearp] Logic executed for application transactions with on-completion set to "clear".
433
+ *
434
+ * It can read and write global state for the application, as well as account-specific local state.
435
+ *
436
+ * Clear state programs cannot reject the transaction.
437
+ *
438
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
439
+ */
181
440
  'clear-state-program': string;
441
+ /** [epp] the amount of extra program pages available to this app. */
182
442
  'extra-program-pages'?: number;
443
+ /** [gs] global schema */
183
444
  'global-state': TealKeyValue[];
445
+ /** [gsch] global schema */
184
446
  'global-state-schema'?: StateSchema;
447
+ /** [lsch] local schema */
185
448
  'local-state-schema'?: StateSchema;
186
449
  }
187
- interface StateSchema {
450
+ /** Represents a [apls] local-state or [apgs] global-state schema.
451
+ * https://developer.algorand.org/docs/rest-apis/indexer/#stateschema
452
+ *
453
+ * These schemas determine how much storage may be used in a local-state or global-state for an application.
454
+ *
455
+ * The more space used, the larger minimum balance must be maintained in the account holding the data.
456
+ */
457
+ export interface StateSchema {
458
+ /** Maximum number of TEAL byte slices that may be stored in the key/value store. */
188
459
  'num-byte-slice': number;
460
+ /** Maximum number of TEAL uints that may be stored in the key/value store. */
189
461
  'num-uint': number;
190
462
  }
463
+ /** Defines the what additional actions occur with the transaction https://developer.algorand.org/docs/rest-apis/indexer/#oncompletion */
191
464
  export declare enum ApplicationOnComplete {
192
465
  noop = "noop",
193
466
  optin = "optin",
@@ -196,7 +469,8 @@ export declare enum ApplicationOnComplete {
196
469
  update = "update",
197
470
  delete = "delete"
198
471
  }
199
- interface AssetParams {
472
+ /** AssetParams specifies the parameters for an asset. https://developer.algorand.org/docs/rest-apis/indexer/#assetparams */
473
+ export interface AssetParams {
200
474
  /**
201
475
  * The address that created this asset. This is the address where the parameters
202
476
  * for this asset can be found, and also the address where unwanted asset units can
@@ -269,24 +543,64 @@ interface AssetParams {
269
543
  */
270
544
  'url-b64'?: Uint8Array;
271
545
  }
546
+ /** Type of signature used by an account */
272
547
  export declare enum SignatureType {
548
+ /** Normal signature */
273
549
  sig = "sig",
550
+ /** Multisig */
274
551
  msig = "msig",
552
+ /** Logic signature */
275
553
  lsig = "lsig"
276
554
  }
555
+ /** Delegation status of the account */
277
556
  export declare enum AccountStatus {
557
+ /** Indicates that the associated account is delegated */
278
558
  Offline = "Offline",
559
+ /** Indicates that the associated account used as part of the delegation pool */
279
560
  Online = "Online",
561
+ /** Indicates that the associated account is neither a delegator nor a delegate */
280
562
  NotParticipating = "NotParticipating"
281
563
  }
282
- interface AppLocalState {
283
- 'closed-out-at-round': number;
284
- deleted: boolean;
564
+ /** AccountParticipation describes the parameters used by this account in consensus protocol. https://developer.algorand.org/docs/rest-apis/indexer/#accountparticipation */
565
+ export interface AccountParticipation {
566
+ /** [sel] Selection public key (if any) currently registered for this round.
567
+ *
568
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
569
+ */
570
+ 'selection-participation-key': string;
571
+ /** [stprf] Root of the state proof key (if any).
572
+ *
573
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
574
+ */
575
+ 'state-proof-key'?: string;
576
+ /** [voteFst] First round for which this participation is valid. */
577
+ 'vote-first-valid': number;
578
+ /** [voteKD] Number of subkeys in each batch of participation keys. */
579
+ 'vote-key-dilution': number;
580
+ /** [voteLst] Last round for which this participation is valid. */
581
+ 'vote-last-valid': number;
582
+ /** [vote] root participation public key (if any) currently registered for this round.
583
+ *
584
+ * *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
585
+ */
586
+ 'vote-participation-key': string;
587
+ }
588
+ /** Stores local state associated with an application. https://developer.algorand.org/docs/rest-apis/indexer/#applicationlocalstate */
589
+ export interface AppLocalState {
590
+ /** Round when account closed out of the application. */
591
+ 'closed-out-at-round'?: number;
592
+ /** Whether or not the application local state is currently deleted from its account. */
593
+ deleted?: boolean;
594
+ /** The application which this local state is for. */
285
595
  id: number;
286
- 'key-value': TealKeyValue[];
287
- 'opted-in-at-round': number;
596
+ /** [tkv] storage. */
597
+ 'key-value'?: TealKeyValue[];
598
+ /** Round when the account opted into the application. */
599
+ 'opted-in-at-round'?: number;
600
+ /** [hsch] schema. */
288
601
  schema: StateSchema;
289
602
  }
603
+ /** Describes an asset held by an account. https://developer.algorand.org/docs/rest-apis/indexer/#assetholding */
290
604
  export interface AssetHolding {
291
605
  /**
292
606
  * (a) number of units held.
@@ -296,19 +610,15 @@ export interface AssetHolding {
296
610
  * Asset ID of the holding.
297
611
  */
298
612
  'asset-id': number;
613
+ /** Whether or not the asset holding is currently deleted from its account. */
614
+ deleted?: boolean;
299
615
  /**
300
- * Address that created this asset. This is the address where the parameters for
301
- * this asset can be found, and also the address where unwanted asset units can be
302
- * sent in the worst case.
303
- */
304
- creator: string;
305
- /**
306
- * (f) whether or not the holding is frozen.
616
+ * [f] whether or not the holding is frozen.
307
617
  */
308
618
  'is-frozen': boolean;
309
- deleted?: boolean;
619
+ /** Round during which the account opted into this asset holding. */
310
620
  'opted-in-at-round': number;
621
+ /** Round during which the account opted out of this asset holding. */
311
622
  'opted-out-at-round': number;
312
623
  }
313
- export {};
314
624
  //# sourceMappingURL=indexer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"indexer.d.ts","sourceRoot":"","sources":["../../src/types/indexer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"indexer.d.ts","sourceRoot":"","sources":["../../src/types/indexer.ts"],"names":[],"mappings":"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"}