@audius/sdk 1.0.16 → 1.0.17
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/dist/core.js +1 -1
- package/dist/core.js.map +1 -1
- package/dist/index.cjs.js +9 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +9 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/legacy.js +9 -6
- package/dist/legacy.js.map +1 -1
- package/dist/native-libs.js +9 -6
- package/dist/native-libs.js.map +1 -1
- package/dist/services/solana/padBNToUint8Array.d.ts +1 -1
- package/package.json +4 -4
- package/scripts/release.sh +13 -13
- package/src/services/schemaValidator/schemas/trackSchema.json +1 -1
- package/src/services/solana/padBNToUint8Array.ts +1 -1
package/dist/native-libs.js
CHANGED
|
@@ -514,9 +514,9 @@ if (typeof window !== 'undefined' && window && window.Web3) {
|
|
|
514
514
|
var LibsWeb3 = Web3;
|
|
515
515
|
|
|
516
516
|
var name = "@audius/sdk";
|
|
517
|
-
var version = "1.0.
|
|
517
|
+
var version = "1.0.17";
|
|
518
518
|
var audius = {
|
|
519
|
-
releaseSHA: "
|
|
519
|
+
releaseSHA: "9dc55f08221648a366e060d1f8ad53cd21a651a1"
|
|
520
520
|
};
|
|
521
521
|
var description = "";
|
|
522
522
|
var main = "dist/index.cjs.js";
|
|
@@ -647,7 +647,7 @@ var devDependencies = {
|
|
|
647
647
|
};
|
|
648
648
|
var repository = {
|
|
649
649
|
type: "git",
|
|
650
|
-
url: "git+https://github.com/AudiusProject/audius-protocol/tree/
|
|
650
|
+
url: "git+https://github.com/AudiusProject/audius-protocol/tree/main/libs"
|
|
651
651
|
};
|
|
652
652
|
var engines = {
|
|
653
653
|
node: ">=14.0.0"
|
|
@@ -657,7 +657,7 @@ var license = "Apache-2.0";
|
|
|
657
657
|
var bugs = {
|
|
658
658
|
url: "https://github.com/AudiusProject/audius-protocol/issues"
|
|
659
659
|
};
|
|
660
|
-
var homepage = "https://github.com/AudiusProject/audius-protocol/tree/
|
|
660
|
+
var homepage = "https://github.com/AudiusProject/audius-protocol/tree/main/libs";
|
|
661
661
|
var require$$0 = {
|
|
662
662
|
name: name,
|
|
663
663
|
version: version,
|
|
@@ -3169,7 +3169,10 @@ var definitions$2 = {
|
|
|
3169
3169
|
title: "CID"
|
|
3170
3170
|
},
|
|
3171
3171
|
PremiumConditions: {
|
|
3172
|
-
type:
|
|
3172
|
+
type: [
|
|
3173
|
+
"object",
|
|
3174
|
+
"null"
|
|
3175
|
+
],
|
|
3173
3176
|
additionalProperties: false,
|
|
3174
3177
|
properties: {
|
|
3175
3178
|
nft_collection: {
|
|
@@ -31448,7 +31451,7 @@ var EthContracts = /*#__PURE__*/function () {
|
|
|
31448
31451
|
/**
|
|
31449
31452
|
* Converts a BN to a Uint8Array of length 8, in little endian notation.
|
|
31450
31453
|
* Useful for when Rust wants a u64 (8 * 8) represented as a byte array.
|
|
31451
|
-
* Ex: https://github.com/AudiusProject/audius-protocol/blob/
|
|
31454
|
+
* Ex: https://github.com/AudiusProject/audius-protocol/blob/main/solana-programs/reward-manager/program/src/processor.rs#L389
|
|
31452
31455
|
*/
|
|
31453
31456
|
var padBNToUint8Array = function padBNToUint8Array(bn) {
|
|
31454
31457
|
return bn.toArray('le', 8);
|