> For the complete documentation index, see [llms.txt](https://luntra.gitbook.io/luntra-infrastructure/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://luntra.gitbook.io/luntra-infrastructure/luntra-infrastructure-core/eip-7702-support-coming-to-luntra-infrastructure/integration-guide.md).

# Integration Guide

### For Wallet Developers

```solidity
// Example: Batch transaction contract
contract BatchExecutor {
    function batchExecute(
        address[] calldata targets,
        bytes[] calldata data,
        uint256[] calldata values
    ) external {
        require(targets.length == data.length, "Length mismatch");

        for (uint i = 0; i < targets.length; i++) {
            (bool success, ) = targets[i].call{value: values[i]}(data[i]);
            require(success, "Batch execution failed");
        }
    }
}

```

### For DApp Developers

```jsx
// Creating an EIP-7702 transaction on Luntra Infrastructure
const authorizationList = [{
    chainId: 3470144, // Luntra Infrastructure Chain ID
    address: BATCH_EXECUTOR_ADDRESS,
    nonce: await signer.getTransactionCount(),
    // ... signature fields
}];

const tx = {
    type: 0x04,
    to: userAddress,
    data: batchExecuteCalldata,
    authorizationList,
    // ... other fields
};

```
