Skip to content

Update dependency @cosmjs/amino to v0.39.0#68

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cosmjs-amino-0.x
Open

Update dependency @cosmjs/amino to v0.39.0#68
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cosmjs-amino-0.x

Conversation

@renovate

@renovate renovate Bot commented Jun 22, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@cosmjs/amino (source) 0.30.10.39.0 age confidence

Release Notes

cosmos/cosmjs (@​cosmjs/amino)

v0.39.0

Compare Source

Changed
  • all: Drop support for Node.js < 22. Node.js 20 reached end-of-life on 2025-04
    and the crypto stack (@​noble/*, @​scure/bip39 v2) relies on APIs that only
    ship in Node 22+. If you are still on an older Node, upgrade before taking
    this release.
  • @​cosmjs/crypto: Upgrade dependencies @​noble/ciphers, @​noble/curves,
    @​noble/hashes and @​scure/bip39 to v2. These upgrades are otherwise transparent
    to users of the high-level @cosmjs/crypto API, but direct consumers of the
    underlying libraries should consult their respective migration notes.
    (#​1935)
  • @​cosmjs/crypto: Use pure-JS implementation of Argon2id from @​noble/hashes
    instead of the WASM-based hash-wasm implementation. This removes the
    hash-wasm runtime dependency and makes Argon2id.execute fully
    synchronous-capable without requiring a WASM instantiation. (#​1938)
  • @​cosmjs/amino, @​cosmjs/proto-signing: Remove scream test around argon2 call in
    wallet serialization/deserialization which is not needed anymore after
    #​1938.
  • all: Bring back the classic main/types fields in package.json alongside
    the exports field so tools like bundlephobia that do not understand
    exports can still resolve the package entry points. (#​1944)
  • @​cosmjs/stargate: Change Account.accountNumber from number to bigint.
    Cosmos SDK 0.53+ can assign account numbers via GenerateID() that exceed
    Number.MAX_SAFE_INTEGER (2^53 − 1), which would silently lose precision when
    represented as a JavaScript number. Using bigint preserves the full 64-bit
    range. Breaking change for anyone reading accountNumber off Account
    (e.g. from StargateClient.getAccount()): you will typically need to either
    coerce back with Number(account.accountNumber) where you know the value is
    safe, or keep using bigint end-to-end. (#​1956)
  • @​cosmjs/amino: makeSignDoc now accepts number | string | bigint for
    accountNumber (previously number | string) and encodes the value via
    Uint64 instead of Uint53 so large account numbers no longer overflow when
    building a sign doc. (#​1956)
  • @​cosmjs/crypto: Deprecate Argon2id/Argon2idOptions/isArgon2idOptions
    because it will likely be removed when wallet serialization/deserialization is
    removed.
  • @​cosmjs/faucet: Upgrade koa to ^3.1.2 to address the host header injection
    advisory GHSA-7gcc-r8m5-44qm. Same-major bump, no API changes. (#​1959)
  • @​cosmjs/proto-signing: Upgrade protobufjs to ^7.5.5 to address the arbitrary
    code execution advisory GHSA-xq3m-2v4x-88gg. Same-major bump, no API changes.
    (#​1959)

v0.38.1

Compare Source

v0.38.0

Compare Source

Added
  • @​cosmjs/encoding: Add fixUint8Array which takes an
    Uint8Array<ArrayBufferLike> and returns Uint8Array<ArrayBuffer>. This can
    be used in cases where a data source returns an Uint8Array without
    specifying the buffer type but you need an ArrayBuffer. Internally it might
    perform a copy but in the vast majority of cases it will just change the type
    after ensuring ArrayBuffer is used. (#​1883)
  • @​cosmjs/math: Add Decimal.adjustFractionalDigits which allows you to change
    the fractional digits of a Decimal without changing its value. (#​1916)
  • @​cosmjs/stargate, @​cosmjs/cosmwasm-stargate: Add option to configure dynamic
    gas price in SigningCosmWasmClientOptions and SigningStargateClientOptions
    using the DynamicGasPriceConfig interface for gasPrice. This then uses
    Osmosis' EIP-1559 implementation or the Skip fee market module to get the gas
    price from the chain. (#​1926)
  • @​cosmjs/cosmwasm-stargate: Add the ability to specify a custom account parser
    for CosmWasmClient. (#​1928)
  • Add support for Cosmos EVM key handling and signing. (#​1932)
  • @​cosmjs/proto-signing: Add support for ts-proto v2 through the newly added
    TsProto2GeneratedType interface. As long as the existing
    TsProtoGeneratedType is not removed, ts-proto v1 remains supported.
    (#​1613)
Changed
  • all: return Uint8Array<ArrayBuffer> instead of
    Uint8Array = Uint8Array<ArrayBufferLike> whenever CosmJS creates binary data
    for users. This allows users to stick it into APIs that require ArrayBuffer
    such as many APIs from Subtle crypto. You can still assign
    Uint8Array<ArrayBuffer> to any Uint8Array in an existing codebase like
    this:

    const myVar: Uint8Array = fromHex("aabb");

    That's the easy way and probably good for many use cases. However, this way
    you lose information which buffer type is in use and you cannot trivially pass
    it to an API requiring Uint8Array<ArrayBuffer> later on.

    The other option is to preserve the information you are getting from CosmJS by
    using Uint8Array<ArrayBuffer> too:

    const myVar: Uint8Array<ArrayBuffer> = fromHex("aabb");
    
    // or inferred
    const myVar = fromHex("aabb"); // Uint8Array<ArrayBuffer>

    This change requires users to use TypeScript 5.7 or newer. (#​1883)

  • all: Migrate from readonly-date to readonly-date-esm ^2 which is an ESM
    package but otherwise equal to the previous version. If you are using
    ReadonlyDate in your codebase it is recommended to also update like this to
    avoid type mismatches:

    -import { ReadonlyDate } from "readonly-date";
    +import { ReadonlyDate } from "readonly-date-esm";
  • @​cosmjs/tendermint-rpc: Remove union type TendermintClient. Use
    CometClient or just Tendermint37Client instead. (#​1866)

  • @​cosmjs/tendermint-rpc: Remove isTendermint34Client. Remove
    Tendermint34Client from CometClient union type. Remove
    Tendermint34Client. Remove module tendermint34. (#​1866)

  • @​cosmjs/tendermint-rpc: Remove top-level exports broadcastTxCommitSuccess,
    broadcastTxSyncSuccess, AbciInfoRequest, AbciInfoResponse,
    AbciQueryParams, AbciQueryRequest, AbciQueryResponse, Attribute,
    Block, BlockchainRequest, BlockchainResponse, BlockGossipParams,
    BlockId, BlockMeta, BlockParams, BlockRequest, BlockResponse,
    BlockResultsRequest, BlockResultsResponse, BroadcastTxAsyncResponse,
    BroadcastTxCommitResponse, BroadcastTxParams, BroadcastTxRequest,
    BroadcastTxSyncResponse, Commit, CommitRequest, CommitResponse,
    ConsensusParams, Event, Evidence, EvidenceParams, GenesisRequest,
    GenesisResponse, Header, HealthRequest, HealthResponse, Method,
    NewBlockEvent, NewBlockHeaderEvent, NodeInfo,
    NumUnconfirmedTxsRequest, NumUnconfirmedTxsResponse, ProofOp,
    QueryProof, QueryTag, Request, Response, StatusRequest,
    StatusResponse, SubscriptionEventType, SyncInfo, TxData, TxEvent,
    TxParams, TxProof, TxRequest, TxResponse, TxSearchParams,
    TxSearchRequest, TxSearchResponse, TxSizeParams, Validator,
    ValidatorsParams, ValidatorsRequest, ValidatorsResponse, Version,
    Vote, VoteType which all came from tendermint34.

    If you need any of those you can import them from a version specific module,
    such as comet1.Version or

    import { comet1, comet38, tendermint37 } from "@&#8203;cosmjs/tendermint-rpc";
    
    function convertEvent(e: tendermint37.Event | comet38.Event | comet1.Event);

    in case you want to support multiple versions. (#​1866)

  • @​cosmjs/crypto: Make
    Secp256k1.verifySignature/.createSignature/.makeKeypair synchronous and
    let them not return a Promise.

  • @​cosmjs/cosmwasm-stargate: Rename package to @​cosmjs/cosmwasm. (#​1903)

  • @​cosmjs/math: Decimal.fromAtomics now accepts atomics as string | bigint
    such that you can pass in BigInts directly. This is more performant than going
    through strings in cases where you have a BitInt already. Strings remain
    supported for convenient usage with coins.

  • @​cosmjs/math: Decimal now supports negative values. (#​1930)

  • @​cosmjs/proto-signing: Remove isTelescopeGeneratedType,
    isTsProtoGeneratedType and isPbjsGeneratedType because they are
    unreliable. E.g. the typeUrl in Telescope may or may not exist depending on
    the configuration. The newly added hasFromPartial/hasCreate allow you to
    check for TelescopeGeneratedType | TsProtoGeneratedType/PbjsGeneratedType
    such that you can create instanes through
    MyMessage.fromPartial()/MyMessage.create().

v0.37.1

Compare Source

v0.37.0

Compare Source

Added
  • @​cosmjs/tendermint-rpc: Add dedicated Comet1Client for compatibility with
    CometBFT 1.x RPC. The module comet1 contains all CometBFT 1.x specific
    types. connectComet now uses this client automatically when connecting to a
    1.x RPC backend. Before CosmJS 0.37 the Comet38Client was used for both 0.38
    and 1.0 backends. However it turned out that there are breaking API changes
    between those versions. (#​1787)
Changed
  • all: The package.jsons now all use the modern exports field instead of the
    classic main/types to define the entry points. This ensures only symbols
    from the top level module can be imported (like
    import { toBech32 } from "@&#8203;cosmjs/encoding"). Other import paths like
    import { toBech32 } from "@&#8203;cosmjs/encoding/src/bech32" are not allowed
    anymore. As all public interfaces used to be exported from the top level for a
    long time, this should not affect most users. However, if you accidentally
    imported a subpath before you will get an error now. This can typically be
    resolved like this:

    -import { toBech32 } from "@&#8203;cosmjs/encoding/src/bech32"
    +import { toBech32 } from "@&#8203;cosmjs/encoding"

    If you are using the TypeScript setting moduleResolution with value
    node10/node/classic in your project, this will lead to errors. Please
    consider upgrading to a supported value like node16 or nodenext.
    moduleResolution is implied by module if unset. See
    https://www.typescriptlang.org/tsconfig/#moduleResolution and
    https://www.typescriptlang.org/docs/handbook/modules/reference.html#the-moduleresolution-compiler-option.
    If this is not possible, please comment in
    #​1917.

    (#​1819)

  • Replace bech32 implementation by @​scure/base. This changes a bunch of error
    messages but is otherwise not breaking user code. (#​1825)

  • Replace bip39 implementation by @​scure/bip39. This changes a bunch of error
    messages but is otherwise not breaking user code. (#​1843)

  • @​cosmjs/tendermint-rpc: connectComet now returns a Comet1Client when a
    CometBFT 1.x RPC is found. CometClient now includes Comet1Client.
    (#​1827)

  • @​cosmjs/cosmwasm-stargate: use native compression APIs instead of pako for
    gzip. (#​1764)

Deprecated
  • The use of encrypted wallet storage is deprecated. In particular this means:

    • Secp256k1HdWallet.serialize/.serializeWithEncryptionKey (since 0.36.0)
    • Secp256k1HdWallet.deserialize/.deserializeWithEncryptionKey (since
      0.36.0)
    • DirectSecp256k1HdWallet.serialize/.serializeWithEncryptionKey (since
      0.36.0)
    • DirectSecp256k1HdWallet.deserialize/.deserializeWithEncryptionKey (since
      0.36.0)
    • executeKdf from @​cosmjs/amino and @​cosmjs/proto-signing (since
      0.36.0/0.37.0)

    If you are using any of those methods, please comment at
    #​1796.

  • @​cosmjs/tendermint-rpc: Deprecate the Tendermint/CometBFT 0.34 client
    (isTendermint34Client/Tendermint34Client as well as all related types).
    This will be removed in the next version of CosmJS:
    #​1866

v0.36.2

Compare Source

Fixed
  • @​cosmjs/crypto: Set min version of @​noble/hashes to 1.8.0 to avoid errors like

    Cannot find module '@​noble/hashes/legacy' from
    '../../node_modules/@​cosmjs/crypto/build/ripemd.js'

    We use @noble/hashes/legacy for ripemd which is only available in ^1.8.0.

v0.36.1

Compare Source

Fixed
  • @​cosmjs/crypto: Fix import path of @​noble/hashes to avoid bundling issue

    Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath './sha2.js' is not
    defined by "exports" in …

    In @​noble/hashes version >=1.0.0 <1.8.0 the import paths must not contain the
    .js suffix. This issue was introduced in CosmJS 0.35.0 but only affects users
    who have @​noble/hashes lower than 1.8.0 in their lockfile. (#​1817)

v0.36.0

Compare Source

Changed
Deprecated
  • The use of encrypted wallet storage is deprecated. In particular this means:

    • Secp256k1HdWallet.serialize/.serializeWithEncryptionKey
    • Secp256k1HdWallet.deserialize/.deserializeWithEncryptionKey
    • DirectSecp256k1HdWallet.serialize/.serializeWithEncryptionKey
    • DirectSecp256k1HdWallet.deserialize/.deserializeWithEncryptionKey

    If you are using any of those methods, please comment at
    #​1796.

    A scream test was established which slows down the key derivation function a
    lot. This simulates the use of a pure-JS implementation of Argon2 which we
    will use on one of the next releases. If this causes problems for your app,
    switch back to ^0.35.0 and comment in the issue.

    (#​1797)

v0.35.2

Compare Source

Fixed
  • @​cosmjs/crypto: Set min version of @​noble/hashes to 1.8.0 to avoid errors like

    Cannot find module '@​noble/hashes/legacy.js' from
    '../../node_modules/@​cosmjs/crypto/build/ripemd.js'

    We use @noble/hashes/legacy.js for ripemd which is only available in ^1.8.0.

v0.35.1

Compare Source

Deprecated
  • The use of encrypted wallet storage is deprecated. In particular this means:

    • Secp256k1HdWallet.serialize/.serializeWithEncryptionKey
    • Secp256k1HdWallet.deserialize/.deserializeWithEncryptionKey
    • DirectSecp256k1HdWallet.serialize/.serializeWithEncryptionKey
    • DirectSecp256k1HdWallet.deserialize/.deserializeWithEncryptionKey
    • executeKdf from @​cosmjs/amino and @​cosmjs/proto-signing

    If you are using any of those methods, please comment at
    #​1796.

v0.35.0

Compare Source

Added
Changed

v0.34.1

Compare Source

Deprecated
  • The use of encrypted wallet storage is deprecated. In particular this means:

    • Secp256k1HdWallet.serialize/.serializeWithEncryptionKey
    • Secp256k1HdWallet.deserialize/.deserializeWithEncryptionKey
    • DirectSecp256k1HdWallet.serialize/.serializeWithEncryptionKey
    • DirectSecp256k1HdWallet.deserialize/.deserializeWithEncryptionKey
    • executeKdf from @​cosmjs/amino and @​cosmjs/proto-signing

    If you are using any of those methods, please comment at
    #​1796.

v0.34.0

Compare Source

Fixed
Added
Changed
  • Replace axios with cross-fetch (#​1645)
  • Fix block events in CometBFT 0.38 API (begin_block_events/end_block_events
    -> finalize_block_events) in RpcBlockResultsResponse and
    BlockResultsResponse (#​1612)
  • @​cosmjs/crypto: Migrate from elliptic to noble-curves (#​1272).

v0.33.1

Compare Source

Fixed

v0.33.0

Compare Source

Changed

v0.32.4

Compare Source

Fixed
Added
Changed

v0.32.3

Compare Source

Changed
  • @​cosmjs/amino: Add IBC denom support to parseCoins and use the same
    implementation in all those imports:

    import { parseCoins } from "@&#8203;cosmjs/proto-signing";
    // equals
    import { parseCoins } from "@&#8203;cosmjs/stargate";
    // equals
    import { parseCoins } from "@&#8203;cosmjs/amino";
  • @​cosmjs/stargate: Let parseRawLog gracefully handle empty strings to better
    support Cosmos SDK 0.50 inputs. (#​1564)

Fixed

v0.32.2

Compare Source

Fixed
Changed
  • @​cosmjs/tendermint-rpc: Require protocol to be set in endpoint URLs (https://,
    http://, wss:// or ws://). Otherwise an error is raised instead of falling
    back to ws://. (#​1527)

v0.32.1

Compare Source

Fixed

v0.32.0

Compare Source

Added
Fixed
Changed
  • all: Upgrade cosmjs-types to 0.9.0. This makes a few fields non-optional. It
    changes all 64 bit int fields from type long to bigint. As part of the
    upgrade, the types do not require the long and protobufjs anymore.
    (#​1484)
  • all: gasWanted/gasUsed fields were changed from type number to bigint
    to supported cases where users put very high gas values in there (#​1465).
  • Drop support for Node.js 14 and add support for Node.js 20. (#​1421)
  • @​cosmjs/tendermint-rpc: Remove Adaptor abstractions which are not needed
    anymore by having a dedicated client for each backend.
  • @​cosmjs/tendermint-rpc: Add
    CometClient = Tendermint34Client | Tendermint37Client | Comet38Client and
    connectComet for auto-detecting the right client for a provided endpoint.
  • @​cosmjs/stargate: Let SigningStargateClient.createWithSigner and
    StargateClient.create take a CometClient argument, adding support for
    Comet38Client. The auto-detection in
    SigningStargateClient.connectWithSigner and StargateClient.connect now
    supports CometBFT 0.38. Rename
    StargateClient.getTmClient/.forceGetTmClient to
    .getCometClient/.forceGetCometClient.
  • @​cosmjs/cosmwasm-stargate: Let SigningCosmWasmClient.createWithSigner and
    CosmWasmClient.create take a CometClient argument, adding support for
    Comet38Client. The auto-detection in
    SigningCosmWasmClient.connectWithSigner and CosmWasmClient.connect now
    supports CometBFT 0.38. Rename
    CosmWasmClient.getTmClient/.forceGetTmClient to
    .getCometClient/.forceGetCometClient.
  • @​cosmjs/stargate: Remove interfaces SearchBySentFromOrToQuery and
    SearchByHeightQuery which became obsolete with the searchTx change in
    0.31.0.
Deprecated
  • @​cosmjs/tendermint-rpc: CometClient should be used instead of
    TendermintClient.
  • @​cosmjs/stargate: Deprecate SigningStargateClient.sendIbcTokens. Please use
    signAndBroadcast + MsgTransferEncodeObject instead. (#​1493)
  • @​cosmjs/stargate: Deprecate IndexedTx.rawLog and DeliverTxResponse.rawLog
    because those fields are unset from Cosmos SDK 0.50 onwards (see
    here).

v0.31.3

Compare Source

Fixed

v0.31.2

Compare Source

Fixed

v0.31.1

Compare Source

Fixed
Changed

v0.31.0

Compare Source

Fixed
Added
Changed

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested review from a team and webbushka as code owners June 22, 2023 16:22
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from f5110bf to b7c09be Compare August 21, 2023 11:09
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.31.0 Update dependency @cosmjs/amino to v0.31.1 Aug 21, 2023
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from b7c09be to e1577be Compare October 24, 2023 19:03
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.31.1 Update dependency @cosmjs/amino to v0.31.2 Oct 24, 2023
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.31.2 Update dependency @cosmjs/amino to v0.31.3 Oct 25, 2023
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from e1577be to a983a2c Compare October 25, 2023 13:37
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.31.3 Update dependency @cosmjs/amino to v0.32.0 Nov 23, 2023
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from a983a2c to b76f678 Compare November 23, 2023 14:13
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.32.0 Update dependency @cosmjs/amino to v0.32.1 Dec 4, 2023
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from b76f678 to 11fbf76 Compare December 4, 2023 17:24
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 11fbf76 to be8b85a Compare December 19, 2023 17:14
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.32.1 Update dependency @cosmjs/amino to v0.32.2 Dec 19, 2023
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from be8b85a to d85fe1a Compare March 8, 2024 16:31
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.32.2 Update dependency @cosmjs/amino to v0.32.3 Mar 8, 2024
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from d85fe1a to e289f08 Compare May 21, 2024 19:15
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from e289f08 to a2bbf29 Compare June 26, 2024 09:48
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.32.3 Update dependency @cosmjs/amino to v0.32.4 Jun 26, 2024
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.32.4 Update dependency @cosmjs/amino to v0.33.0 Jan 15, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from a2bbf29 to 868eb5f Compare January 15, 2025 14:57
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 868eb5f to 86b26e2 Compare March 13, 2025 19:33
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.33.0 Update dependency @cosmjs/amino to v0.33.1 Mar 13, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 86b26e2 to b3f5a59 Compare July 11, 2025 17:00
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.33.1 Update dependency @cosmjs/amino to v0.34.0 Jul 11, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from b3f5a59 to 4ca7b78 Compare August 13, 2025 16:57
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.34.0 Update dependency @cosmjs/amino to v0.35.0 Aug 13, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 4ca7b78 to 2adf3eb Compare August 14, 2025 13:29
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.35.0 Update dependency @cosmjs/amino to v0.36.0 Aug 14, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 2adf3eb to 9a1d44f Compare October 2, 2025 15:23
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.36.0 Update dependency @cosmjs/amino to v0.36.1 Oct 2, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 9a1d44f to b6ce645 Compare October 6, 2025 18:47
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from b6ce645 to 3d60943 Compare October 24, 2025 08:10
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.36.1 Update dependency @cosmjs/amino to v0.36.2 Oct 24, 2025
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.36.2 Update dependency @cosmjs/amino to v0.37.0 Oct 29, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 3d60943 to 635c95b Compare October 29, 2025 14:55
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 635c95b to 3bd715d Compare December 30, 2025 13:03
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.37.0 Update dependency @cosmjs/amino to v0.38.0 Dec 30, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 3bd715d to 660dd1a Compare December 31, 2025 17:14
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.38.0 Update dependency @cosmjs/amino to v0.38.1 Dec 31, 2025
@renovate renovate Bot force-pushed the renovate/cosmjs-amino-0.x branch from 660dd1a to b52ca9b Compare May 4, 2026 18:52
@renovate renovate Bot changed the title Update dependency @cosmjs/amino to v0.38.1 Update dependency @cosmjs/amino to v0.39.0 May 4, 2026
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.

0 participants