Skip to content

Releases: wevm/ox

ox@1.7.4

Choose a tag to compare

@github-actions github-actions released this 31 Aug 05:04
2f68aa6

Patch Changes

  • #425 5e3c201 Thanks @jxom! - Added MultisigOperation.serializeKeyAuthorization for attaching selected owner approvals to a key authorization.

    const authorization = MultisigOperation.serializeKeyAuthorization(
      keyAuthorization,
      {
        account,
        approvals: selection.selectedApprovals,
        config,
      },
    );
  • #428 a4e84db Thanks @jxom! - Aligned Tempo multisig simulation requests and RPC signatures with T12's encoded wire formats.

ox@0.14.44

Choose a tag to compare

@github-actions github-actions released this 31 Aug 22:04
aaf9670

Patch Changes

  • #430 1c78a92 Thanks @jxom! - Updated Tempo multisig account derivation to use the canonical CREATE2 recovery address.

ox@0.14.43

Choose a tag to compare

@github-actions github-actions released this 31 Aug 04:59
3facd09

Patch Changes

  • #427 7cc9524 Thanks @jxom! - Aligned Tempo multisig simulation requests and RPC signatures with T12's encoded wire formats.

ox@0.14.42

Choose a tag to compare

@github-actions github-actions released this 27 Aug 07:03
c2b128f

Patch Changes

  • #424 c26d366 Thanks @jxom! - Added MultisigOperation.serializeKeyAuthorization for attaching selected owner approvals to a key authorization.

    const authorization = MultisigOperation.serializeKeyAuthorization(
      keyAuthorization,
      {
        account,
        approvals: selection.selectedApprovals,
        config,
      },
    );
  • #421 50bf1fe Thanks @jxom! - Added multisig configuration lookup to the Tempo RPC schema.

ox@0.14.41

Choose a tag to compare

@github-actions github-actions released this 27 Aug 00:38
acc96b4

Patch Changes

  • #417 1335956 Thanks @jxom! - Migrated multisig operations to configuration witnesses.

ox@1.7.2

Choose a tag to compare

@github-actions github-actions released this 26 Aug 05:41
13bcd7e

Patch Changes

  • #407 e01d0bb Thanks @jxom! - Updated Tempo multisig operations, configuration witnesses, RPC types, approval selection, transaction serialization, fee-payer envelope handling, and TIP-1061 validation.

    import { MultisigOperation } from "ox/tempo";
    
    const selection = await MultisigOperation.selectApprovals(options);
    const transaction = MultisigOperation.serializeTransaction(operation, {
      approvals: selection.selectedApprovals,
    });

ox@0.14.40

Choose a tag to compare

@github-actions github-actions released this 26 Aug 05:33
cbb436f

Patch Changes

  • #415 e4ce887 Thanks @jxom! - Updated Tempo multisig configuration witnesses, simulation requests, RPC conversion, approval limits, key-data hints, and version validation for TIP-1061.

ox@0.14.39

Choose a tag to compare

@github-actions github-actions released this 26 Aug 02:07
819a859

Patch Changes

  • #412 200d9a7 Thanks @jxom! - Changed native multisig configuration and signature APIs to require complete TIP-1061 witnesses with a version.

    const config = MultisigConfig.from({
      owners,
      threshold: 2,
      version: 1,
    });

ox@0.14.38

Choose a tag to compare

@github-actions github-actions released this 24 Aug 07:19
6c9682c

Patch Changes

  • #409 8f25490 Thanks @jxom! - Added multisig operation hashing, approval selection, and transaction serialization helpers.

    import { MultisigOperation } from "ox/tempo";
    
    const selection = await MultisigOperation.selectApprovals(options);
    const transaction = MultisigOperation.serializeTransaction(operation, {
      approvals: selection.selectedApprovals,
    });

ox@0.14.37

Choose a tag to compare

@github-actions github-actions released this 24 Aug 04:20
83dfdce

Patch Changes

  • #404 2398cf2 Thanks @jxom! - Added MultisigOperation types, validation, and JSON-RPC conversion utilities.