Skip to main content
Glama

Algorand MCP

by GoPlausible
SDKs:javascript:classes:Algodv2.md30 kB
[algosdk](../README.md) / [Exports](../modules.md) / Algodv2 # Class: Algodv2 Algod client connects an application to the Algorand blockchain. The algod client requires a valid algod REST endpoint IP address and algod token from an Algorand node that is connected to the network you plan to interact with. Algod is the main Algorand process for handling the blockchain. Messages between nodes are processed, the protocol steps are executed, and the blocks are written to disk. The algod process also exposes a REST API server that developers can use to communicate with the node and the network. Algod uses the data directory for storage and configuration information. #### Relevant Information [How do I obtain an algod address and token?](https://developer.algorand.org/docs/archive/build-apps/setup/?from_query=algod#how-do-i-obtain-an-algod-address-and-token) [Run Algod in Postman OAS3](https://developer.algorand.org/docs/rest-apis/restendpoints/?from_query=algod#algod-indexer-and-kmd-rest-endpoints) ## Hierarchy - `default` ↳ **`Algodv2`** ## Table of contents ### Constructors - [constructor](Algodv2.md#constructor) ### DELETE Methods - [unsetSyncRound](Algodv2.md#unsetsyncround) ### GET Methods - [accountApplicationInformation](Algodv2.md#accountapplicationinformation) - [accountAssetInformation](Algodv2.md#accountassetinformation) - [accountInformation](Algodv2.md#accountinformation) - [block](Algodv2.md#block) - [genesis](Algodv2.md#genesis) - [getApplicationBoxByName](Algodv2.md#getapplicationboxbyname) - [getApplicationBoxes](Algodv2.md#getapplicationboxes) - [getApplicationByID](Algodv2.md#getapplicationbyid) - [getAssetByID](Algodv2.md#getassetbyid) - [getBlockHash](Algodv2.md#getblockhash) - [getBlockOffsetTimestamp](Algodv2.md#getblockoffsettimestamp) - [getBlockTxids](Algodv2.md#getblocktxids) - [getLedgerStateDelta](Algodv2.md#getledgerstatedelta) - [getLedgerStateDeltaForTransactionGroup](Algodv2.md#getledgerstatedeltafortransactiongroup) - [getSyncRound](Algodv2.md#getsyncround) - [getTransactionGroupLedgerStateDeltasForRound](Algodv2.md#gettransactiongroupledgerstatedeltasforround) - [getTransactionParams](Algodv2.md#gettransactionparams) - [getTransactionProof](Algodv2.md#gettransactionproof) - [healthCheck](Algodv2.md#healthcheck) - [pendingTransactionByAddress](Algodv2.md#pendingtransactionbyaddress) - [pendingTransactionInformation](Algodv2.md#pendingtransactioninformation) - [pendingTransactionsInformation](Algodv2.md#pendingtransactionsinformation) - [ready](Algodv2.md#ready) - [status](Algodv2.md#status) - [statusAfterBlock](Algodv2.md#statusafterblock) - [supply](Algodv2.md#supply) - [versionsCheck](Algodv2.md#versionscheck) ### Other Methods - [disassemble](Algodv2.md#disassemble) - [getIntEncoding](Algodv2.md#getintencoding) - [getLightBlockHeaderProof](Algodv2.md#getlightblockheaderproof) - [getStateProof](Algodv2.md#getstateproof) - [setIntEncoding](Algodv2.md#setintencoding) ### POST Methods - [compile](Algodv2.md#compile) - [dryrun](Algodv2.md#dryrun) - [sendRawTransaction](Algodv2.md#sendrawtransaction) - [setBlockOffsetTimestamp](Algodv2.md#setblockoffsettimestamp) - [setSyncRound](Algodv2.md#setsyncround) - [simulateRawTransactions](Algodv2.md#simulaterawtransactions) - [simulateTransactions](Algodv2.md#simulatetransactions) ## Constructors ### constructor • **new Algodv2**(`tokenOrBaseClient`, `baseServer`, `port?`, `headers?`) Create an AlgodClient from * either a token, baseServer, port, and optional headers * or a base client server for interoperability with external dApp wallets #### Example ```typescript const token = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; const server = "http://localhost"; const port = 4001; const algodClient = new algosdk.Algodv2(token, server, port); ``` #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `tokenOrBaseClient` | `string` \| [`BaseHTTPClient`](../interfaces/BaseHTTPClient.md) \| [`AlgodTokenHeader`](../interfaces/AlgodTokenHeader.md) \| [`CustomTokenHeader`](../interfaces/CustomTokenHeader.md) | The algod token from the Algorand node you are interacting with | | `baseServer` | `string` | REST endpoint | | `port?` | `string` \| `number` | Port number if specifically configured by the server | | `headers` | `Record`\<`string`, `string`\> | Optional headers | **`Remarks`** The above configuration is for a sandbox private network. For applications on production, you are encouraged to run your own node, or use an Algorand REST API provider with a dedicated API key. #### Overrides ServiceClient.constructor #### Defined in client/v2/algod/algod.ts:80 ## DELETE Methods ### unsetSyncRound ▸ **unsetSyncRound**(): `default` Un-Set the sync round on the ledger (algod must have EnableFollowMode: true), removing the restriction on catchup. #### Example ```typesecript await client.unsetSyncRound().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#delete-v2ledgersync) #### Returns `default` #### Defined in client/v2/algod/algod.ts:742 ___ ## GET Methods ### accountApplicationInformation ▸ **accountApplicationInformation**(`account`, `index`): `default` Returns the given account's application information for a specific application. #### Example ```typescript const address = "XBYLS2E6YI6XXL5BWCAMOA4GTWHXWENZMX5UHXMRNWWUQ7BXCY5WC5TEPA"; const index = 60553466; const accountInfo = await algodClient.accountApplicationInformation(address, index).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2accountsaddress) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `account` | `string` | The address of the account to look up. | | `index` | `number` | The application ID to look up. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:199 ___ ### accountAssetInformation ▸ **accountAssetInformation**(`account`, `index`): `default` Returns the given account's asset information for a specific asset. #### Example ```typescript const address = "XBYLS2E6YI6XXL5BWCAMOA4GTWHXWENZMX5UHXMRNWWUQ7BXCY5WC5TEPA"; const index = 60553466; const accountAssetInfo = await algodClient.accountAssetInformation(address, index).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2accountsaddress) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `account` | `string` | The address of the account to look up. | | `index` | `number` | The asset ID to look up. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:175 ___ ### accountInformation ▸ **accountInformation**(`account`): `default` Returns the given account's status, balance and spendable amounts. #### Example ```typescript const address = "XBYLS2E6YI6XXL5BWCAMOA4GTWHXWENZMX5UHXMRNWWUQ7BXCY5WC5TEPA"; const accountInfo = await algodClient.accountInformation(address).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2accountsaddress) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `account` | `string` | The address of the account to look up. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:156 ___ ### block ▸ **block**(`roundNumber`): `default` Gets the block info for the given round. #### Example ```typescript const roundNumber = 18038133; const block = await algodClient.block(roundNumber).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2blocksround) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `roundNumber` | `number` | The round number of the block to get. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:221 ___ ### genesis ▸ **genesis**(): `default` Returns the entire genesis file. #### Example ```typescript const genesis = await algodClient.genesis().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-genesis) #### Returns `default` #### Defined in client/v2/algod/algod.ts:554 ___ ### getApplicationBoxByName ▸ **getApplicationBoxByName**(`index`, `boxName`): `default` Given an application ID and the box name (key), return the value stored in the box. #### Example ```typescript const index = 60553466; const boxName = Buffer.from("foo"); const boxResponse = await algodClient.getApplicationBoxByName(index, boxName).do(); const boxValue = boxResponse.value; ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2applicationsapplication-idbox) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `index` | `number` | The application ID to look up. | | `boxName` | `Uint8Array` | - | #### Returns `default` #### Defined in client/v2/algod/algod.ts:516 ___ ### getApplicationBoxes ▸ **getApplicationBoxes**(`index`): `default` Given an application ID, return all the box names associated with the app. #### Example ```typescript const index = 60553466; const boxesResponse = await algodClient.getApplicationBoxes(index).max(3).do(); const boxNames = boxesResponse.boxes.map(box => box.name); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2applicationsapplication-idboxes) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `index` | `number` | The application ID to look up. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:539 ___ ### getApplicationByID ▸ **getApplicationByID**(`index`): `default` Given an application ID, return the application information including creator, approval and clear programs, global and local schemas, and global state. #### Example ```typescript const index = 60553466; const app = await algodClient.getApplicationByID(index).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2applicationsapplication-id) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `index` | `number` | The application ID to look up. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:497 ___ ### getAssetByID ▸ **getAssetByID**(`index`): `default` Given an asset ID, return asset information including creator, name, total supply and special addresses. #### Example ```typescript const asset_id = 163650; const asset = await algodClient.getAssetByID(asset_id).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2assetsasset-id) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `index` | `number` | The asset ID to look up. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:479 ___ ### getBlockHash ▸ **getBlockHash**(`roundNumber`): `default` Get the block hash for the block on the given round. #### Example ```typescript const roundNumber = 18038133; const block = await algodClient.getBlockHash(roundNumber).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2blocksroundhash) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `roundNumber` | `number` | The round number of the block to get. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:238 ___ ### getBlockOffsetTimestamp ▸ **getBlockOffsetTimestamp**(): `default` Get the offset (in seconds) applied to the block timestamp when creating new blocks in devmode. #### Example ```typesecript const currentOffset = await client.getBlockOffsetTimestamp().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2devmodeblocksoffset) #### Returns `default` #### Defined in client/v2/algod/algod.ts:710 ___ ### getBlockTxids ▸ **getBlockTxids**(`roundNumber`): `default` Get the top level transaction IDs for the block on the given round. #### Example ```typescript const roundNumber = 18038133; const block = await algodClient.getBlockTxids(roundNumber).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2blocksroundtxids) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `roundNumber` | `number` | The round number of the block to get. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:255 ___ ### getLedgerStateDelta ▸ **getLedgerStateDelta**(`round`): `default` GetLedgerStateDelta returns the ledger delta for the entire round #### Example ```typescript const round = 12345; await client.getLedgerStateDelta(round).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2deltasround) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `round` | `bigint` | the round number to be searched for | #### Returns `default` #### Defined in client/v2/algod/algod.ts:810 ___ ### getLedgerStateDeltaForTransactionGroup ▸ **getLedgerStateDeltaForTransactionGroup**(`id`): `default` GetLedgerStateDeltaForTransactionGroup returns the ledger delta for the txn group identified by id #### Example ```typescript const id = "ABC123"; await client.getLedgerStateDeltaForTransactionGroup(id).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2deltastxngroupid) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `id` | `string` | txn ID or group ID to be searched for | #### Returns `default` #### Defined in client/v2/algod/algod.ts:789 ___ ### getSyncRound ▸ **getSyncRound**(): `default` Get the current sync round on the ledger (algod must have EnableFollowMode: true). #### Example ```typesecript const currentSyncRound = await client.getSyncRound().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2ledgersync) #### Returns `default` #### Defined in client/v2/algod/algod.ts:757 ___ ### getTransactionGroupLedgerStateDeltasForRound ▸ **getTransactionGroupLedgerStateDeltasForRound**(`round`): `default` GetTransactionGroupLedgerStateDeltasForRound returns all ledger deltas for txn groups in the provided round #### Example ```typescript const round = 12345; await client.getTransactionGroupLedgerStateDeltasForRound(round).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2deltasroundtxngroup) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `round` | `bigint` | the round number to be searched for | #### Returns `default` #### Defined in client/v2/algod/algod.ts:827 ___ ### getTransactionParams ▸ **getTransactionParams**(): `default` Returns the common needed parameters for a new transaction. #### Example ```typescript const suggestedParams = await algodClient.getTransactionParams().do(); const amountInMicroAlgos = algosdk.algosToMicroalgos(2); // 2 Algos const unsignedTxn = algosdk.makePaymentTxnWithSuggestedParamsFromObject({ from: senderAddress, to: receiverAddress, amount: amountInMicroAlgos, suggestedParams: suggestedParams, }); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2transactionsparams) #### Returns `default` **`Remarks`** Often used with [`makePaymentTxnWithSuggestedParamsFromObject`](../modules.md#makepaymenttxnwithsuggestedparamsfromobject), [`algosToMicroalgos`](../modules.md#algostomicroalgos) #### Defined in client/v2/algod/algod.ts:393 ___ ### getTransactionProof ▸ **getTransactionProof**(`round`, `txID`): `default` Returns a Merkle proof for a given transaction in a block. #### Example ```typescript const round = 18038133; const txId = "MEUOC4RQJB23CQZRFRKYEI6WBO73VTTPST5A7B3S5OKBUY6LFUDA"; const proof = await algodClient.getTransactionProof(round, txId).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2blocksroundtransactionstxidproof) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `round` | `number` | The round in which the transaction appears. | | `txID` | `string` | The transaction ID for which to generate a proof. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:573 ___ ### healthCheck ▸ **healthCheck**(): `default` Returns OK if healthy. #### Example ```typescript const health = await algodClient.healthCheck().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-health) #### Returns `default` #### Defined in client/v2/algod/algod.ts:104 ___ ### pendingTransactionByAddress ▸ **pendingTransactionByAddress**(`address`): `default` Returns the list of pending transactions sent by the address, sorted by priority, in decreasing order, truncated at the end at MAX. If MAX = 0, returns all pending transactions. #### Example 1 ```typescript const address = "XBYLS2E6YI6XXL5BWCAMOA4GTWHXWENZMX5UHXMRNWWUQ7BXCY5WC5TEPA"; const pendingTxnsByAddr = await algodClient.pendingTransactionByAddress(address).do(); ``` #### Example 2 ```typescript const maxTxns = 5; const address = "XBYLS2E6YI6XXL5BWCAMOA4GTWHXWENZMX5UHXMRNWWUQ7BXCY5WC5TEPA"; const pendingTxns = await algodClient .pendingTransactionByAddress(address) .max(maxTxns) .do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2accountsaddresstransactionspending) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `address` | `string` | The address of the sender. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:335 ___ ### pendingTransactionInformation ▸ **pendingTransactionInformation**(`txid`): `default` Returns the transaction information for a specific pending transaction. #### Example ```typescript const txId = "DRJS6R745A7GFVMXEXWP4TGVDGKW7VILFTA7HC2BR2GRLHNY5CTA"; const pending = await algodClient.pendingTransactionInformation(txId).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2transactionspendingtxid) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `txid` | `string` | The TxID string of the pending transaction to look up. | #### Returns `default` **`Remarks`** <br><br> There are several cases when this might succeed: - transaction committed (committed round > 0) - transaction still in the pool (committed round = 0, pool error = "") - transaction removed from pool due to error (committed round = 0, pool error != "") Or the transaction may have happened sufficiently long ago that the node no longer remembers it, and this will return an error. #### Defined in client/v2/algod/algod.ts:282 ___ ### pendingTransactionsInformation ▸ **pendingTransactionsInformation**(): `default` Returns the list of pending transactions in the pool, sorted by priority, in decreasing order, truncated at the end at MAX. If MAX = 0, returns all pending transactions. #### Example 1 ```typescript const pendingTxns = await algodClient.pendingTransactionsInformation().do(); ``` #### Example 2 ```typescript const maxTxns = 5; const pendingTxns = await algodClient .pendingTransactionsInformation() .max(maxTxns) .do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2transactionspending) #### Returns `default` #### Defined in client/v2/algod/algod.ts:307 ___ ### ready ▸ **ready**(): `default` Ready check which returns 200 OK if algod is healthy and caught up #### Example ```typesecript await client.ready().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-ready) #### Returns `default` #### Defined in client/v2/algod/algod.ts:772 ___ ### status ▸ **status**(): `default` Retrieves the StatusResponse from the running node. #### Example ```typescript const status = await algodClient.status().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2status) #### Returns `default` #### Defined in client/v2/algod/algod.ts:350 ___ ### statusAfterBlock ▸ **statusAfterBlock**(`round`): `default` Waits for a specific round to occur then returns the `StatusResponse` for that round. #### Example ```typescript const round = 18038133; const statusAfterBlock = await algodClient.statusAfterBlock(round).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2statuswait-for-block-afterround) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `round` | `number` | The number of the round to wait for. | #### Returns `default` #### Defined in client/v2/algod/algod.ts:367 ___ ### supply ▸ **supply**(): `default` Returns the supply details for the specified node's ledger. #### Example ```typescript const supplyDetails = await algodClient.supply().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-v2ledgersupply) #### Returns `default` #### Defined in client/v2/algod/algod.ts:408 ___ ### versionsCheck ▸ **versionsCheck**(): `default` Retrieves the supported API versions, binary build versions, and genesis information. #### Example ```typescript const versionsDetails = await algodClient.versionsCheck().do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#get-versions) #### Returns `default` #### Defined in client/v2/algod/algod.ts:119 ___ ## Other Methods ### disassemble ▸ **disassemble**(`source`): `default` Given the program bytes, return the TEAL source code in plain text. #### Example ```typescript const bytecode = "TEAL bytecode"; const disassembledSource = await algodClient.disassemble(bytecode).do(); ``` #### Parameters | Name | Type | | :------ | :------ | | `source` | `string` \| `Uint8Array` | #### Returns `default` **`Remarks`** This endpoint is only enabled when a node's configuration file sets EnableDeveloperAPI to true. #### Defined in client/v2/algod/algod.ts:443 ___ ### getIntEncoding ▸ **getIntEncoding**(): [`IntDecoding`](../enums/IntDecoding.md) Get the default int decoding method for all JSON requests this client creates. #### Returns [`IntDecoding`](../enums/IntDecoding.md) #### Inherited from ServiceClient.getIntEncoding #### Defined in client/v2/serviceClient.ts:86 ___ ### getLightBlockHeaderProof ▸ **getLightBlockHeaderProof**(`round`): `default` Gets a proof for a given light block header inside a state proof commitment. #### Example ```typescript const round = 11111111; const lightBlockHeaderProof = await algodClient.getLightBlockHeaderProof(round).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/v2#get-v2blocksroundlightheaderproof) #### Parameters | Name | Type | | :------ | :------ | | `round` | `number` | #### Returns `default` #### Defined in client/v2/algod/algod.ts:589 ___ ### getStateProof ▸ **getStateProof**(`round`): `default` Gets a state proof that covers a given round. #### Example ```typescript const round = 11111111; const stateProof = await algodClient.getStateProof(round).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/v2#get-v2stateproofsround) #### Parameters | Name | Type | | :------ | :------ | | `round` | `number` | #### Returns `default` #### Defined in client/v2/algod/algod.ts:605 ___ ### setIntEncoding ▸ **setIntEncoding**(`method`): `void` Set the default int decoding method for all JSON requests this client creates. #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `method` | [`IntDecoding`](../enums/IntDecoding.md) | {"default" \| "safe" \| "mixed" \| "bigint"} method The method to use when parsing the response for request. Must be one of "default", "safe", "mixed", or "bigint". See JSONRequest.setIntDecoding for more details about what each method does. | #### Returns `void` #### Inherited from ServiceClient.setIntEncoding #### Defined in client/v2/serviceClient.ts:79 ___ ## POST Methods ### compile ▸ **compile**(`source`): `default` Compiles TEAL source code to binary, returns base64 encoded program bytes and base32 SHA512_256 hash of program bytes (Address style). #### Example ```typescript const source = "TEAL SOURCE CODE"; const compiledSmartContract = await algodClient.compile(source).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#post-v2tealcompile) #### Parameters | Name | Type | | :------ | :------ | | `source` | `string` \| `Uint8Array` | #### Returns `default` **`Remarks`** This endpoint is only enabled when a node's configuration file sets `EnableDeveloperAPI` to true. #### Defined in client/v2/algod/algod.ts:427 ___ ### dryrun ▸ **dryrun**(`dr`): `default` Provides debugging information for a transaction (or group). Executes TEAL program(s) in context and returns debugging information about the execution. This endpoint is only enabled when a node's configureation file sets `EnableDeveloperAPI` to true. #### Example ```typescript const dryRunResult = await algodClient.dryrun(dr).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#post-v2tealdryrun) #### Parameters | Name | Type | | :------ | :------ | | `dr` | [`DryrunRequest`](modelsv2.DryrunRequest.md) | #### Returns `default` #### Defined in client/v2/algod/algod.ts:461 ___ ### sendRawTransaction ▸ **sendRawTransaction**(`stxOrStxs`): `default` Broadcasts a raw transaction to the network. #### Example ```typescript const { txId } = await algodClient.sendRawTransaction(signedTxns).do(); const result = await waitForConfirmation(algodClient, txid, 3); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#post-v2transactions) #### Parameters | Name | Type | Description | | :------ | :------ | :------ | | `stxOrStxs` | `Uint8Array` \| `Uint8Array`[] | Signed transactions | #### Returns `default` **`Remarks`** Often used with [`waitForConfirmation`](../modules.md#waitforconfirmation) #### Defined in client/v2/algod/algod.ts:139 ___ ### setBlockOffsetTimestamp ▸ **setBlockOffsetTimestamp**(`offset`): `default` Set the offset (in seconds) applied to the block timestamp when creating new blocks in devmode. #### Example ```typesecript const offset = 60 await client.setBlockOffsetTimestamp(offset).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#post-v2devmodeblocksoffsetoffset) #### Parameters | Name | Type | | :------ | :------ | | `offset` | `number` | #### Returns `default` #### Defined in client/v2/algod/algod.ts:695 ___ ### setSyncRound ▸ **setSyncRound**(`round`): `default` Set the sync round on the ledger (algod must have EnableFollowMode: true), restricting catchup. #### Example ```typesecript const round = 10000 await client.setSyncRound(round).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#post-v2ledgersyncround) #### Parameters | Name | Type | | :------ | :------ | | `round` | `number` | #### Returns `default` #### Defined in client/v2/algod/algod.ts:727 ___ ### simulateRawTransactions ▸ **simulateRawTransactions**(`stxOrStxs`): `default` Simulate a list of a signed transaction objects being sent to the network. #### Example ```typescript const txn1 = algosdk.makePaymentTxnWithSuggestedParamsFromObject(txn1Params); const txn2 = algosdk.makePaymentTxnWithSuggestedParamsFromObject(txn2Params); const txgroup = algosdk.assignGroupID([txn1, txn2]); // Actually sign the first transaction const signedTxn1 = txgroup[0].signTxn(senderSk).blob; // Simulate does not require signed transactions -- use this method to encode an unsigned transaction const signedTxn2 = algosdk.encodeUnsignedSimulateTransaction(txgroup[1]); const resp = await client.simulateRawTransactions([signedTxn1, signedTxn2]).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#post-v2transactionssimulate) #### Parameters | Name | Type | | :------ | :------ | | `stxOrStxs` | `Uint8Array` \| `Uint8Array`[] | #### Returns `default` #### Defined in client/v2/algod/algod.ts:630 ___ ### simulateTransactions ▸ **simulateTransactions**(`request`): `default` Simulate transactions being sent to the network. #### Example ```typescript const txn1 = algosdk.makePaymentTxnWithSuggestedParamsFromObject(txn1Params); const txn2 = algosdk.makePaymentTxnWithSuggestedParamsFromObject(txn2Params); const txgroup = algosdk.assignGroupID([txn1, txn2]); // Actually sign the first transaction const signedTxn1 = txgroup[0].signTxn(senderSk).blob; // Simulate does not require signed transactions -- use this method to encode an unsigned transaction const signedTxn2 = algosdk.encodeUnsignedSimulateTransaction(txgroup[1]); const request = new modelsv2.SimulateRequest({ txnGroups: [ new modelsv2.SimulateRequestTransactionGroup({ // Must decode the signed txn bytes into an object txns: [algosdk.decodeObj(signedTxn1), algosdk.decodeObj(signedTxn2)] }), ], }); const resp = await client.simulateRawTransactions(request).do(); ``` [Response data schema details](https://developer.algorand.org/docs/rest-apis/algod/#post-v2transactionssimulate) #### Parameters | Name | Type | | :------ | :------ | | `request` | [`SimulateRequest`](modelsv2.SimulateRequest.md) | #### Returns `default` #### Defined in client/v2/algod/algod.ts:678

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/GoPlausible/algorand-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server