@algorandfoundation/algokit-utils 6.0.0-beta.3 → 6.0.0-beta.5

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 (62) hide show
  1. package/account/account.d.ts +33 -1
  2. package/account/account.d.ts.map +1 -1
  3. package/account/account.js +63 -0
  4. package/account/account.js.map +1 -1
  5. package/account/account.mjs +62 -1
  6. package/account/account.mjs.map +1 -1
  7. package/index.d.ts +1 -0
  8. package/index.d.ts.map +1 -1
  9. package/index.js +5 -0
  10. package/index.js.map +1 -1
  11. package/index.mjs +3 -2
  12. package/index.mjs.map +1 -1
  13. package/indexer-lookup.d.ts +11 -2
  14. package/indexer-lookup.d.ts.map +1 -1
  15. package/indexer-lookup.js +33 -1
  16. package/indexer-lookup.js.map +1 -1
  17. package/indexer-lookup.mjs +33 -2
  18. package/indexer-lookup.mjs.map +1 -1
  19. package/package.json +1 -1
  20. package/testing/fixtures/algorand-fixture.d.ts.map +1 -1
  21. package/testing/fixtures/algorand-fixture.js +15 -2
  22. package/testing/fixtures/algorand-fixture.js.map +1 -1
  23. package/testing/fixtures/algorand-fixture.mjs +15 -2
  24. package/testing/fixtures/algorand-fixture.mjs.map +1 -1
  25. package/types/account-manager.d.ts +211 -0
  26. package/types/account-manager.d.ts.map +1 -0
  27. package/types/account-manager.js +265 -0
  28. package/types/account-manager.js.map +1 -0
  29. package/types/account-manager.mjs +263 -0
  30. package/types/account-manager.mjs.map +1 -0
  31. package/types/account.d.ts +19 -0
  32. package/types/account.d.ts.map +1 -1
  33. package/types/account.js.map +1 -1
  34. package/types/account.mjs.map +1 -1
  35. package/types/algorand-client.d.ts +183 -0
  36. package/types/algorand-client.d.ts.map +1 -0
  37. package/types/algorand-client.js +296 -0
  38. package/types/algorand-client.js.map +1 -0
  39. package/types/algorand-client.mjs +291 -0
  40. package/types/algorand-client.mjs.map +1 -0
  41. package/types/client-manager.d.ts +99 -0
  42. package/types/client-manager.d.ts.map +1 -0
  43. package/types/client-manager.js +99 -0
  44. package/types/client-manager.js.map +1 -0
  45. package/types/client-manager.mjs +97 -0
  46. package/types/client-manager.mjs.map +1 -0
  47. package/types/composer.d.ts +331 -0
  48. package/types/composer.d.ts.map +1 -0
  49. package/types/composer.js +446 -0
  50. package/types/composer.js.map +1 -0
  51. package/types/composer.mjs +444 -0
  52. package/types/composer.mjs.map +1 -0
  53. package/types/indexer.d.ts +39 -0
  54. package/types/indexer.d.ts.map +1 -1
  55. package/types/indexer.js.map +1 -1
  56. package/types/indexer.mjs.map +1 -1
  57. package/types/network-client.d.ts +2 -2
  58. package/types/network-client.d.ts.map +1 -1
  59. package/types/testing.d.ts +8 -2
  60. package/types/testing.d.ts.map +1 -1
  61. package/types/transaction.d.ts +4 -0
  62. package/types/transaction.d.ts.map +1 -1
