# getCurrentSignatureDeposit

Retrieves the current signature deposit required by the program.

## Usage

```ts twoslash
// [!include ~/snippets/code/solana/fee-delegation.ts]
const solanaChainSigContract = chainSigContract
// ---cut---
const deposit = await solanaChainSigContract.getCurrentSignatureDeposit()
```

## Returns

| Type              | Description                                     |
| ----------------- | ----------------------------------------------- |
| `Promise<bigint>` | The current signature deposit amount (lamports) |
