Skip to content

Releases: metaplex-foundation/umi

v0.8.4

30 Jun 14:38
fb86148
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

v0.8.3

23 Jun 13:47
f23582a
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

v0.8.2

19 Jun 17:21
cd243ca
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

Read more

v0.8.1

16 Jun 13:41
ed6ab10
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

v0.8.0

13 Jun 17:41
e344b23
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Minor Changes

  • #62 15392cd Thanks @lorisleiva! - Define PublicKeys as base58 strings

    See PR #62

    The PublicKey type is now a string instead of a { bytes: Uint8Array }. This was done to:

    • make the end-user API simpler.
    • make public keys "pure" values that can easily be shared and logged.
    • make Umi's API closer to the new web3.js library (See the @solana/keys package).

    If you are already using the publicKey helper to create public keys, your code should continue working as-is. Otherwise, you will need to pass in the base58 representation of your public keys instead of the previous object representation.

    // Before.
    const pubkeyA = publicKey('4HM9LW2rm3SR2ZdBiFK3D21ENmQWpqEJEhx1nfgcC3r9');
    const bytesOfPubkeyB = new Uint8Array(Array(32).fill(0));
    const pubkeyB = { bytes: bytesOfPubkeyB };
    
    // After.
    const pubkeyA = publicKey('4HM9LW2rm3SR2ZdBiFK3D21ENmQWpqEJEhx1nfgcC3r9'); // ✅ No changes needed.
    const bytesOfPubkeyB = new Uint8Array(Array(32).fill(0));
    const pubkeyB = publicKey(bytesOfPubkeyB); // 🚧 Use the `publicKey` helper to convert to a `PublicKey` string.
    const pubkeyB = publicKey('11111111111111111111111111111111'); // 🚧 Or pass in the base58 string directly.

    Note that the Pda type has also been adjusted since it can no longer extend the PublicKey type (as it is now a primitive value and not an object). Instead, the Pda type is now defined as the following tuple [PublicKey, number]. If you are using a Kinobi-generated library, they have been updated to ensure that you can pass either a PublicKey or a Pda in various generated method to avoid any breaking change. That being said, if you are using PDAs directly you may need to update your code as showed below:

    // Before.
    const pdaA = findSomePda(umi, seedsA);
    await fetchSomeAccount(umi, pdaA);
    
    const pdaB = findSomePda(umi, seedsB);
    await umi.rpc.getAccount(pdaB);
    
    // After.
    const pdaA = findSomePda(umi, seedsA);
    await fetchSomeAccount(umi, pdaA); // ✅ No changes needed as generated methods now accept PublicKey | Pda.
    
    const [publicKeyB] = findSomePda(umi, seedsB); // 🚧 Destructure the Pda to get the PublicKey...
    await umi.rpc.getAccount(publicKeyB); // ...because `getAccount` requires a `PublicKey`.

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Minor Changes

  • #62 15392cd Thanks @lorisleiva! - Use PublicKeys as base58 strings. See @metaplex-foundation/umi changelog for more details.

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Minor Changes

  • #62 15392cd Thanks @lorisleiva! - Use PublicKeys as base58 strings. See @metaplex-foundation/umi changelog for more details.

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Minor Changes

  • #62 15392cd Thanks @lorisleiva! - Use PublicKeys as base58 strings. See @metaplex-foundation/umi changelog for more details.

Patch Changes

@metaplex-foundation/[email protected]

Minor Changes

  • #62 15392cd Thanks @lorisleiva! - Use PublicKeys as base58 strings. See @metaplex-foundation/umi changelog for more details.

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Minor Changes

  • #62 15392cd Thanks @lorisleiva! - Use PublicKeys as base58 strings. See @metaplex-foundation/umi changelog for more details.

Patch Changes

Read more

v0.7.14

10 Jun 11:49
2f8091b
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

v0.7.13

06 Jun 09:40
f933bb1
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

v0.7.12

05 Jun 13:26
1c22ac3
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

  • 3ce198a Thanks @lorisleiva! - Update message to legacy before adapting to a legacy web3.js transaction

v0.7.11

05 Jun 11:36
a554872
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

v0.7.10

23 May 12:26
f10f9d9
Compare
Choose a tag to compare

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes

@metaplex-foundation/[email protected]

Patch Changes