#Agenda for Developer Meeting on 3/7/24
1 messages · Page 1 of 1 (latest)
- Frustrations with simulation limitations. Especially when various limits are exceeded. Errors just aren't helpful.
- Frustrations with the TS bindings. Missing events, simulated errors aren't complete. It's starting to feel over-engineered for a perfect case.
- Fun Soroban stats site from @ancient talon https://soroban-stats.litemint.com/
- Increased Soroban txns errors. Why? (possibly related to https://discord.com/channels/897514728459468821/1167891321546100756)
Thoughts and feedback on current limits, now that you all have had a chance to submit a few tx
- sorobill tool https://github.com/kalepail/sorobill
- post detailing how best to test contracts for cost efficiency https://kalepail.com/blockchain/show-me-the-bill-part-2
Putting you on the spot here @zealous solar https://twitter.com/alejoskyhitz/status/1765545467927048301 😉
Today, I worked on 🤓:
- Soroban Smart Contracts for Music NFTs!
I found myself hitting a wall with:
-
Wrapped Stellar classic assets and XLM
-
You can't use DEX offers with Soroban
-
Not being able to use Floats is kind of annoying
Thanks 🙏🏼@thorn raft we’re making good progress 🙃🤩 Soroban blows my mind with the possibilities it unlocks, will share once we have it on mainnet.
My question is why can't we query the RPC for TTL of a ledger entry directly using LedgerKeyTtl? Error code is -32602 and message ledger ttl entries cannot be queried directly.
Also, how does one query for instance ledger values? We currently have this durability enum in the XDR and if I query for instance ledger key with persistent I get no results.
enum ContractDataDurability {
TEMPORARY = 0,
PERSISTENT = 1
};