@zoralabs/protocol-sdk 0.13.16 → 0.13.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zoralabs/protocol-sdk",
3
- "version": "0.13.16",
3
+ "version": "0.13.21",
4
4
  "repository": "https://github.com/ourzora/zora-protocol",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -16,10 +16,10 @@
16
16
  }
17
17
  },
18
18
  "dependencies": {
19
- "@zoralabs/protocol-deployments": "^0.7.0"
19
+ "@zoralabs/protocol-deployments": "^0.7.5"
20
20
  },
21
21
  "peerDependencies": {
22
- "viem": "^2.21.21",
22
+ "viem": "2.22.12",
23
23
  "abitype": "^1.0.2"
24
24
  },
25
25
  "devDependencies": {
@@ -289,7 +289,7 @@ describe("mint-client", () => {
289
289
  12 * 1000,
290
290
  );
291
291
 
292
- makeAnvilTest({
292
+ (makeAnvilTest({
293
293
  forkUrl: forkUrls.zoraSepolia,
294
294
  forkBlockNumber: 10970943,
295
295
  anvilChainId: zoraSepolia.id,
@@ -369,7 +369,7 @@ describe("mint-client", () => {
369
369
  expect(contract).toBeDefined();
370
370
  },
371
371
  12 * 1000,
372
- );
372
+ ));
373
373
 
374
374
  makeAnvilTest({
375
375
  forkUrl: forkUrls.zoraMainnet,
@@ -173,7 +173,7 @@ const zoraSepoliaAnvilTest = makeAnvilTest({
173
173
  });
174
174
 
175
175
  describe("ZoraCreator1155Preminter", () => {
176
- zoraSepoliaAnvilTest(
176
+ (zoraSepoliaAnvilTest(
177
177
  "can sign and mint multiple tokens",
178
178
  async ({ viemClients }) => {
179
179
  const {
@@ -705,5 +705,5 @@ describe("ZoraCreator1155Preminter", () => {
705
705
  },
706
706
  // 10 second timeout
707
707
  40 * 1000,
708
- );
708
+ ));
709
709
  });