Developing TAC Proxy
Learn how to develop a TAC Proxy - the connectors between TON and EVM applications
This process might be a little complicated, so please reach out to us on Discord if you have any questions.
A TAC Proxy is a Solidity contract that receives cross-chain messages and tokens bridged from the TON blockchain. When a user on TON initiates a message (and potentially sends tokens), the TAC infrastructure delivers the tokens and data to your EVM-based contract’s function. The proxy contract then processes that data—often by calling another Dapp contract or by performing some bridging logic—and optionally sends tokens back to TON using the same TAC infrastructure.
The guide below shows how to:
- Install the necessary dependencies.
- Write a simple proxy contract (both non-upgradeable and upgradeable).
- Implement your custom logic in a proxy function that adheres to TAC’s required function signature.
- Encode your arguments properly on the frontend.
- Test your proxy contract locally using Hardhat and the tac-l2-ccl testing utilities.
Installation
-
Install the
tac-l2-ccl
package in your Solidity contract repository. This package includes core functionalities for cross-chain messaging and local test SDKs: -
In most cases, you will be using Hardhat for development. Make sure you have a typical Hardhat setup and the recommended testing libraries. For instance, your
package.json
may include: -
If you cannot deploy your Dapp contracts directly for local testing, consider forking another network where the necessary contracts are already deployed. This can simplify local development and testing.
Creating the Proxy Contract
In your contracts
folder, create a new .sol
file (e.g. MyProxy.sol
). Below are two variations:
Non-upgradeable Contract
For a simple, non-upgradeable contract, you can extend TacProxyV1
:
Key Points
- We pass
_crossChainLayer
(the CrossChainLayer contract address) toTacProxyV1
’s constructor. _onlyCrossChainLayer
is a security modifier inherited fromTacProxyV1
. It ensures that only the recognized cross-chain layer can call this function.IDappContract
is just an example interface for some external logic contract you may want to call.
Upgradeable Contract
If you need to upgrade your contract over time, use OpenZeppelin’s upgradeable libraries and the TacProxyV1Upgradeable
contract:
Key Points
- Inherits from
Initializable
,OwnableUpgradeable
,UUPSUpgradeable
, andTacProxyV1Upgradeable
. - Has an
initialize
function in place of a constructor. _authorizeUpgrade
ensures only the owner can perform contract upgrades.
Defining and Implementing Proxy Functions
Every proxy function that TAC calls must have the signature:
You can name the function as you wish (e.g. myProxyFunction
, invokeWithCallback
, etc.), but it must accept two bytes
arguments:
- The first is always the encoded TAC header.
- The second is always the encoded arguments that you define.
Example Implementation
Below is an extended example of how you might implement myProxyFunction
in a non-upgradeable contract. The logic is the same for an upgradeable contract.
Important Notes
function myProxyFunction(bytes calldata, bytes calldata) external _onlyCrossChainLayer
ensures only the TAC infrastructure can call this function._decodeTacHeader(...)
is inherited fromTacProxyV1
(orTacProxyV1Upgradeable
); it transforms the rawbytes
intoTacHeaderV1
data.- You typically decode the second argument (
arguments
) usingabi.decode(...)
with a struct you define.
How the Cross-Chain Call Works
When a user on TON sends a message via your Dapp (e.g., using the @tonappchain/sdk
on the frontend), the CrossChainLayer contract on EVM receives bridged tokens and data from the TON side. Then:
- Tokens (if any) are automatically transferred from the CrossChainLayer contract to your proxy contract before the function call.
- The CrossChainLayer calls
myProxyFunction(tacHeader, arguments)
on your proxy contract.tacHeader
is the encodedTacHeaderV1
struct containing data likeshardsKey
,operationId
, the user’stvmCaller
address on TON, etc.arguments
is abytes
array containing data you defined in the Dapp’s frontend (encoded via@tonappchain/sdk
or manually usingethers.AbiCoder
).
- Your proxy function processes the tokens, calls external contracts if necessary, and optionally prepares an
OutMessageV1
with tokens to be sent back to TON. - The
_sendMessageV1(...)
function sends everything back to the CrossChainLayer so that tokens (and an optional message) can be bridged to TON.
Encoding Arguments on the Frontend
You typically define a struct that represents the arguments your proxy function expects. For example:
You then encode these fields in your frontend code using ethers.js
(or another library).
Basic Example
Complex Example with Nested Structures
Encoding:
Complex Example with Dynamic Arrays
Encoding:
Specifying the Function Name in @tonappchain/sdk
When using the @tonappchain/sdk
to create messages for bridging, you must provide:
target
: the address of your Proxy contract.method_name
: the complete function signature, e.g."myProxyFunction(bytes,bytes)"
.arguments
: the ABI-encoded arguments (second parameter in your proxy function).
Example:
Testing the Proxy Contract
Example Minimal Proxy for Testing
In many cases, you want a stripped-down contract to test basic cross-chain behavior. Below is a minimal TestProxy
that:
- Inherits
TacProxyV1
. - Has a single function
invokeWithCallback(...)
. - Emits an event for logging.
- Demonstrates bridging tokens back to TON.
Also define the TestToken contract.
Test Setup Example (Hardhat + tac-l2-ccl)
Create a test file such as TestProxy.spec.ts
under your test
directory. Below is a basic example test:
Test Flow:
-
Initialization
- Create a local cross-chain environment (
TacLocalTestSdk
). - Deploy a test token (
TestToken
). - Deploy your
TestProxy
.
- Create a local cross-chain environment (
-
Bridging Simulation
- Mint or lock tokens on the cross-chain layer.
- Create the parameters (
shardsKey
,operationId
, etc.).
-
Invoke Proxy
- Use the
testSdk.sendMessage(...)
to simulate a cross-chain call to your proxy’s function.
- Use the
-
Verification
- Confirm the transaction succeeded.
- Inspect the
deployedTokens
(if you minted new tokens). - Inspect the
outMessages
for tokens returning to TON. - Check emitted events for correct data.
Running the Tests
Inside your project directory, simply run:
Hardhat will compile all contracts and run the test suite. The tac-l2-ccl
local test SDK helps emulate bridging logic, ensuring your proxy behaves as expected in a cross-chain scenario.
Conclusion
By following these steps, you can develop, deploy, and test a TAC Proxy contract that handles cross-chain messages and tokens from TON. Key points include:
- Inheritance from
TacProxyV1
orTacProxyV1Upgradeable
to gain built-in cross-chain functionality and security modifiers. - Function Signatures must match
functionName(bytes, bytes) external
. - Decoding the TAC header and your custom arguments to implement your Dapp’s logic.
- Use
_sendMessageV1(...)
to return tokens and a message back to TON. - Local Testing with
tac-l2-ccl
provides an easy way to validate your cross-chain logic without deploying a full cross-chain setup.
You can customize the logic in your proxy functions for more advanced scenarios such as multi-token bridging, fee collection, or complex operations on the EVM side before returning data to TON. By carefully using the inherited methods from the TAC library and thoroughly testing your contract, you can confidently build cross-chain applications that interact between EVM and TON networks.
Was this page helpful?