We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ai-api-booster/mcp-rosetta-icp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
blockidentifier.md•2.33 kB
# BlockIdentifier
The block_identifier uniquely identifies a block in a particular network.
## Example Usage
```typescript
import { BlockIdentifier } from "icpmcp-rosetta-api";
let value: BlockIdentifier = {
index: 1123941,
hash: "0x1f2cc6c5027d2f201a5453ad1119574d2aed23a392654742ac3c78783c071f85",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
| `index` | *number* | :heavy_check_mark: | This is also known as the block height. | 1123941 |
| `hash` | *string* | :heavy_check_mark: | This should be normalized according to the case specified in the block_hash_case network options. | 0x1f2cc6c5027d2f201a5453ad1119574d2aed23a392654742ac3c78783c071f85 |