NEWTON

NEWTON


Popular tags

    How to use Kakarot for my Solidity Contracts?

    Asked

    24 days ago

    28

    views


    0

    I have a Solidity Smart contract like this:

    // SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; /** * @title Storage * @dev Store & retrieve value in a variable */ contract Storage { uint256 number; /** * @dev Store value in variable * @param num value to store */ function store(uint256 num) public { number = num; } /** * @dev Return value * @return value of 'number' */ function retrieve() public view returns (uint256){ return number; } }

    Which steps should I follow if I want to use kakarot?

      kakarotzkEVMsolidity

    0xVato

    asked

    24 days ago


    1 answers

    1

    Hey,

    so kakarot is not ready yet for production but when it's done, it'll just be like any another EVM-chain RPC providers so you wouldn't need to change anything from a solidity-dev point of view.

    As of today, we do use solidity files in our tests but this only works locally and requires to install the whole kakarot project. See for example https://github.com/sayajin-labs/kakarot/blob/240d4b6f2b2b42f1248a261c70f0f3ffea90a2e3/tests/integration/conftest.py

    0xFc7c...b4F7d7

    answered

    24 days ago

    Your answer

    NEWTON

    NEWTON