Skip to content

Create twenty-olives-admire.md - #1

Open
Dargon789 wants to merge 431 commits into
prgm-dev:mainfrom
Dargon789:patch-1
Open

Create twenty-olives-admire.md#1
Dargon789 wants to merge 431 commits into
prgm-dev:mainfrom
Dargon789:patch-1

Conversation

@Dargon789

Copy link
Copy Markdown

No description provided.

@Dargon789 Dargon789 left a comment

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Create twenty-olives-admire.md #1

tmm and others added 28 commits December 15, 2025 19:54
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>
tmm and others added 30 commits June 22, 2026 12:39
* 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.