> For the complete documentation index, see [llms.txt](https://jungle-toolkit.gitbook.io/evm-xcm-jungle-toolkit/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jungle-toolkit.gitbook.io/evm-xcm-jungle-toolkit/build-a-custodial-solution-to-make-your-dapp-wallet-less-and-gas-less-using-eip-712/smart-contract.md).

# Smart contract

## The mirror structure (web3 link)

The 1st way to implement the wallet mirror is to create a direct link between the user's address and that of the wallet mirror. This is the most efficient way, as it enables the user to interact with the smart-contract using his wallet. As a result, it is perhaps less efficient than web2 integration for onboarding.

To implement this technique, you'll need

* A structure with the information you need for your dApp,
* A mapping linking the address to the structure,
* A reversed mapping to force the transaction to be sent via the mirror.

### Structure example:

```solidity
    /// @notice User storage structure
    struct User {
            /// @notice mirror address used to sign txns
        address internalAddress;
        
    // additional extra data can be stored too
            /// @notice example counter for games played by this user
        uint gamesPlayed;
            /// @notice amount of token loaded inside the game contract
        uint tokenAvailable;
    }
```

### Mapping examples:

```solidity
    /// @notice Real Player Wallet -> Player Data
    mapping(address => Player) public players;

    /// @notice Internal Wallet -> Real Player Wallet
    mapping(address => address) public playersReversed;
```

### Modifier example:

<pre class="language-solidity"><code class="lang-solidity"><strong>        address sender = msg.sender;
</strong>        address realPlayer = playersReversed[sender];
</code></pre>

You'll find more details about mapping and modifiers in the [Mapping of addresses](/evm-xcm-jungle-toolkit/build-an-evm+substrate-wallet-compatible-architecture-in-your-dapp/mapping-of-addresses.md) section.

### Registration function example:

```solidity
    /**
     * @notice Necessary to create the mirror wallet
     * @dev Deployer Required
     * @param _playerWallet: real EOA of user
     * @param _internalWallet: walled used to relay txns
    */
    function createPlayer(address _playerWallet, address _internalWallet) public payable onlyOwner {
        require(players[_playerWallet].internalAddress == 0x0000000000000000000000000000000000000000, "Player already exists");
        players[_playerWallet].internalAddress = _internalWallet;
        playersReversed[_internalWallet] = _playerWallet;
    }
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jungle-toolkit.gitbook.io/evm-xcm-jungle-toolkit/build-a-custodial-solution-to-make-your-dapp-wallet-less-and-gas-less-using-eip-712/smart-contract.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
