@longdotxyz/shared 0.0.41 → 0.0.42

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longdotxyz/shared",
3
- "version": "0.0.41",
3
+ "version": "0.0.42",
4
4
  "description": "Shared types and utilities for Long.xyz API",
5
5
  "files": [
6
6
  "dist"
package/readme.md CHANGED
@@ -115,7 +115,7 @@ const createResponse = await apiClient.auctions.createDynamicAuction({
115
115
  token_uri: 'ipfs://...',
116
116
  migration_duration: 86400,
117
117
  migration_beneficiaries: [
118
- { address: '0xabc...', percentage: 100 }
118
+ { address: '0xabc...', amount: 10000 }
119
119
  ],
120
120
  user_address: '0xdef...'
121
121
  }
@@ -259,8 +259,8 @@ const metadataUpload = await apiClient.ipfs.uploadMetadata({
259
259
  { label: 'Discord', url: 'https://discord.gg/mytoken' }
260
260
  ],
261
261
  vesting_recipients: [
262
- { address: '0xabc...', percentage: 50 },
263
- { address: '0xdef...', percentage: 50 }
262
+ { address: '0xabc...', amount: 5000 },
263
+ { address: '0xdef...', amount: 5000 }
264
264
  ],
265
265
  fee_receiver: '0x123...'
266
266
  }