sCrypt

1 program Added 2026-02-13T00:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 3b3607163e · authored 2026-02-13T15:22:45+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Scrypto (0.55)Transcrypt (0.43)Scrapscript (0.33)SGScript (0.29)SIMSCRIPT (0.27)

LLM-contributed programs

Counter Smart Contract

Provenance: commit 3b3607163e · authored 2026-02-13T15:22:45+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.ts · added: 2026-02-13T00:00:00Z
import { SmartContract, method, prop, assert } from 'scrypt-ts'

export class Counter extends SmartContract {
    @prop()
    count: bigint

    constructor(count: bigint) {
        super(...arguments)
        this.count = count
    }

    @method()
    public increment() {
        this.count++
        assert(this.buildStateOutput())
    }
}

Contribute — propose a file extension

Tell us where to find evidence about sCrypt (mapped to pl/scrypt). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/sCrypt/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Scryer Prolog Scrypto →