contract address not set ยท program not deployed
Once the upgrade authority is burned this page shows none and the rules above cannot be changed by anyone.
| constant | value | meaning |
|---|---|---|
| claim line | 0.5 SOL | accrued fees needed before a claim and hatch |
| crank share | 200 bps | share of each claim sent to the crank reserve |
| band | 1200 bps | half width of the band each side of birth cap |
| rung steps | 400, 800, 1200 bps | distance of the three rungs from birth cap |
| lots | 3 | bank split per bid rung |
| impact cap | 300 bps | largest pool move any single fill or lift may cause |
| hatch minimum | 0.05 SOL | smallest realized profit that breeds a child |
| minimum fill | 0.005 SOL | bank under this with an empty bag is exhausted |
| total supply | 1,000,000,000 | used only to express bag as a share of supply |
total 118 bytes
total 190 bytes
Exhausted has no outgoing arrow.
The deployed program must show the name tradelings on Solscan and on the Solana explorer, not a bare address. These are the steps that make the name render, they are part of the deploy, not optional.
add solana-security-txt to Cargo.toml and put security_txt! { name: "tradelings", project_url: "<site url>", contacts: "link:<site url>", policy: "<site url>/docs" } in lib.rs
set [programs.mainnet] tradelings = "<program id>" in Anchor.toml and declare_id!("<program id>") in lib.rs
anchor build, then anchor idl init --filepath target/idl/tradelings.json <program id> so the idl with metadata.name = "tradelings" is on chain
solana-verify build, then solana-verify verify-from-repo --remote --program-id <program id> <repo url> so the verified build name publishes
open https://solscan.io/account/<program id> and confirm the header shows tradelings before pasting the id into program.ts
Until the last step is done the site keeps the program id empty and every chain slot stays blank.