Jason Schrader
Jason Schrader
After playing around I got it to work by: 1. Going to the home page (network was reset to mainnet) 2. Selecting the testnet network (shows testnet mode badge) 3....
Great! We've implemented something client side that downloads all TXs then allows filtering for CC transactions: https://github.com/boomcrypto/citycoins2/blob/main/src/store/citycoins.ts https://github.com/boomcrypto/citycoins2/blob/main/src/store/stacks.ts#L144 It's definitely useful! :)
Is using `print-` too confusing since we have `(print )` in Clarity? I like `read` or `get`. `get_` seems to be the common pattern rn fwiw: `get_assets_maps`, `get_contracts`. Also `_`...
checking in as SIP-021 is now merged, can this be closed now?
From @obycode - a test showing trait compatibility. https://github.com/obycode/trait-test
Expanding on this a bit: - For `ccd006-city-mining.clar` and `ccd007-city-stacking.clar` we're using the filter annotation on private functions. This is working with `callee_filter = true` set. - The majority of...
Yes, that is correct, the printed tuple pattern is reused across a few contracts and all have the same issue. The asserts line is not covered by tests but will...
We were able to work this out for now by extracting the block height from the print event, but it would still be nice to have guidance on how to...
This is what I have now for the config, iirc we added `singleThread: true` because we were having some tests run more than once but it wasn't clear which flags...
> This was the Vitest v0.x config schema (test.singleThread: bool). If you are using vitest v1.x (and you should), it won't have any effect. Hence why I sent you and...