chore: remove playwright cache and test-results from git tracking
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
As discussed in the Discord channel. Rationale: any 2 of the 4 treasury scope owners can already disburse funds out of the treasury at will. Requiring all 4 signatures merely to cancel a pending swap order — and return the locked ADA back to that same treasury — is therefore strictly more restrictive than the disburse permission and creates a denial-of-cancellation risk if any one owner is unavailable. Aligning the swap-cancel policy with the disburse threshold makes cancellation no easier than spending the returned funds, so the change does not weaken control. Concretely the SundaeSwap V3 order owner-policy datum flips from `AllOf [Signature(o1), Signature(o2), Signature(o3), Signature(o4)]` to `AtLeast 2 [Signature(o1), Signature(o2), Signature(o3), Signature(o4)]`: - constructor 1 (AllOf) → constructor 3 (AtLeast) - adds a leading `Int 2` quorum field before the signer list (SundaeSwap aicone multisig schema: 0=Signature, 1=AllOf, 2=AnyOf, 3=AtLeast, 4=Before, 5=After.) Past orders already on chain keep whatever policy they were created with; only future orders built by this script are affected. Signed-off-by: paolino <[email protected]>
Adds a new CIP proposing that the pledge bonus in the Reward Sharing Scheme be multiplied by pool utilization u = min(S, S_sat) / S_sat. The change removes the dilution regime that currently punishes delegators for arriving at high-pledge pools (per-delegator ROA becomes monotonically increasing in pool stake), strengthens Sybil resistance at the formula level (splitting an MPO's pledge across N pools reduces total bonus by ~1/N), and leaves a_0 untouched so the existing delegator-preference deterrent continues to operate. Folder contents: - README.md - the CIP itself. - CIP_UTILIZATION_SCALED_PLEDGE_BONUS.html - interactive simulator with four guided tutorials (math explainer, stakeholder tour, MPO tour, free exploration). Also published at https://johnshearing.github.io/pool_ranger/CIP_UTILIZATION_SCALED_PLEDGE_BONUS.html - utilization_scaled_pledge_bonus.md - full written derivation, numerical anchors, and risk analysis. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
* add gov module parameters to genesis * add min deposit and max deposit period * add voting period * add quorum, threshold, veto threshold * add expedited voting period, expedited threshold and expedited min deposit
Signed-off-by: cryptodj413 <[email protected]>
* add "08-wasm" to the `allowed_clients` list in the cardano entrypoint configuration.
* delete redundant ibcwasmtypes.modulename entries from module lists
* update `github.com/fatih/color` to v1.18.0 * update `github.com/golang/snappy` to a newer patch version
* update go module dependencies in `go.work.sum`
* update golangci-lint and its related packages * refactor go.mod and go.work.sum for dependency alignment * delete unused import in `app/app_config.go`