Skip to content

Commit

Permalink
Update Umi to v0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lorisleiva committed Jun 19, 2023
1 parent 46d8f3c commit b563459
Show file tree
Hide file tree
Showing 63 changed files with 877 additions and 719 deletions.
6 changes: 3 additions & 3 deletions clients/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
"@msgpack/msgpack": "2.8.0"
},
"peerDependencies": {
"@metaplex-foundation/umi": "^0.8.0"
"@metaplex-foundation/umi": "^0.8.2"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@metaplex-foundation/mpl-token-metadata": "3.0.0-alpha.23",
"@metaplex-foundation/umi": "^0.8.0",
"@metaplex-foundation/umi-bundle-tests": "^0.8.0",
"@metaplex-foundation/umi": "^0.8.2",
"@metaplex-foundation/umi-bundle-tests": "^0.8.2",
"@solana/web3.js": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.46.1",
Expand Down
157 changes: 98 additions & 59 deletions clients/js/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions clients/js/src/createOrUpdateWithBufferV1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ export type CreateOrUpdateWithBufferV1Input = {
};

export const createOrUpdateWithBufferV1 = (
context: Pick<
Context,
'eddsa' | 'programs' | 'serializer' | 'payer' | 'transactions'
>,
context: Pick<Context, 'eddsa' | 'programs' | 'payer' | 'transactions'>,
input: CreateOrUpdateWithBufferV1Input
): TransactionBuilderGroup => {
const payer = input.payer ?? context.payer;
Expand All @@ -45,7 +42,7 @@ export const createOrUpdateWithBufferV1 = (
owner: payer.publicKey,
name: input.ruleSetName,
});
const serializedRevision = getRuleSetRevisionSerializer(context).serialize(
const serializedRevision = getRuleSetRevisionSerializer().serialize(
input.ruleSetRevision
);

Expand Down
Loading

0 comments on commit b563459

Please sign in to comment.