Skip to main content
Glama

web3_sha3

Generate Keccak-256 cryptographic hash for Ethereum data using hex string input to secure and verify blockchain transactions and smart contracts.

Instructions

Returns Keccak-256 hash of the given data

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYesData to hash (hex string starting with 0x)

Implementation Reference

  • The handler function for the web3_sha3 tool. It takes hex data input, calls the RPC web3_sha3 method, formats the hash result, and handles errors.
    async ({ data }) => {
      try {
        const result = await makeRPCCall("web3_sha3", [data]);
        return {
          content: [
            {
              type: "text",
              text: formatResponse(result, "Keccak-256 Hash"),
            },
          ],
        };
      } catch (error: any) {
        return {
          content: [
            {
              type: "text",
              text: `Error: ${error.message}`,
            },
          ],
        };
      }
    },
  • Input schema using Zod for the data parameter: a hex string starting with 0x.
      data: z.string().describe("Data to hash (hex string starting with 0x)"),
    },
  • src/index.ts:128-133 (registration)
    Registration of the web3_sha3 tool via server.tool, including name, description, and schema.
    server.tool(
      "web3_sha3",
      "Returns Keccak-256 hash of the given data",
      {
        data: z.string().describe("Data to hash (hex string starting with 0x)"),
      },
  • Helper function used by the handler to perform the actual RPC call to the Ethereum provider.
    async function makeRPCCall(method: string, params: any[] = []): Promise<any> {
      try {
        const result = await provider.send(method, params);
        return result;
      } catch (error: any) {
        throw new Error(`RPC call failed: ${error.message}`);
      }
    }

Latest Blog Posts

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/JamesANZ/evm-mcp'

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