@zoralabs/protocol-sdk 0.11.3 → 0.11.4

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @zoralabs/protocol-sdk@0.11.3 build /home/runner/work/zora-protocol-private/zora-protocol-private/packages/protocol-sdk
2
+ > @zoralabs/protocol-sdk@0.11.4 build /home/runner/work/zora-protocol-private/zora-protocol-private/packages/protocol-sdk
3
3
  > pnpm tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,9 +10,9 @@ CLI Target: es2021
10
10
  CLI Cleaning output folder
11
11
  CJS Build start
12
12
  ESM Build start
13
- ESM dist/index.js 218.03 KB
14
- ESM dist/index.js.map 452.53 KB
15
- ESM ⚡️ Build success in 335ms
16
13
  CJS dist/index.cjs 224.30 KB
17
14
  CJS dist/index.cjs.map 454.54 KB
18
- CJS ⚡️ Build success in 352ms
15
+ CJS ⚡️ Build success in 351ms
16
+ ESM dist/index.js 218.03 KB
17
+ ESM dist/index.js.map 452.53 KB
18
+ ESM ⚡️ Build success in 412ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @zoralabs/protocol-sdk
2
2
 
3
+ ## 0.11.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d6aa9a00]
8
+ - @zoralabs/protocol-deployments@0.3.6
9
+
3
10
  ## 0.11.3
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zoralabs/protocol-sdk",
3
- "version": "0.11.3",
3
+ "version": "0.11.4",
4
4
  "repository": "https://github.com/ourzora/zora-protocol",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "abitype": "^1.0.2",
20
- "@zoralabs/protocol-deployments": "^0.3.5"
20
+ "@zoralabs/protocol-deployments": "^0.3.6"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "viem": "^2.21.21"
@@ -176,7 +176,7 @@ describe("secondary", () => {
176
176
  });
177
177
 
178
178
  // now get the price ot buy on secondary
179
- const quantityToBuy = 1000n;
179
+ const quantityToBuy = 10n;
180
180
 
181
181
  const buyResult = await collectorClient.buy1155OnSecondary({
182
182
  account: collectorAccount,
@@ -215,7 +215,7 @@ describe("secondary", () => {
215
215
  expect(balance - balanceBefore).toBe(quantityToBuy);
216
216
 
217
217
  // now sell 10_000n tokens
218
- const quantityToSell = 10_000n;
218
+ const quantityToSell = 100n;
219
219
 
220
220
  const sellResult = await collectorClient.sell1155OnSecondary({
221
221
  account: collectorAccount,