Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 105 additions & 0 deletions src/main/kotlin/org/agoranomic/assessor/decisions/9242.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
package org.agoranomic.assessor.decisions

import org.agoranomic.assessor.dsl.assessment
import org.agoranomic.assessor.dsl.receivers.ai
import org.agoranomic.assessor.dsl.receivers.coauthors
import org.agoranomic.assessor.dsl.receivers.quorum
import org.agoranomic.assessor.dsl.votes.complexityBonuses
import org.agoranomic.assessor.dsl.votes.onOrdinaryProposals
import org.agoranomic.assessor.lib.vote.VoteKind.FOR
import org.agoranomic.assessor.lib.vote.VoteKind.PRESENT

@UseAssessment
fun assessment9242() = assessment {
name("9242")
url("https://mailman.agoranomic.org/cgi-bin/mailman/private/agora-official/2025-August/018626.html")
quorum(5)

strengths {
default(3)
min(0)
max(15)

onOrdinaryProposals {
complexityBonuses {
maxBonus(3)

"Absurdor"(1) heldBy juan
"ADoP"(2) heldBy Murphy
"Arbitor"(2) heldBy Kate
"Archivist"(1) heldBy kiako
"Assessor"(3) heldBy Janet
"Collar"(1) heldBy Mischief
"Collector"(2) heldBy Mischief
"Distributor"(0) heldBy omd
"Herald"(2) heldBy snail
"Illuminator"(1) heldBy Mischief
"Notary"(2) heldBy Mischief
"Prime Minister"(0) heldBy Mischief
"Promotor"(3) heldBy Cosmo
"Referee"(2) heldBy ais523
"Registrar"(1) heldBy juan
"Rulekeepor"(3) heldBy Janet
"Speaker"(0) heldBy Kate
"Spendor"(1) heldBy Murphy
"Tailor"(1) heldBy Murphy
"Webmastor"(1) heldBy kiako
}
}
}

proposals(v4) {
proposal(9242) {
title("Currency clarification")
ai("3")
author(Janet)
coauthors(Kate)
democratic()

text(
"""
Amend Rule 2578 ("Fungibility") to read as follows:

{

Any two assets within a "fungible" class of assets (syn. "currency")
that have the same owner are considered equivalent for the purposes of
specification, granting, and transferring. The number of such assets an
entity owns is that entity's "balance" of that currency.

}


[Currently, the rule conflates a class of asset and an individual asset.
This fixes that issue and includes the "currency" definition from
Mischief's proposal.]"""
)
}
}

voting {
votes(Cosmo) {
FOR on 9242
}

votes(Murphy) {
FOR on 9242
}

votes(Mischief) {
FOR on 9242
}

votes(Janet) {
FOR on 9242
}

votes(juan) {
PRESENT on 9242
}

votes(Caramel) {
FOR on 9242
}
}
}
Loading