Create twenty-olives-admire.md - #1
Open
Dargon789 wants to merge 431 commits into
Open
Conversation
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* fix(connectors): webpack dynamic import optional peer dep * chore: changeset
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* chore: bump viem * chore: tweaks
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* feat(connectors,core,react): tempo * chore: prool setup * chore: bump * chore: fix types * chore: fix build * refactor: pkg * chore: tweaks * chore: up * feat: hooks * chore: tweaks * chore: exports * test: wip * chore: finish adding files * chore: up * chore: tweaks * chore: snaps * fix: lint * chore: rm prool patch * refactor: move into wagmi * chore: up * chore: up vitest config * chore: fix vitest config * chore: tweaks * chore: changeset * docs: up * chore: tweaks * docs: up * ci: fix prerelease version format * docs: twoslash fix * docs: tweaks * docs: up * docs: inline twoslash * docs: up * docs: dead links * docs: tweaks twoslash * docs: reduce twoslash usage * docs: perf
* chore: version packages * chore: fix version --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Tom Meagher <tom@meagher.co>
* refactor(tempo): update actions/hooks * docs: cache * chore: snaps
* refactor(tempo): update actions/hooks * docs: cache * chore: snaps * refactor: rename actions/hooks dir
* chore: version packages * chore: up --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Tom Meagher <tom@meagher.co>
* fix(tempo): `webAuthn` connector tx preparation * chore: up * chore: tweak * chore: up --------- Co-authored-by: Tom Meagher <tom@meagher.co>
* resolve deprecation warnings * chore: format --------- Co-authored-by: Diego Ramos <54applets_hogs@icloud.com>
…vm#5137) * fix(docs): fix code annotation display in write-to-contract guide Wrap `Mint` in JSX expression so Shiki tokenizer correctly processes the `// [!code --]` annotation instead of rendering it as literal text. * add changeset * chore: up --------- Co-authored-by: tmm <tmm@tmm.dev>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* Fix optional connector dependency resolution * chore: up * Fix connector export generation in CI * Clean generated connector exports after build * Simplify connector export package names
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Fix Tempo zone mutation types
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* Fix Tempo transaction override types * chore: changeset
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* fix(tempo): support token amount return values * fix(tempo): require viem amount return support * fix(tempo): update viem amount test expectations * fix(tempo): add viem amount changeset * fix(tempo): split breaking changesets * fix(tempo): test prepared encrypted deposits * fix(tempo): document minimum viem version * fix(tempo): remove prepared encrypted deposit workaround * fix(tempo): clarify amount changeset * fix(tempo): pass through prepared encrypted deposits * fix(tempo): test prepared encrypted deposit passthrough * fix(ci): use Node 24 pnpm setup action * fix(tempo): skip flaky withdrawal sync tests * fix(tempo): mock zone token decimals
* chore: version packages * Fix connectors release version --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tmm <tmm@tmm.dev>
* fix(core): limit reverted transaction reason lookup * fix(core): tighten reverted receipt timeout handling * chore: tweaks --------- Co-authored-by: tmm <tmm@tmm.dev>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
) The `enabled` guard and the `queryFn` precondition in `getTransactionQueryOptions` tested the block transaction `index` for truthiness. Since `index` is the 0-based transaction index within a block, `index: 0` (the first transaction of a block) is a valid input but is falsy. Failing scenario: `getTransactionQueryOptions(config, { blockNumber, index: 0 })` computed `enabled: false`, so the query never fetched; and if forced to run, the `queryFn` guard threw "hash OR index AND blockHash, blockNumber, blockTag is required". Any other index (1, 2, ...) worked, masking the bug. viem's `getTransaction` fully supports `index: 0`. Fix by checking `index !== undefined` instead of truthiness in both guards. Adds a regression test.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…ce/getTransactionCount (wevm#5203) `blockNumber ? ... : ...` treats the valid genesis block `0n` as falsy, so the query silently fell back to `blockTag: 'latest'` and returned the wrong block. Co-authored-by: Kropiunig <kropiunig@users.noreply.github.com>
* fix(tempo): support latest zone API * feat(tempo): add wait for Tempo block * chore: split Tempo changesets * chore: snaps * ci: bump minimum viem version * chore: use released viem version * test: update for viem 2.55.7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.