Skip to content

Instantly share code, notes, and snippets.

// Proof of Existence contract, version 1
contract ProofOfExistence {
// state
bytes32 proof;
// constructor
function ProofOfExistence() {
}
0xb0145Ae156D201d6E371d07265FE3C045071c967
@maraoz
maraoz / deploy.ts
Created July 11, 2022 20:14
Using WalletConnect from a hardhat script example
import { ethers } from "hardhat";
import { Signer } from "ethers";
import WalletConnectProvider from "@walletconnect/web3-provider";
async function deploy(deployer: Signer) {
const address = await deployer.getAddress();
console.log("Deploying contracts with the account:", address);
console.log("Account balance:", (await deployer.getBalance()).toString());

WhatsApp Composing Debounce Patch for OpenClaw

Version tested: OpenClaw 2026.3.1, Baileys 7.0.0-rc.9

Problem

OpenClaw's inbound debounce (default 6s) can't tell if the sender is still typing. Send "Hello", start writing a long follow-up → the bot responds to "Hello" alone before you finish.

Fix