Top Positive Review

Write Bitcoin smart contracts in TypeScript, Go, Rust, or Solidity

Be the first to ask BSV Association something.
What do you think? ...

Earn XP for sharing
Sign in to get a personal referral link and earn XP every time someone visits through your link.
Super cool script compiler. Easy to use, hard to master!
We gotta start Somewhere! Glad you did!
A great leap forward in smart contract construction and validation.
One of the most powerful and flexible ways to build BSV compatible apps using TypeScript, Go, Rust or Solidity.
Super cool script compiler. Easy to use, hard to master!
pnpm add runar-lang runar-compiler runar-clipnpm add runar-lang runar-compiler runar-cliclass P2PKH extends SmartContract {
readonly pubKeyHash: Addr;
constructor(pubKeyHash: Addr) {
super(pubKeyHash);
this.pubKeyHash = pubKeyHash;
}
public unlock(sig: Sig, pubKey: PubKey) {
assert(hash160(pubKey) === this.pubKeyHash);
assert(checkSig(sig, pubKey));
}
}