Introduction
Doodledapp turns visual nodes into real Solidity smart contracts. You drag, connect, and build, no code required.
Drag the divider to see both sides. The left is what you build. The right is what you get.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract MyContract {
uint256 public value;
function setValue(uint256 _value) public {
value = _value;
}
}Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.
Every node maps 1:1 to Solidity. These docs walk you through the building blocks, with interactive demos you can try as you go.
Let’s start.
How hard was this?
Easy Hard