> For the complete documentation index, see [llms.txt](/llms.txt).

# Caveat Enforcer Client reference

The following API methods are related to `CaveatEnforcerClient` used to [check the delegation state](/smart-accounts-kit/guides/delegation/check-delegation-state/).

## `createCaveatEnforcerClient`[​](#createcaveatenforcerclient "Direct link to createcaveatenforcerclient")

Create a Viem Client extended with caveat enforcer actions. This client allows you to interact with the caveat enforcers of the delegation, and read the required state.

### Parameters[​](#parameters "Direct link to Parameters")

| Name        | Type                                                                                      | Required | Description                                                                          |
| ----------- | ----------------------------------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------ |
| client      | Client                                                                                    | Yes      | The Viem Client to interact with the caveat enforcer contracts and read their state. |
| environment | [SmartAccountsEnvironment](/smart-accounts-kit/reference/types/#smartaccountsenvironment) | Yes      | Environment to resolve the smart contracts for the current chain.                    |

### Example[​](#example "Direct link to Example")

- example.ts
- config.ts

```
import { environment, publicClient as client } from './config.ts'
import { createCaveatEnforcerClient } from '@metamask/smart-accounts-kit'

const caveatEnforcerClient = createCaveatEnforcerClient({
  environment,
  client,
})

```

```
import { sepolia as chain } from 'viem/chains'
import { createPublicClient, http } from 'viem'
import { getSmartAccountsEnvironment } from '@metamask/smart-accounts-kit'

export const environment = getSmartAccountsEnvironment(chain.id)

export const publicClient = createPublicClient({
  chain,
  transport: http(),
})

```

## `getErc20PeriodTransferEnforcerAvailableAmount`[​](#geterc20periodtransferenforceravailableamount "Direct link to geterc20periodtransferenforceravailableamount")

Returns the available amount from the ERC-20 period transfer enforcer for the current period.

### Parameters[​](#parameters-1 "Direct link to Parameters")

| Name       | Type                                                          | Required | Description                                                             |
| ---------- | ------------------------------------------------------------- | -------- | ----------------------------------------------------------------------- |
| delegation | [Delegation](/smart-accounts-kit/reference/types/#delegation) | Yes      | The delegation object for which you want to check the available amount. |

### Example[​](#example-1 "Direct link to Example")

- example.ts
- config.ts

```
import { delegation } './config.ts'

// Returns the available amount for current period.
const { availableAmount } = await caveatEnforcerClient.getErc20PeriodTransferEnforcerAvailableAmount({
  delegation,
})

```

```
import { createDelegation, ScopeType } from '@metamask/smart-accounts-kit'
import { sepolia as chain } from 'viem/chains'
import { getSmartAccountsEnvironment } from '@metamask/smart-accounts-kit'

const environment = getSmartAccountsEnvironment(chain.id)

// Since current time is in seconds, we need to convert milliseconds to seconds.
const startDate = Math.floor(Date.now() / 1000)

export const delegation = createDelegation({
  scope: {
    type: ScopeType.Erc20PeriodTransfer,
    tokenAddress: '0xb4aE654Aca577781Ca1c5DE8FbE60c2F423f37da',
    periodAmount: parseUnits('10', 6),
    periodDuration: 86400,
    startDate,
  },
  to: 'DELEGATE_ADDRESS',
  from: 'DELEGATOR_ADDRESS',
  environment,
})

```

## `getErc20StreamingEnforcerAvailableAmount`[​](#geterc20streamingenforceravailableamount "Direct link to geterc20streamingenforceravailableamount")

Returns the available amount from the ERC-20 streaming enforcer.

### Parameters[​](#parameters-2 "Direct link to Parameters")

| Name       | Type                                                          | Required | Description                                                             |
| ---------- | ------------------------------------------------------------- | -------- | ----------------------------------------------------------------------- |
| delegation | [Delegation](/smart-accounts-kit/reference/types/#delegation) | Yes      | The delegation object for which you want to check the available amount. |

### Example[​](#example-2 "Direct link to Example")

- example.ts
- config.ts

```
import { delegation } './config.ts'

// Returns the available amount
const { availableAmount } = await caveatEnforcerClient.getErc20StreamingEnforcerAvailableAmount({
  delegation,
})

```

```
import { createDelegation, ScopeType } from '@metamask/smart-accounts-kit'
import { sepolia as chain } from 'viem/chains'
import { getSmartAccountsEnvironment } from '@metamask/smart-accounts-kit'
import { parseUnits } from 'viem'

const environment = getSmartAccountsEnvironment(chain.id)

// Since current time is in seconds, we need to convert milliseconds to seconds.
const startTime = Math.floor(Date.now() / 1000)

export const delegation = createDelegation({
  scope: {
    type: ScopeType.Erc20Streaming,
    tokenAddress: '0xc11F3a8E5C7D16b75c9E2F60d26f5321C6Af5E92',
    amountPerSecond: parseUnits('0.1', 6),
    initialAmount: parseUnits('1', 6),
    maxAmount: parseUnits('10', 6),
    startTime,
  },
  to: 'DELEGATE_ADDRESS',
  from: 'DELEGATOR_ADDRESS',
  environment,
})

```

## `getNativeTokenPeriodTransferEnforcerAvailableAmount`[​](#getnativetokenperiodtransferenforceravailableamount "Direct link to getnativetokenperiodtransferenforceravailableamount")

Returns the available amount from the native token period enforcer for the current period.

### Parameters[​](#parameters-3 "Direct link to Parameters")

| Name       | Type                                                          | Required | Description                                                             |
| ---------- | ------------------------------------------------------------- | -------- | ----------------------------------------------------------------------- |
| delegation | [Delegation](/smart-accounts-kit/reference/types/#delegation) | Yes      | The delegation object for which you want to check the available amount. |

### Example[​](#example-3 "Direct link to Example")

- example.ts
- config.ts

```
import { delegation } './config.ts'

// Returns the available amount for current period.
const { availableAmount } = await caveatEnforcerClient.getNativeTokenPeriodTransferEnforcerAvailableAmount({
  delegation,
})

```

```
import { createDelegation, ScopeType } from '@metamask/smart-accounts-kit'
import { sepolia as chain } from 'viem/chains'
import { parseEther } from 'viem'
import { getSmartAccountsEnvironment } from '@metamask/smart-accounts-kit'

const environment = getSmartAccountsEnvironment(chain.id)

// Since current time is in seconds, we need to convert milliseconds to seconds.
const startDate = Math.floor(Date.now() / 1000)

export const delegation = createDelegation({
  scope: {
    type: ScopeType.NativeTokenPeriodTransfer,
    periodAmount: parseEther('0.01'),
    periodDuration: 86400,
    startDate,
  },
  to: 'DELEGATE_ADDRESS',
  from: 'DELEGATOR_ADDRESS',
  environment,
})

```

## `getNativeTokenStreamingEnforcerAvailableAmount`[​](#getnativetokenstreamingenforceravailableamount "Direct link to getnativetokenstreamingenforceravailableamount")

Returns the available amount from the native streaming enforcer.

### Parameters[​](#parameters-4 "Direct link to Parameters")

| Name       | Type                                                          | Required | Description                                                             |
| ---------- | ------------------------------------------------------------- | -------- | ----------------------------------------------------------------------- |
| delegation | [Delegation](/smart-accounts-kit/reference/types/#delegation) | Yes      | The delegation object for which you want to check the available amount. |

### Example[​](#example-4 "Direct link to Example")

- example.ts
- config.ts

```
import { delegation } './config.ts'

// Returns the available amount
const { availableAmount } = await caveatEnforcerClient.getNativeTokenStreamingEnforcerAvailableAmount({
  delegation,
})

```

```
import { createDelegation, ScopeType } from '@metamask/smart-accounts-kit'
import { sepolia as chain } from 'viem/chains'
import { getSmartAccountsEnvironment } from '@metamask/smart-accounts-kit'

const environment = getSmartAccountsEnvironment(chain.id)

// Since current time is in seconds, we need to convert milliseconds to seconds.
const startTime = Math.floor(Date.now() / 1000)

export const delegation = createDelegation({
  scope: {
    type: ScopeType.NativeTokenStreaming,
    amountPerSecond: parseEther('0.001'),
    initialAmount: parseEther('0.01'),
    maxAmount: parseEther('0.1'),
    startTime,
  },
  to: 'DELEGATE_ADDRESS',
  from: 'DELEGATOR_ADDRESS',
  environment,
})

```

## `getMultiTokenPeriodEnforcerAvailableAmount`[​](#getmultitokenperiodenforceravailableamount "Direct link to getmultitokenperiodenforceravailableamount")

Returns the available amount from the multi token period transfer enforcer for the current period. You'll need to encode the arguments for the token index you want to check the available amount.

### Parameters[​](#parameters-5 "Direct link to Parameters")

| Name       | Type                                                          | Required | Description                                                                              |
| ---------- | ------------------------------------------------------------- | -------- | ---------------------------------------------------------------------------------------- |
| delegation | [Delegation](/smart-accounts-kit/reference/types/#delegation) | Yes      | The delegation object with token index for which you want to check the available amount. |

### Example[​](#example-5 "Direct link to Example")

- example.ts
- config.ts

```
import { delegation } './config.ts'

// Encode the args for the multiTokenPeriod enforcer.
const args = encodePacked(['uint256'], [BigInt(0)]);

// Ensure the index is correct when working with multiple enforcers.
delegation.caveats[0].args = args

// Returns the available amount for the first token in the list.
const { availableAmount } = await caveatEnforcerClient.getMultiTokenPeriodEnforcerAvailableAmount({
  delegation,
})

```

```
import {
  createDelegation,
  getSmartAccountsEnvironment,
  ROOT_AUTHORITY,
  CaveatType,
} from '@metamask/smart-accounts-kit'
import { createCaveatBuilder } from '@metamask/smart-accounts-kit/utils'
import { sepolia as chain } from 'viem/chains'
import { parseUnits, parseEther } from 'viem'

const environment = getSmartAccountsEnvironment(chain.id)
const caveatBuilder = createCaveatBuilder(environment)

// Current time as start date.
// Since startDate is in seconds, we need to convert milliseconds to seconds.
const startDate = Math.floor(Date.now() / 1000)

const tokenConfigs = [
  {
    token: '0xb4aE654Aca577781Ca1c5DE8FbE60c2F423f37da',
    // 1 token with 6 decimals.
    periodAmount: parseUnits('1', 6),
    // 1 day in seconds.
    periodDuration: 86400,
    startDate,
  },
  {
    // For native token use zeroAddress
    token: zeroAddress,
    // 0.01 ETH in wei.
    periodAmount: parseEther('0.01'),
    // 1 hour in seconds.
    periodDuration: 3600,
    startDate,
  },
]

const caveats = caveatBuilder.addCaveat(CaveatType.MultiTokenPeriod, tokenConfigs)

export const delegation: Delegation = {
  delegate: 'DELEGATE_ADDRESS',
  delegator: 'DELEGATOR_ADDRESS',
  authority: ROOT_AUTHORITY,
  caveats: caveats.build(),
  salt: '0x',
}

```
