Archetype
1 program
Added 2026-02-11T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 2bc2ccf1e2 · authored 2026-02-11T13:40:34+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple Token Contract
Provenance: commit 2bc2ccf1e2 · authored 2026-02-11T13:40:34+01:00 · agent claude-code · model sonnet · WebSearch disabled
archetype token
variable totalSupply : nat = 0
variable decimals : nat = 8
asset ledger identified by holder {
holder : address;
tokens : nat = 0;
}
entry transfer(dest : address, value : nat) {
require {
r1: ledger[caller].tokens >= value otherwise "NotEnoughTokens";
}
effect {
ledger.update(caller, { tokens -= value });
ledger.addupdate(dest, { tokens += value });
}
}
entry mint(dest : address, value : nat) {
called by owner
effect {
totalSupply += value;
ledger.addupdate(dest, { tokens += value });
}
}