@@ -0,0 +1,263 @@
1
+ import algosdk from 'algosdk';
2
+ import { getAccountInformation, getAccountAssetInformation, rekeyedAccount, mnemonicAccountFromEnvironment, multisigAccount, randomAccount } from '../account/account.mjs';
3
+ import { getDispenserAccount } from '../account/get-dispenser-account.mjs';
4
+ import { mnemonicAccount } from '../account/mnemonic-account.mjs';
5
+ import { getKmdWalletAccount } from '../localnet/get-kmd-wallet-account.mjs';
6
+ import { getLocalNetDispenserAccount } from '../localnet/get-localnet-dispenser-account.mjs';
7
+ import { getSenderAddress, getSenderTransactionSigner } from '../transaction/transaction.mjs';
8
+
9
+ var LogicSigAccount = algosdk.LogicSigAccount;
10
+ /** Creates and keeps track of signing accounts that can sign transactions for a sending address. */
11
+ class AccountManager {
12
+ /**
13
+ * Create a new account manager.
14
+ * @param clientManager The ClientManager client to use for algod and kmd clients
15
+ */
16
+ constructor(clientManager) {
17
+ this._accounts = {};
18
+ this._clientManager = clientManager;
19
+ }
20
+ /**
21
+ * Sets the default signer to use if no other signer is specified.
22
+ *
23
+ * If this isn't set an a transaction needs signing for a given sender
24
+ * then an error will be thrown from `getSigner` / `getAccount`.
25
+ * @param signer The signer to use, either a `TransactionSigner` or a `TransactionSignerAccount`
26
+ * @returns The `AccountManager` so method calls can be chained
27
+ */
28
+ setDefaultSigner(signer) {
29
+ this._defaultSigner = 'signer' in signer ? signer.signer : signer;
30
+ return this;
31
+ }
32
+ /**
33
+ * Records the given account against the address of the account for later
34
+ * retrieval and returns a `TransactionSignerAccount`.
35
+ */
36
+ signerAccount(account) {
37
+ const acc = {
38
+ addr: getSenderAddress(account),
39
+ signer: getSenderTransactionSigner(account),
40
+ };
41
+ this._accounts[acc.addr] = acc;
42
+ return { ...acc, account };
43
+ }
44
+ /**
45
+ * Tracks the given account for later signing.
46
+ * @param account The account to register, which can be a `TransactionSignerAccount`
47
+ * or any `SendTransactionFrom` compatible account object
48
+ * @returns The `AccountManager` instance for method chaining
49
+ */
50
+ setSignerFromAccount(account) {
51
+ this.signerAccount(account);
52
+ return this;
53
+ }
54
+ /**
55
+ * Tracks the given account for later signing.
56
+ * @param sender The sender address to use this signer for
57
+ * @param signer The signer to sign transactions with for the given sender
58
+ * @returns The `AccountManager` instance for method chaining
59
+ */
60
+ setSigner(sender, signer) {
61
+ this._accounts[sender] = { addr: sender, signer };
62
+ return this;
63
+ }
64
+ /**
65
+ * Returns the `TransactionSigner` for the given sender address.
66
+ *
67
+ * If no signer has been registered for that address then the default signer is used if registered.
68
+ *
69
+ * @param sender The sender address
70
+ * @returns The `TransactionSigner` or throws an error if not found
71
+ */
72
+ getSigner(sender) {
73
+ const signer = this._accounts[sender]?.signer ?? this._defaultSigner;
74
+ if (!signer)
75
+ throw new Error(`No signer found for address ${sender}`);
76
+ return signer;
77
+ }
78
+ /**
79
+ * Returns the `TransactionSignerAccount` for the given sender address.
80
+ * @param sender The sender address
81
+ * @returns The `TransactionSignerAccount` or throws an error if not found
82
+ */
83
+ getAccount(sender) {
84
+ const account = this._accounts[sender];
85
+ if (!account)
86
+ throw new Error(`No signer found for address ${sender}`);
87
+ return account;
88
+ }
89
+ /**
90
+ * Returns the given sender account's current status, balance and spendable amounts.
91
+ *
92
+ * [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2accountsaddress)
93
+ * @example
94
+ * ```typescript
95
+ * const address = "XBYLS2E6YI6XXL5BWCAMOA4GTWHXWENZMX5UHXMRNWWUQ7BXCY5WC5TEPA";
96
+ * const accountInfo = await accountManager.getInformation(address);
97
+ * ```
98
+ *
99
+ * @param sender The account / address to look up
100
+ * @returns The account information
101
+ */
102
+ async getInformation(sender) {
103
+ return getAccountInformation(sender, this._clientManager.algod);
104
+ }
105
+ /**
106
+ * Returns the given sender account's asset holding for a given asset.
107
+ *
108
+ * @example
109
+ * ```typescript
110
+ * const address = "XBYLS2E6YI6XXL5BWCAMOA4GTWHXWENZMX5UHXMRNWWUQ7BXCY5WC5TEPA";
111
+ * const assetId = 123345;
112
+ * const accountInfo = await accountManager.getAccountAssetInformation(address, assetId);
113
+ * ```
114
+ *
115
+ * [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2accountsaddressassetsasset-id)
116
+ * @param sender The address of the sender/account to look up
117
+ * @param assetId The ID of the asset to return a holding for
118
+ * @returns The account asset holding information
119
+ */
120
+ async getAssetInformation(sender, assetId) {
121
+ return getAccountAssetInformation(sender, assetId, this._clientManager.algod);
122
+ }
123
+ /**
124
+ * Tracks and returns an Algorand account with secret key loaded (i.e. that can sign transactions) by taking the mnemonic secret.
125
+ *
126
+ * @example
127
+ * ```typescript
128
+ * const account = await account.fromMnemonic("mnemonic secret ...")
129
+ * const rekeyedAccount = await account.fromMnemonic("mnemonic secret ...", "SENDERADDRESS...")
130
+ * ```
131
+ * @param mnemonicSecret The mnemonic secret representing the private key of an account; **Note: Be careful how the mnemonic is handled**,
132
+ * never commit it into source control and ideally load it from the environment (ideally via a secret storage service) rather than the file system.
133
+ * @param sender The optional sender address to use this signer for (aka a rekeyed account)
134
+ * @returns The account
135
+ */
136
+ fromMnemonic(mnemonicSecret, sender) {
137
+ const account = mnemonicAccount(mnemonicSecret);
138
+ return this.signerAccount(sender ? rekeyedAccount(account, sender) : account);
139
+ }
140
+ /**
141
+ * Tracks and returns an Algorand account with private key loaded by convention from environment variables based on the given name identifier.
142
+ *
143
+ * Note: This function expects to run in a Node.js environment.
144
+ *
145
+ * ## Convention:
146
+ * * **Non-LocalNet:** will load process.env['\{NAME\}_MNEMONIC'] as a mnemonic secret; **Note: Be careful how the mnemonic is handled**,
147
+ * never commit it into source control and ideally load it via a secret storage service rather than the file system.
148
+ * If process.env['\{NAME\}_SENDER'] is defined then it will use that for the sender address (i.e. to support rekeyed accounts)
149
+ * * **LocalNet:** will load the account from a KMD wallet called \{NAME\} and if that wallet doesn't exist it will create it and fund the account for you
150
+ *
151
+ * This allows you to write code that will work seamlessly in production and local development (LocalNet) without manual config locally (including when you reset the LocalNet).
152
+ *
153
+ * @example Default
154
+ *
155
+ * If you have a mnemonic secret loaded into `process.env.MY_ACCOUNT_MNEMONIC` then you can call the following to get that private key loaded into an account object:
156
+ * ```typescript
157
+ * const account = await account.fromEnvironment('MY_ACCOUNT', algod)
158
+ * ```
159
+ *
160
+ * If that code runs against LocalNet then a wallet called `MY_ACCOUNT` will automatically be created with an account that is automatically funded with 1000 (default) ALGOs from the default LocalNet dispenser.
161
+ * If not running against LocalNet then it will use proces.env.MY_ACCOUNT_MNEMONIC as the private key and (if present) process.env.MY_ACCOUNT_SENDER as the sender address.
162
+ *
163
+ * @param name The name identifier of the account
164
+ * @param fundWith The optional amount to fund the account with when it gets created (when targeting LocalNet), if not specified then 1000 Algos will be funded from the dispenser account
165
+ * @returns The account
166
+ */
167
+ async fromEnvironment(name, fundWith) {
168
+ this.signerAccount(await mnemonicAccountFromEnvironment({ name, fundWith }, this._clientManager.algod, this._clientManager.kmd));
169
+ }
170
+ /**
171
+ * Tracks and returns an Algorand account with private key loaded from the given KMD wallet (identified by name).
172
+ *
173
+ * @param name The name of the wallet to retrieve an account from
174
+ * @param predicate An optional filter to use to find the account (otherwise it will return a random account from the wallet)
175
+ * @param sender The optional sender address to use this signer for (aka a rekeyed account)
176
+ * @example Get default funded account in a LocalNet
177
+ *
178
+ * ```typescript
179
+ * const defaultDispenserAccount = await account.fromKmd('unencrypted-default-wallet',
180
+ * a => a.status !== 'Offline' && a.amount > 1_000_000_000
181
+ * )
182
+ * ```
183
+ * @returns The account
184
+ */
185
+ async fromKmd(name,
186
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
187
+ predicate, sender) {
188
+ const account = await getKmdWalletAccount({ name, predicate }, this._clientManager.algod, this._clientManager.kmd);
189
+ if (!account)
190
+ throw new Error(`Unable to find KMD account ${name}${predicate ? ' with predicate' : ''}`);
191
+ return this.signerAccount(sender ? rekeyedAccount(account, sender) : account);
192
+ }
193
+ /**
194
+ * Tracks and returns an account that supports partial or full multisig signing.
195
+ *
196
+ * @example
197
+ * ```typescript
198
+ * const account = await account.multisig({version: 1, threshold: 1, addrs: ["ADDRESS1...", "ADDRESS2..."]},
199
+ * await account.fromEnvironment('ACCOUNT1'))
200
+ * ```
201
+ * @param multisigParams The parameters that define the multisig account
202
+ * @param signingAccounts The signers that are currently present
203
+ * @returns A multisig account wrapper
204
+ */
205
+ multisig(multisigParams, signingAccounts) {
206
+ return this.signerAccount(multisigAccount(multisigParams, signingAccounts));
207
+ }
208
+ /**
209
+ * Tracks and returns an account that represents a logic signature.
210
+ *
211
+ * @example
212
+ * ```typescript
213
+ * const account = await account.logicsig(program, [new Uint8Array(3, ...)])
214
+ * ```
215
+ * @param program The bytes that make up the compiled logic signature
216
+ * @param args The (binary) arguments to pass into the logic signature
217
+ * @returns A logic signature account wrapper
218
+ */
219
+ logicsig(program, args) {
220
+ this.signerAccount(new LogicSigAccount(program, args));
221
+ }
222
+ /**
223
+ * Tracks and returns a new, random Algorand account with secret key loaded.
224
+ *
225
+ * @example
226
+ * ```typescript
227
+ * const account = await account.random()
228
+ * ```
229
+ * @returns The account
230
+ */
231
+ random() {
232
+ this.signerAccount(randomAccount());
233
+ }
234
+ /**
235
+ * Returns an account (with private key loaded) that can act as a dispenser.
236
+ *
237
+ * @example
238
+ * ```typescript
239
+ * const account = await account.dispenser()
240
+ * ```
241
+ * If running on LocalNet then it will return the default dispenser account automatically,
242
+ * otherwise it will load the account mnemonic stored in process.env.DISPENSER_MNEMONIC.
243
+ * @returns The account
244
+ */
245
+ async dispenser() {
246
+ this.signerAccount(await getDispenserAccount(this._clientManager.algod, this._clientManager.kmd));
247
+ }
248
+ /**
249
+ * Returns an Algorand account with private key loaded for the default LocalNet dispenser account (that can be used to fund other accounts).
250
+ *
251
+ * @example
252
+ * ```typescript
253
+ * const account = await account.localNetDispenser()
254
+ * ```
255
+ * @returns The account
256
+ */
257
+ async localNetDispenser() {
258
+ this.signerAccount(await getLocalNetDispenserAccount(this._clientManager.algod, this._clientManager.kmd));
259
+ }
260
+ }
261
+
262
+ export { AccountManager };
263
+ //# sourceMappingURL=account-manager.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"account-manager.mjs","sources":["../../src/types/account-manager.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
@@ -1,4 +1,5 @@
1
1
  import algosdk from 'algosdk';
