> ## Documentation Index
> Fetch the complete documentation index at: https://etherspot.fyi/llms.txt
> Use this file to discover all available pages before exploring further.

# deployVerifyingPaymaster

> Deploy Verifying Paymaster

Example values you can use to demo the API:

```json theme={null}
{
  "apiKey": "etherspot_public_key",
  "chainId": "11155111",
  "params": ["EPV_07"]
}
```

Example response:

```json theme={null}
{
    "verifyingPaymaster": "0xfe08B548Bd73F2559B1c759A6F41914a09456461",
    "txHash": "0x28ed5b8fce76b310d255953ba5ac3032730825da2389e7bfb11c7fb047d72e61"
}
```


## OpenAPI

````yaml arka post /deployVerifyingPaymaster
openapi: 3.0.3
info:
  title: Etherspot Arka Paymaster API
  version: 3.1.3
servers:
  - url: https://rpc.etherspot.io/paymaster
security: []
tags:
  - name: Arka
    externalDocs:
      description: Find out more about Arka
      url: https://etherspot.fyi/arka
externalDocs:
  description: Find out more about Arka
  url: https://etherspot.fyi/arka
paths:
  /deployVerifyingPaymaster:
    post:
      tags:
        - Arka
      summary: deployVerifyingPaymaster
      description: Deploy Verifying Paymaster
      operationId: deployVerifyingPaymaster
      parameters:
        - in: query
          name: apiKey
          schema:
            type: string
          description: Arka API key
        - in: query
          name: chainId
          schema:
            type: string
          description: Chain ID
      requestBody:
        description: Deploy Verifying Paymaster
        content:
          application/json:
            schema:
              type: object
              properties:
                params:
                  type: array
                  items:
                    type: string
                    example: EPV_07
              example:
                params:
                  - EPV_07
        required: true
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  verifyingPaymaster:
                    type: string
                  txHash:
                    type: string

````