https://github.com/Colorglyph/colorglyph-soroban
<aside> 🚧 Please be mindful v1 has not been audited, is highly experimental and I make absolutely no guarantees to anyone for anything should you choose to participate with this contract
</aside>
ffd2249433d021c6a215e08d21b834ee985e92b8e6dccb816849033fa4523ab9CAMCM4WTWRM2UZBI7CEQE4HI2PZEAE3ZBDDNJTI3RB6CIZRJKRGXEHWK9eb925d1fe9970fc0e2e93ad1b4c8c1e92136600f9aac84b89dda44814d188cb

| Cost | Colors |
|---|---|
| $20 | 256 |
5347af410646167f8b5b1514f6db164d6138a3709e4f583777dc8da22079cd66

| Cost | Colors |
|---|---|
| $2.5 | 13 |
f158fdc6c03f09523b05e7f4026d72f9bc5cdb6a53a28cc3719895d275383f31

| Cost | Colors |
|---|---|
| $2.5 | 13 |
initializeMethod to configure the initial settings for the Colorglyph protocol. All of these settings are currently configurable in the update method as well. These are all instance storage values.
OwnerAddress The Address which owns the protocol. Will be used to authenticate update and upgrade calls.TokenAddress The Stellar Asset Contract Address the protocol will default to using for fee payments to the protocol when running the colors_mine method.FeeAddress The Address fee payments will be sent to when calling colors_mine.MaxEntryLifetime Possibly not needed but for the few times I bump in the protocol I just bump to the max. This max may move around with protocol upgrades so configuring it may be importantMaxPaymentCount There’s some tricky unbounded stuff in several places in the protocol. Most haven’t really been accounted for. This one has and it’s used when running glyph_scrape. We’ll only scrape this many miners at a time as we progressively scrape a glyph. If you don’t know what scraping is or why it’s progressive read the glyph_scrape function details.MinterRoyaltyRate Glyph minters earn a royalty of sales whenever their glyph is sold. This is that percentage value.MinerRoyaltyRate Color miners earn a royalty whenever a glyph is sold containing their colors. This is that percentage value. Note this is a percentage of the percentage of colors their colors contributed to the whole glyph. e.g. Given a MinerRoyaltyRate of 3% and a glyph containing 50% of colors mined by MinerA which sells for 100 XLM the calculation would be 100 XLM x 50% x 3% = 1.5 XLM paid to MinerA.updateAllow optionally updating all of the above variables. This method is authenticated by the OwnerAddress.