2
+ import AccountInformationModel = algosdk.modelsv2.Account;
2
3
  import Account = algosdk.Account;
3
4
  import MultisigMetadata = algosdk.MultisigMetadata;
4
5
  import Transaction = algosdk.Transaction;
@@ -67,4 +68,22 @@ export interface AccountConfig {
67
68
  /** @deprecated Renamed to senderAddress in 2.3.1 */
68
69
  senderMnemonic?: string;
69
70
  }
71
+ type NumberConverter<T extends AccountInformationModel> = {
72
+ [key in keyof T]: ToNumberIfExtends<T[key], number | bigint>;
73
+ };
74
+ type ToNumberIfExtends<K, E> = K extends E ? number : K;
75
+ /** Account information at a given round. */
76
+ export type AccountInformation = Omit<NumberConverter<AccountInformationModel>, 'get_obj_for_encoding'>;
77
+ /** Account asset holding information at a given round. */
78
+ export type AccountAssetInformation = {
79
+ /** The ID of the asset held. */
80
+ assetId: bigint;
81
+ /** The current balance of that asset holding. */
82
+ balance: bigint;
83
+ /** Whether or not the asset is frozen for the account. */
84
+ frozen: boolean;
85
+ /** The round as at which the holding was correct. */
86
+ round: bigint;
87
+ };
88
+ export {};
70
89
  //# sourceMappingURL=account.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/types/account.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,SAAS,CAAA;AAC7B,OAAO,OAAO,GAAG,OAAO,CAAC,OAAO,CAAA;AAChC,OAAO,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAA;AAClD,OAAO,WAAW,GAAG,OAAO,CAAC,WAAW,CAAA;AACxC,OAAO,iBAAiB,GAAG,OAAO,CAAC,iBAAiB,CAAA;AAEpD;;GAEG;AACH,eAAO,MAAM,iBAAiB,cAAc,CAAA;AAE5C,sEAAsE;AACtE,qBAAa,eAAe;IAC1B,OAAO,EAAE,OAAO,CAAC,gBAAgB,CAAA;IACjC,gBAAgB,EAAE,CAAC,OAAO,CAAC,OAAO,GAAG,cAAc,CAAC,EAAE,CAAA;IACtD,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,iBAAiB,CAAA;IAE1B,8CAA8C;IAC9C,IAAI,MAAM,IAAI,QAAQ,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAE/C;IAED,oDAAoD;IACpD,IAAI,eAAe,IAAI,QAAQ,CAAC,CAAC,OAAO,CAAC,OAAO,GAAG,cAAc,CAAC,EAAE,CAAC,CAEpE;IAED,0CAA0C;IAC1C,IAAI,IAAI,IAAI,QAAQ,CAAC,MAAM,CAAC,CAE3B;IAED,IAAI,MAAM,IAAI,iBAAiB,CAE9B;gBAEW,cAAc,EAAE,gBAAgB,EAAE,eAAe,EAAE,CAAC,OAAO,GAAG,cAAc,CAAC,EAAE;IAU3F;;;;OAIG;IACI,IAAI,CAAC,WAAW,EAAE,WAAW,GAAG,UAAU,GAAG,UAAU;CAY/D;AAED,sDAAsD;AACtD,qBAAa,cAAe,YAAW,OAAO;IAC5C,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,OAAO,CAAmB;IAClC,OAAO,CAAC,OAAO,CAAQ;IAEvB;;OAEG;IACH,IAAI,IAAI,IAAI,QAAQ,CAAC,MAAM,CAAC,CAE3B;IAED;;OAEG;IACH,IAAI,EAAE,IAAI,QAAQ,CAAC,UAAU,CAAC,CAE7B;IAED;;OAEG;IACH,IAAI,MAAM,IAAI,iBAAiB,CAE9B;IAED;;OAEG;IACH,IAAI,MAAM,IAAI,OAAO,CAKpB;gBAEW,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,GAAG,SAAS;CAKzD;AAED,6EAA6E;AAC7E,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAA;IACtB,MAAM,EAAE,iBAAiB,CAAA;CAC1B;AAED,mCAAmC;AACnC,MAAM,WAAW,aAAa;IAC5B,8BAA8B;IAC9B,eAAe,EAAE,MAAM,CAAA;IACvB,mCAAmC;IACnC,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,2CAA2C;IAC3C,WAAW,EAAE,MAAM,CAAA;IAEnB,oDAAoD;IACpD,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB"}
