polytone-evm 0.3.0

Core interfaces for Polytone Interchain accounts and queries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

contract StringHolder {
    event StringChanged(string value);

    constructor() {}

    string public value;

    function set(string memory _value) public returns (string memory) {
        value = _value;
        emit StringChanged(_value);
        return value;
    }
}