# RpcSchemaTempo

JSON-RPC schemas for the `tempo_` and `multisig_` namespaces.

## Examples

```ts twoslash
import 'ox/window'
import { Provider, RpcSchema } from 'ox'
import { RpcSchemaTempo } from 'ox/tempo'

const schema = RpcSchema.from<
  | RpcSchema.Default
  | RpcSchemaTempo.Multisig
  | RpcSchemaTempo.Tempo
>()

const provider = Provider.from(window.ethereum!, { schema })
```

## Types

| Name                | Description                         |
| ------------------- | ----------------------------------- |
| [`RpcSchemaTempo.Multisig`](/tempo/reference/RpcSchemaTempo/types#rpcschematempomultisig) | Union of all JSON-RPC methods for the `multisig_` namespace. |
| [`RpcSchemaTempo.Tempo`](/tempo/reference/RpcSchemaTempo/types#rpcschematempotempo) | Union of all JSON-RPC Methods for the `tempo_` namespace. |