1
+ {"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/types/account.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"account.js","sources":["../../src/types/account.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;AAMA;;AAEG;AACI,MAAM,iBAAiB,GAAG,YAAW;AAE5C;MACa,eAAe,CAAA;;AAO1B,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;;AAGD,IAAA,IAAI,eAAe,GAAA;QACjB,OAAO,IAAI,CAAC,gBAAgB,CAAA;KAC7B;;AAGD,IAAA,IAAI,IAAI,GAAA;QACN,OAAO,IAAI,CAAC,KAAK,CAAA;KAClB;AAED,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;IAED,WAAY,CAAA,cAAgC,EAAE,eAA6C,EAAA;AACzF,QAAA,IAAI,CAAC,OAAO,GAAG,cAAc,CAAA;AAC7B,QAAA,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAA;QACvC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,eAAe,CAAC,cAAc,CAAC,CAAA;QACpD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,oCAAoC,CACzD,cAAc,EACd,eAAe,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CACjC,CAAA;KACF;AAED;;;;AAIG;AACI,IAAA,IAAI,CAAC,WAAqC,EAAA;AAC/C,QAAA,IAAI,SAAS,GAAG,MAAM,IAAI,WAAW,GAAG,SAAS,GAAG,WAAW,CAAA;AAC/D,QAAA,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,gBAAgB,EAAE;YAC1C,IAAI,SAAS,EAAE;AACb,gBAAA,SAAS,GAAG,OAAO,CAAC,6BAA6B,CAAC,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAA;aAC3F;iBAAM;AACL,gBAAA,SAAS,GAAG,OAAO,CAAC,uBAAuB,CAAC,WAA0B,EAAE,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAA;aACtG;SACF;;AAED,QAAA,OAAO,SAAU,CAAA;KAClB;AACF,CAAA;AAED;MACa,cAAc,CAAA;AAKzB;;AAEG;AACH,IAAA,IAAI,IAAI,GAAA;QACN,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;AAED;;AAEG;AACH,IAAA,IAAI,EAAE,GAAA;AACJ,QAAA,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAA;KACxB;AAED;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;AAED;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,OAAO;AAClB,YAAA,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE;SACrB,CAAA;KACF;IAED,WAAY,CAAA,OAAgB,EAAE,MAA0B,EAAA;AACtD,QAAA,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAA;QACvB,IAAI,CAAC,OAAO,GAAG,MAAM,IAAI,OAAO,CAAC,IAAI,CAAA;QACrC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,iCAAiC,CAAC,OAAO,CAAC,CAAA;KAClE;AACF;;;;;;"}
1
+ {"version":3,"file":"account.js","sources":["../../src/types/account.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;AAOA;;AAEG;AACI,MAAM,iBAAiB,GAAG,YAAW;AAE5C;MACa,eAAe,CAAA;;AAO1B,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;;AAGD,IAAA,IAAI,eAAe,GAAA;QACjB,OAAO,IAAI,CAAC,gBAAgB,CAAA;KAC7B;;AAGD,IAAA,IAAI,IAAI,GAAA;QACN,OAAO,IAAI,CAAC,KAAK,CAAA;KAClB;AAED,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;IAED,WAAY,CAAA,cAAgC,EAAE,eAA6C,EAAA;AACzF,QAAA,IAAI,CAAC,OAAO,GAAG,cAAc,CAAA;AAC7B,QAAA,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAA;QACvC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,eAAe,CAAC,cAAc,CAAC,CAAA;QACpD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,oCAAoC,CACzD,cAAc,EACd,eAAe,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CACjC,CAAA;KACF;AAED;;;;AAIG;AACI,IAAA,IAAI,CAAC,WAAqC,EAAA;AAC/C,QAAA,IAAI,SAAS,GAAG,MAAM,IAAI,WAAW,GAAG,SAAS,GAAG,WAAW,CAAA;AAC/D,QAAA,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,gBAAgB,EAAE;YAC1C,IAAI,SAAS,EAAE;AACb,gBAAA,SAAS,GAAG,OAAO,CAAC,6BAA6B,CAAC,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAA;aAC3F;iBAAM;AACL,gBAAA,SAAS,GAAG,OAAO,CAAC,uBAAuB,CAAC,WAA0B,EAAE,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAA;aACtG;SACF;;AAED,QAAA,OAAO,SAAU,CAAA;KAClB;AACF,CAAA;AAED;MACa,cAAc,CAAA;AAKzB;;AAEG;AACH,IAAA,IAAI,IAAI,GAAA;QACN,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;AAED;;AAEG;AACH,IAAA,IAAI,EAAE,GAAA;AACJ,QAAA,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAA;KACxB;AAED;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;AAED;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,OAAO;AAClB,YAAA,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE;SACrB,CAAA;KACF;IAED,WAAY,CAAA,OAAgB,EAAE,MAA0B,EAAA;AACtD,QAAA,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAA;QACvB,IAAI,CAAC,OAAO,GAAG,MAAM,IAAI,OAAO,CAAC,IAAI,CAAA;QACrC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,iCAAiC,CAAC,OAAO,CAAC,CAAA;KAClE;AACF;;;;;;"}
@@ -1 +1 @@
1
- {"version":3,"file":"account.mjs","sources":["../../src/types/account.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAMA;;AAEG;AACI,MAAM,iBAAiB,GAAG,YAAW;AAE5C;MACa,eAAe,CAAA;;AAO1B,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;;AAGD,IAAA,IAAI,eAAe,GAAA;QACjB,OAAO,IAAI,CAAC,gBAAgB,CAAA;KAC7B;;AAGD,IAAA,IAAI,IAAI,GAAA;QACN,OAAO,IAAI,CAAC,KAAK,CAAA;KAClB;AAED,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;IAED,WAAY,CAAA,cAAgC,EAAE,eAA6C,EAAA;AACzF,QAAA,IAAI,CAAC,OAAO,GAAG,cAAc,CAAA;AAC7B,QAAA,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAA;QACvC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,eAAe,CAAC,cAAc,CAAC,CAAA;QACpD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,oCAAoC,CACzD,cAAc,EACd,eAAe,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CACjC,CAAA;KACF;AAED;;;;AAIG;AACI,IAAA,IAAI,CAAC,WAAqC,EAAA;AAC/C,QAAA,IAAI,SAAS,GAAG,MAAM,IAAI,WAAW,GAAG,SAAS,GAAG,WAAW,CAAA;AAC/D,QAAA,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,gBAAgB,EAAE;YAC1C,IAAI,SAAS,EAAE;AACb,gBAAA,SAAS,GAAG,OAAO,CAAC,6BAA6B,CAAC,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAA;aAC3F;iBAAM;AACL,gBAAA,SAAS,GAAG,OAAO,CAAC,uBAAuB,CAAC,WAA0B,EAAE,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAA;aACtG;SACF;;AAED,QAAA,OAAO,SAAU,CAAA;KAClB;AACF,CAAA;AAED;MACa,cAAc,CAAA;AAKzB;;AAEG;AACH,IAAA,IAAI,IAAI,GAAA;QACN,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;AAED;;AAEG;AACH,IAAA,IAAI,EAAE,GAAA;AACJ,QAAA,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAA;KACxB;AAED;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;AAED;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,OAAO;AAClB,YAAA,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE;SACrB,CAAA;KACF;IAED,WAAY,CAAA,OAAgB,EAAE,MAA0B,EAAA;AACtD,QAAA,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAA;QACvB,IAAI,CAAC,OAAO,GAAG,MAAM,IAAI,OAAO,CAAC,IAAI,CAAA;QACrC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,iCAAiC,CAAC,OAAO,CAAC,CAAA;KAClE;AACF;;;;"}
1
+ {"version":3,"file":"account.mjs","sources":["../../src/types/account.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAOA;;AAEG;AACI,MAAM,iBAAiB,GAAG,YAAW;AAE5C;MACa,eAAe,CAAA;;AAO1B,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;;AAGD,IAAA,IAAI,eAAe,GAAA;QACjB,OAAO,IAAI,CAAC,gBAAgB,CAAA;KAC7B;;AAGD,IAAA,IAAI,IAAI,GAAA;QACN,OAAO,IAAI,CAAC,KAAK,CAAA;KAClB;AAED,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;IAED,WAAY,CAAA,cAAgC,EAAE,eAA6C,EAAA;AACzF,QAAA,IAAI,CAAC,OAAO,GAAG,cAAc,CAAA;AAC7B,QAAA,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAA;QACvC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,eAAe,CAAC,cAAc,CAAC,CAAA;QACpD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,oCAAoC,CACzD,cAAc,EACd,eAAe,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CACjC,CAAA;KACF;AAED;;;;AAIG;AACI,IAAA,IAAI,CAAC,WAAqC,EAAA;AAC/C,QAAA,IAAI,SAAS,GAAG,MAAM,IAAI,WAAW,GAAG,SAAS,GAAG,WAAW,CAAA;AAC/D,QAAA,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,gBAAgB,EAAE;YAC1C,IAAI,SAAS,EAAE;AACb,gBAAA,SAAS,GAAG,OAAO,CAAC,6BAA6B,CAAC,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAA;aAC3F;iBAAM;AACL,gBAAA,SAAS,GAAG,OAAO,CAAC,uBAAuB,CAAC,WAA0B,EAAE,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,CAAA;aACtG;SACF;;AAED,QAAA,OAAO,SAAU,CAAA;KAClB;AACF,CAAA;AAED;MACa,cAAc,CAAA;AAKzB;;AAEG;AACH,IAAA,IAAI,IAAI,GAAA;QACN,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;AAED;;AAEG;AACH,IAAA,IAAI,EAAE,GAAA;AACJ,QAAA,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAA;KACxB;AAED;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,OAAO,IAAI,CAAC,OAAO,CAAA;KACpB;AAED;;AAEG;AACH,IAAA,IAAI,MAAM,GAAA;QACR,OAAO;YACL,IAAI,EAAE,IAAI,CAAC,OAAO;AAClB,YAAA,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE;SACrB,CAAA;KACF;IAED,WAAY,CAAA,OAAgB,EAAE,MAA0B,EAAA;AACtD,QAAA,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAA;QACvB,IAAI,CAAC,OAAO,GAAG,MAAM,IAAI,OAAO,CAAC,IAAI,CAAA;QACrC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,iCAAiC,CAAC,OAAO,CAAC,CAAA;KAClE;AACF;;;;"}
@@ -0,0 +1,183 @@
1
+ import algosdk from 'algosdk';
2
+ import { TransactionSignerAccount } from './account';
3
+ import { AccountManager } from './account-manager';
4
+ import { AlgoSdkClients, ClientManager } from './client-manager';
5
+ import AlgokitComposer, { ExecuteParams, MethodCallParams } from './composer';
6
+ import { AlgoConfig } from './network-client';
7
+ import { ConfirmedTransactionResult, SendAtomicTransactionComposerResults, SendTransactionFrom } from './transaction';
8
+ import Transaction = algosdk.Transaction;
9
+ /** Result from sending a single transaction. */
10
+ export type SendSingleTransactionResult = SendAtomicTransactionComposerResults & ConfirmedTransactionResult;
11
+ /** A client that brokers easy access to Algorand functionality.
12
+ *
13
+ * Note: this class is a new Beta feature and may be subject to change.
14
+ *
15
+ * @beta
16
+ */
17
+ export declare class AlgorandClient {
18
+ private _clientManager;
19
+ private _accountManager;
20
+ private _cachedSuggestedParams?;
21
+ private _cachedSuggestedParamsExpiry?;
22
+ private _cachedSuggestedParamsTimeout;
23
+ private _defaultValidityWindow;
24
+ private constructor();
25
+ /**
26
+ * Sets the default validity window for transactions.
27
+ * @param validityWindow The number of rounds between the first and last valid rounds
28
+ * @returns The `AlgorandClient` so method calls can be chained
29
+ */
30
+ setDefaultValidityWindow(validityWindow: number): this;
31
+ /**
32
+ * Sets the default signer to use if no other signer is specified.
33
+ * @param signer The signer to use, either a `TransactionSigner` or a `TransactionSignerAccount`
34
+ * @returns The `AlgorandClient` so method calls can be chained
35
+ */
36
+ setDefaultSigner(signer: algosdk.TransactionSigner | TransactionSignerAccount): AlgorandClient;
37
+ /**
38
+ * Tracks the given account for later signing.
39
+ * @param account The account to register
40
+ * @returns The `AlgorandClient` so method calls can be chained
41
+ */
42
+ setSignerFromAccount(account: TransactionSignerAccount | SendTransactionFrom): this;
43
+ /**
44
+ * Tracks the given account for later signing.
45
+ * @param sender The sender address to use this signer for
46
+ * @param signer The signer to sign transactions with for the given sender
47
+ * @returns The `AlgorandClient` so method calls can be chained
48
+ */
49
+ setSigner(sender: string, signer: algosdk.TransactionSigner): this;
50
+ /**
51
+ * Sets a cache value to use for suggested params.
52
+ * @param suggestedParams The suggested params to use
53
+ * @param until A date until which to cache, or if not specified then the timeout is used
54
+ * @returns The `AlgorandClient` so method calls can be chained
55
+ */
56
+ setSuggestedParams(suggestedParams: algosdk.SuggestedParams, until?: Date): this;
57
+ /**
58
+ * Sets the timeout for caching suggested params.
59
+ * @param timeout The timeout in milliseconds
60
+ * @returns The `AlgorandClient` so method calls can be chained
61
+ */
62
+ setSuggestedParamsTimeout(timeout: number): this;
63
+ /** Get suggested params for a transaction (either cached or from algod if the cache is stale or empty) */
64
+ getSuggestedParams(): Promise<algosdk.SuggestedParams>;
65
+ /** Get clients, including algosdk clients and app clients. */
66
+ get client(): ClientManager;
67
+ /** Get or create accounts that can sign transactions. */
68
+ get account(): AccountManager;
69
+ /** Start a new `AlgokitComposer` transaction group */
70
+ newGroup(): AlgokitComposer;
71
+ private _send;
72
+ /**
73
+ * Methods for sending a single transaction.
74
+ */
75
+ send: {
76
+ /**
77
+ * Send a payment transaction.
78
+ */
79
+ payment: (params: import("./composer").PaymentParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
80
+ /**
81
+ * Create an asset.
82
+ */
83
+ assetCreate: (params: import("./composer").AssetCreateParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
84
+ /**
85
+ * Configure an existing asset.
86
+ */
87
+ assetConfig: (params: import("./composer").AssetConfigParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
88
+ /**
89
+ * Freeze or unfreeze an asset.
90
+ */
91
+ assetFreeze: (params: import("./composer").AssetFreezeParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
92
+ /**
93
+ * Destroy an asset.
94
+ */
95
+ assetDestroy: (params: import("./composer").AssetDestroyParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
96
+ /**
97
+ * Transfer an asset.
98
+ */
99
+ assetTransfer: (params: import("./composer").AssetTransferParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
100
+ /**
101
+ * Opt an account into an asset.
102
+ */
103
+ assetOptIn: (params: import("./composer").AssetOptInParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
104
+ /**
105
+ * Call a smart contract.
106
+ *
107
+ * Note: you may prefer to use `algorandClient.client` to get an app client for more advanced functionality.
108
+ */
109
+ appCall: (params: import("./composer").AppCallParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
110
+ /**
111
+ * Call a smart contract ABI method.
112
+ *
113
+ * Note: you may prefer to use `algorandClient.client` to get an app client for more advanced functionality.
114
+ */
115
+ methodCall: (params: MethodCallParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
116
+ /** Register an online key. */
117
+ onlineKeyRegistration: (params: import("./composer").OnlineKeyRegistrationParams, config?: ExecuteParams) => Promise<SendSingleTransactionResult>;
118
+ };
119
+ private _transaction;
120
+ /**
121
+ * Methods for building transactions
122
+ */
123
+ transactions: {
124
+ /** Create a payment transaction. */
125
+ payment: (params: import("./composer").PaymentParams) => Promise<Transaction>;
126
+ /** Create an asset creation transaction. */
127
+ assetCreate: (params: import("./composer").AssetCreateParams) => Promise<Transaction>;
128
+ /** Create an asset config transaction. */
129
+ assetConfig: (params: import("./composer").AssetConfigParams) => Promise<Transaction>;
130
+ /** Create an asset freeze transaction. */
131
+ assetFreeze: (params: import("./composer").AssetFreezeParams) => Promise<Transaction>;
132
+ /** Create an asset destroy transaction. */
133
+ assetDestroy: (params: import("./composer").AssetDestroyParams) => Promise<Transaction>;
134
+ /** Create an asset transfer transaction. */
135
+ assetTransfer: (params: import("./composer").AssetTransferParams) => Promise<Transaction>;
136
+ /** Create an asset opt-in transaction. */
137
+ assetOptIn: (params: import("./composer").AssetOptInParams) => Promise<Transaction>;
138
+ /** Create an application call transaction. */
139
+ appCall: (params: import("./composer").AppCallParams) => Promise<Transaction>;
140
+ /** Create an application call with ABI method call transaction. */
141
+ methodCall: (params: MethodCallParams) => Promise<algosdk.Transaction[]>;
142
+ /** Create an online key registration transaction. */
143
+ onlineKeyRegistration: (params: import("./composer").OnlineKeyRegistrationParams) => Promise<Transaction>;
144
+ };
145
+ /**
146
+ * Returns an `AlgorandClient` pointing at default LocalNet ports and API token.
147
+ * @returns The `AlgorandClient`
148
+ */
149
+ static defaultLocalNet(): AlgorandClient;
150
+ /**
151
+ * Returns an `AlgorandClient` pointing at TestNet using AlgoNode.
152
+ * @returns The `AlgorandClient`
153
+ */
154
+ static testNet(): AlgorandClient;
155
+ /**
156
+ * Returns an `AlgorandClient` pointing at MainNet using AlgoNode.
157
+ * @returns The `AlgorandClient`
158
+ */
159
+ static mainNet(): AlgorandClient;
160
+ /**
161
+ * Returns an `AlgorandClient` pointing to the given client(s).
162
+ * @param clients The clients to use
163
+ * @returns The `AlgorandClient`
164
+ */
165
+ static fromClients(clients: AlgoSdkClients): AlgorandClient;
166
+ /**
167
+ * Returns an `AlgorandClient` loading the configuration from environment variables.
168
+ *
169
+ * Retrieve configurations from environment variables when defined or get defaults.
170
+ *
171
+ * Expects to be called from a Node.js environment.
172
+ * @returns The `AlgorandClient`
173
+ */
174
+ static fromEnvironment(): AlgorandClient;
175
+ /**
176
+ * Returns an `AlgorandClient` from the given config.
177
+ * @param config The config to use
178
+ * @returns The `AlgorandClient`
179
+ */
180
+ static fromConfig(config: AlgoConfig): AlgorandClient;
181
+ }
182
+ export default AlgorandClient;
183
+ //# sourceMappingURL=algorand-client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"algorand-client.d.ts","sourceRoot":"","sources":["../../src/types/algorand-client.ts"],"names":[],"mappings":"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"}