Parameters
| Parameter | Type | Description |
|---|---|---|
options | SignEvmHashOptions | The options for the signing. |
Returns
Promise<SignEvmHashResult>
The result of the signing.
function signEvmHash(options: SignEvmHashOptions): Promise<SignEvmHashResult>;
| Parameter | Type | Description |
|---|---|---|
options | SignEvmHashOptions | The options for the signing. |
Promise<SignEvmHashResult>
The result of the signing.
const result = await signEvmHash({
evmAccount: "0x1234...",
hash: "0xabcd..." // 32-byte hex string to sign
});
Was this page helpful?