@solana-mobile/dapp-store-publishing-tools 0.4.3 → 0.5.1
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/lib/CoreUtils.js
CHANGED
|
@@ -183,7 +183,7 @@ export var Constants = function Constants() {
|
|
|
183
183
|
"use strict";
|
|
184
184
|
_class_call_check(this, Constants);
|
|
185
185
|
};
|
|
186
|
-
_define_property(Constants, "PUBLISHING_SCHEMA_VER", "0.2.
|
|
186
|
+
_define_property(Constants, "PUBLISHING_SCHEMA_VER", "0.2.6");
|
|
187
187
|
export var truncateAddress = function(address) {
|
|
188
188
|
return "".concat(address.slice(0, 4), "...").concat(address.slice(address.length - 4, address.length));
|
|
189
189
|
};
|
|
@@ -172,6 +172,9 @@
|
|
|
172
172
|
"min_sdk": {
|
|
173
173
|
"type": "integer"
|
|
174
174
|
},
|
|
175
|
+
"cert_fingerprint": {
|
|
176
|
+
"type": "string"
|
|
177
|
+
},
|
|
175
178
|
"permissions": {
|
|
176
179
|
"type": "array",
|
|
177
180
|
"items": {
|
|
@@ -190,6 +193,7 @@
|
|
|
190
193
|
"version_code",
|
|
191
194
|
"version",
|
|
192
195
|
"min_sdk",
|
|
196
|
+
"cert_fingerprint",
|
|
193
197
|
"permissions",
|
|
194
198
|
"locales"
|
|
195
199
|
]
|
package/package.json
CHANGED
package/src/CoreUtils.ts
CHANGED
|
@@ -7,7 +7,7 @@ import type {
|
|
|
7
7
|
} from "@metaplex-foundation/js";
|
|
8
8
|
|
|
9
9
|
export class Constants {
|
|
10
|
-
static PUBLISHING_SCHEMA_VER = "0.2.
|
|
10
|
+
static PUBLISHING_SCHEMA_VER = "0.2.6";
|
|
11
11
|
}
|
|
12
12
|
export const truncateAddress = (address: string) => {
|
|
13
13
|
return `${address.slice(0, 4)}...${address.slice(
|
|
@@ -172,6 +172,9 @@
|
|
|
172
172
|
"min_sdk": {
|
|
173
173
|
"type": "integer"
|
|
174
174
|
},
|
|
175
|
+
"cert_fingerprint": {
|
|
176
|
+
"type": "string"
|
|
177
|
+
},
|
|
175
178
|
"permissions": {
|
|
176
179
|
"type": "array",
|
|
177
180
|
"items": {
|
|
@@ -190,6 +193,7 @@
|
|
|
190
193
|
"version_code",
|
|
191
194
|
"version",
|
|
192
195
|
"min_sdk",
|
|
196
|
+
"cert_fingerprint",
|
|
193
197
|
"permissions",
|
|
194
198
|
"locales"
|
|
195
199
|
]
|