@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.
- package/package.json +1 -1
- package/readme.md +3 -3
package/package.json
CHANGED
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...',
|
|
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...',
|
|
263
|
-
{ address: '0xdef...',
|
|
262
|
+
{ address: '0xabc...', amount: 5000 },
|
|
263
|
+
{ address: '0xdef...', amount: 5000 }
|
|
264
264
|
],
|
|
265
265
|
fee_receiver: '0x123...'
|
|
266
266
|
}
|