Skip to content

Releases: wevm/viem

[email protected]

22 Apr 10:27
5250d3e
Compare
Choose a tag to compare

Minor Changes

Patch Changes

[email protected]

21 Apr 21:42
Compare
Choose a tag to compare

[email protected]

17 Apr 08:21
Compare
Choose a tag to compare

Patch Changes

[email protected]

14 Apr 23:58
9933219
Compare
Choose a tag to compare

Minor Changes

Patch Changes

[email protected]

14 Apr 05:11
160e187
Compare
Choose a tag to compare

Patch Changes

[email protected]

14 Apr 02:52
Compare
Choose a tag to compare

[email protected]

10 Apr 22:52
6a1bce6
Compare
Choose a tag to compare

Patch Changes

[email protected]

08 Apr 06:58
3ef19ea
Compare
Choose a tag to compare

Patch Changes

[email protected]

07 Apr 21:57
Compare
Choose a tag to compare

Patch Changes

[email protected]

06 Apr 22:52
Compare
Choose a tag to compare

Minor Changes

  • #3542 082c3d0fcc2e376954116d380c65c6ac95293681 Thanks @jxom! - Breaking (Experimental): Updated EIP-5792 to the latest spec changes. The following APIs have been updated:

    getCallsStatus

    const result = await client.getCallsStatus({ id })
    //    ^?
          {
    +       atomic: boolean
    +       chainId: number
    +       id: string
            receipts: Receipt[]
    -       status: 'PENDING' | 'CONFIRMED'
    +       status: 'pending' | 'success' | 'failure' | undefined
    +       statusCode: number
    +       version: string
    }

    sendCalls

    const result = await client.sendCalls({ calls })
    //    ^?
    -     string
    +     { id: string, capabilities?: Capabilities }

    waitForCallsStatus

    const result = await client.waitForCallsStatus({ id })
    //    ^?
          {
    +       atomic: boolean
    +       chainId: number
    +       id: string
            receipts: Receipt[]
    -       status: 'PENDING' | 'CONFIRMED'
    +       status: 'pending' | 'success' | 'failure' | undefined
    +       statusCode: number
    +       version: string
    }

Patch Changes