We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RioTheGreat-ai/agentfund-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
authorization.d.ts•721 B
import type { Addressable } from "../address/index.js";
import type { SignatureLike } from "../crypto/index.js";
import type { BigNumberish, Numeric } from "../utils/index.js";
export interface AuthorizationRequest {
address: string | Addressable;
nonce?: Numeric;
chainId?: BigNumberish;
}
/**
* Computes the [[link-eip-7702]] authorization digest to sign.
*/
export declare function hashAuthorization(auth: AuthorizationRequest): string;
/**
* Return the address of the private key that produced
* the signature %%sig%% during signing for %%message%%.
*/
export declare function verifyAuthorization(auth: AuthorizationRequest, sig: SignatureLike): string;
//# sourceMappingURL=authorization.d.ts.map