@@ -302,14 +302,14 @@ main();
302302 - "Get information about the latest block on Starknet"
303303 - "Look up the owner of NFT #123 in collection 0x..."
304304
305- ### Example: Getting an ETH Balance with StarkNet ID
305+ ### Example: Getting an ETH Balance with Starknet ID
306306
307307``` javascript
308- // Example of using the MCP client to check an ETH balance using StarkNet ID
308+ // Example of using the MCP client to check an ETH balance using Starknet ID
309309const mcp = new McpClient (" http://localhost:3000" );
310310
311311const result = await mcp .invokeTool (" get_starknet_eth_balance" , {
312- address: " vitalik.stark" , // StarkNet ID instead of address
312+ address: " vitalik.stark" , // Starknet ID instead of address
313313 network: " mainnet"
314314});
315315
@@ -320,10 +320,10 @@ console.log(result);
320320// }
321321```
322322
323- ### Example: Resolving a StarkNet ID
323+ ### Example: Resolving a Starknet ID
324324
325325``` javascript
326- // Example of using the MCP client to resolve a StarkNet ID to an address
326+ // Example of using the MCP client to resolve a Starknet ID to an address
327327const mcp = new McpClient (" http://localhost:3000" );
328328
329329const result = await mcp .invokeTool (" resolve_starknet_address" , {
@@ -390,7 +390,7 @@ This server implements the following MCP tools:
390390- ` get_supported_starknet_networks ` : Get a list of supported Starknet networks
391391
392392#### Balance Tools
393- - ` get_starknet_eth_balance ` : Get the ETH balance for a Starknet address or StarkNet ID
393+ - ` get_starknet_eth_balance ` : Get the ETH balance for a Starknet address or Starknet ID
394394- ` get_starknet_token_balance ` : Get the balance of any token for an address
395395- ` get_starknet_strk_balance ` : Get the STRK token balance for an address
396396- ` get_starknet_native_balances ` : Get all native token balances (ETH and STRK) for an address
@@ -501,7 +501,7 @@ starknet-mcp-server/
501501│ │ ├── blocks.ts # Block services
502502│ │ ├── clients.ts # Client utilities
503503│ │ ├── contracts.ts # Contract interactions
504- │ │ ├── starknetid.ts # StarkNet ID services
504+ │ │ ├── starknetid.ts # Starknet ID services
505505│ │ ├── tokens.ts # Token services
506506│ │ ├── transactions.ts # Transaction services
507507│ │ ├── transfer.ts # Transfer services
0 commit comments