This repository aims at giving the detailed steps to locally work
on Starknet messaging with Anvil
and Katana
.
Please before start, install:
- scarb to build cairo contracts.
- starkli to interact with Katana.
- katana to install Katana, that belongs to dojo.
- foundry to interact with Anvil.
If it's your first time cloning the repository, please install forge dependencies as follow:
cd solidity
forge install
To setup Ethereum part for local testing, please follow those steps:
-
Start Anvil in a new terminal with the command
anvil
. -
In an other terminal, change directory into the solidity folder:
cd solidity # Copies the example of anvil configuration file into .env that is loaded by # foundry automatically. cp anvil.env .env # Ensure all variables are exported for the use of forge commands. source .env
-
Then, we will deploy the
StarknetMessagingLocal
contract that simulates the work done by theStarknetMessaging
core contract on Ethereum. Then we will deploy theContractMsg.sol
to send/receive message. To do so, run the following:forge script script/LocalTesting.s.sol:LocalSetup --broadcast --rpc-url ${ETH_RPC_URL}
-
Keep this terminal open for later use to send transactions on Anvil.
To setup Starknet contract, please follow those steps:
-
Update katana on the 1.0.0-alpha.0 version to use the latest RPC version:
starkliup dojoup -v 1.0.0-alpha.0
-
Then open a terminal and starts katana by passing the messaging configuration where Anvil contract address and account keys are setup:
katana --messaging anvil.messaging.json
Katana will now poll anvil logs exactly as the Starknet sequencer does on the
StarknetMessaging
contract on ethereum. -
In a new terminal, go into cairo folder and use starkli to declare and deploy the contracts:
cd cairo # To ensure starkli env variables are setup correctly. source katana.env # Scarb version is defined by `.tool-versions` # Or use `asdf install scarb 2.6.3` then `asdf local scarb 2.6.3`. scarb build starkli declare ./target/dev/messaging_tuto_contract_msg.contract_class.json --compiler-version 2.6.2 --keystore-password "" starkli deploy 0x031a19a9b048cb294ef143c9605447453c24238f840d6a1d5260c51197e7fab3 \ --salt 0x1234 \ --keystore-password ""
-
Keep this terminal open to later send transactions on Katana.
Once you have both dev nodes setup with contracts deployed, we can start interacting with them.
You can use starkli
and cast
to send transactions. But for the sake of simplicity, some scripts
are already written to replace cast
usage.
# In the terminal that is inside solidity folder you've used to run forge script previously (ensure you've sourced the .env file).
forge script script/SendMessage.s.sol:Value --broadcast --rpc-url ${ETH_RPC_URL}
forge script script/SendMessage.s.sol:Struct --broadcast --rpc-url ${ETH_RPC_URL}
You will then see Katana picking up the messages, and executing exactly as Starknet would do with Ethereum on testnet or mainnet.
Example here where you can see the details of the message and the event being emitted ValueReceivedFromL1
.
2024-01-26T12:42:17.934100Z INFO messaging: L1Handler transaction added to the pool:
| tx_hash | 0x79def1f8bf153138ab5f13cf85dbbd03ffa9b336ab27c81c432fdb63a9bc765
| contract_address | 0x55f3fc5db292152d8daac01c1427f8a147d824d9cbe44c8d030b72fd3f35949
| selector | 0x5421de947699472df434466845d68528f221a52fce7ad2934c5dae2e1f1cdc
| calldata | [0xe7f1725e7734ce288f8367e1bb143e90bb3f0512, 0x7b]
2024-01-26T12:42:17.934808Z TRACE executor: Event emitted keys=[0x7acfbcb48c15c0b483370386499142617673e79567c0ef3937c3b2d57ac505, 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512]
You can try to change the payload into the scripts to see how the contract on starknet behaves receiveing the message. Try to set both values to 0 for the struct. In the case of the value, you'll see a warning in Katana saying Invalid value
because the contract is expected 123
.
# In the terminal that is inside the cairo folder you've used to run starkli commands to declare (ensure you've sourced the katana.env file).
starkli invoke 0x055f3fc5db292152d8daac01c1427f8a147d824d9cbe44c8d030b72fd3f35949 \
send_message_value 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 1 \
--keystore-password ""
starkli invoke 0x055f3fc5db292152d8daac01c1427f8a147d824d9cbe44c8d030b72fd3f35949 \
send_message_struct 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 1 2 \
--keystore-password ""
You will then see Katana sending transactions to L1 to register the hashes of the messages,
simulating the work done by the StarknetMessaging
contract on L1 on testnet or mainnet.
You've to wait few seconds to see the confirmation of Katana that the messages has been sent to Anvil:
2024-01-26T12:45:25.932340Z DEBUG katana_core::service::messaging::ethereum: Sending transaction on L1 to register messages...
2024-01-26T12:45:32.938959Z INFO messaging: Message sent to settlement layer:
| hash | 0xfa2f52b71312f606970bb50a3b80bb6a82dce8f624c66dc5593122b3797855fb
| from_address | 0x55f3fc5db292152d8daac01c1427f8a147d824d9cbe44c8d030b72fd3f35949
| to_address | 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512
| payload | [0x1]
2024-01-26T12:46:11.932363Z DEBUG katana_core::service::messaging::ethereum: Sending transaction on L1 to register messages...
2024-01-26T12:46:18.936855Z INFO messaging: Message sent to settlement layer:
| hash | 0xaab137b4e03c12e24e90eb74189f32ffa9e5fdd3364c2b539ba69b9ea58cf6d6
| from_address | 0x55f3fc5db292152d8daac01c1427f8a147d824d9cbe44c8d030b72fd3f35949
| to_address | 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512
| payload | [0x1, 0x2]
To then consume the messages, you must send a transaction on Anvil, exactly as you would do on L1 for testnet or mainnet.
# In the terminal used for solidity / forge stuff.
# Try to run a first time, it should pass. Try to run a second time, you should have the
# error INVALID_MESSAGE_TO_CONSUME because the message is already consumed.
# Or try to change the payload value or address in the script, to see how the consumption
# of the message is denied.
forge script script/ConsumeMessage.s.sol:Value --broadcast -vvvv --rpc-url ${ETH_RPC_URL}
# Same here, try to consume a message sent with a struct inside.
forge script script/ConsumeMessage.s.sol:Struct --broadcast -vvvv --rpc-url ${ETH_RPC_URL}
And that's it!
With those examples, you can now try your own messaging contracts, mostly to ensure that your serialization/deserialization of arguments between solidity and cairo is done correctly.