For example, in the following transaction, https://starkscan.co/tx/0x012829d678c9b5bff701a6f2fed31744e14e736a209f61522fbc0bb65be98983, a long string data:,{\”p\”:\”stark-20\”,\”op\”:\”mint\”,\”tick\”:\”STRK\”,\”amt\”:\”1000\”} is passed to the contract. I want to reproduce it with the following code: async with aiohttp.TCPConnector(ssl=False) as tcpconnector: async with aiohttp.ClientSession(connector=tcpconnector,trust_env=True) as session: full_node_client = FullNodeClient(node_url=node_url,session=session) account = Account( client=full_node_client, address=address, key_pair=KeyPair.from_private_key(key=private_key), chain=StarknetChainId.MAINNET, ) call = Call( to_addr=0x07341189e3c96f636a4192cfba8c18deeee33a19c5d0425a26cf96ea42388c4e, selector=get_selector_from_name(“inscribe”), calldata=[“data:,{\”p\”:\”stark-20\”,\”op\”:\”min”,”t\”,\”tick\”:\”STRK\”,\”amt\”:\”1000\”}”] ) calls = … Read more