Skip to content

Authorization.fromRpc

Converts an Authorization.Rpc to an Authorization.Authorization.

Imports

Named
import { Authorization } from 'ox'

Examples

import { Authorization } from 'ox'
 
const authorization = Authorization.fromRpc({
  address: '0x0000000000000000000000000000000000000000',
  chainId: '0x1',
  nonce: '0x1',
  r: '0x635dc2033e60185bb36709c29c75d64ea51dfbd91c32ef4be198e4ceb169fb4d',
  s: '0x50c2667ac4c771072746acfdcf1f1483336dcca8bd2df47cd83175dbe60f0540',
  yParity: '0x0',
})

Definition

function fromRpc(
  authorization: Rpc,
): Signed

Source: src/Authorization.ts

Parameters

authorization

  • Type: Rpc

The RPC-formatted Authorization.

Return Type

A signed Authorization.Authorization.

Signed