@atbash/sdk 0.3.11-dev.15 → 0.3.11-dev.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/index.cjs +5 -5
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -193,15 +193,15 @@ async function shutdownTelemetry() {
|
|
|
193
193
|
var { createClient, encryption: encryption2, newSignatureProvider } = import_postchain_client2.default;
|
|
194
194
|
var DEFAULT_ENDPOINT = "https://chromia-verified-ai-dev-two.vercel.app";
|
|
195
195
|
var DEFAULT_CHROMIA_NODE_URLS = [
|
|
196
|
-
"https://
|
|
197
|
-
"https://
|
|
198
|
-
"https://
|
|
196
|
+
"https://node0.testnet.chromia.com:7740",
|
|
197
|
+
"https://node1.testnet.chromia.com:7740",
|
|
198
|
+
"https://node3.testnet.chromia.com:7740"
|
|
199
199
|
];
|
|
200
|
-
var DEFAULT_BLOCKCHAIN_RID = "
|
|
200
|
+
var DEFAULT_BLOCKCHAIN_RID = "02668C5218871F69A93CC0F7032DCFFE06EF0D35EF2F0B07A92A3D83A3F23A7D";
|
|
201
201
|
var DEFAULT_PRIVATE_NODE_URLS = [
|
|
202
202
|
"https://node0-pvn-testnet.dynamic.chromia.dev"
|
|
203
203
|
];
|
|
204
|
-
var DEFAULT_PRIVATE_BLOCKCHAIN_RID = "
|
|
204
|
+
var DEFAULT_PRIVATE_BLOCKCHAIN_RID = "2603569AE8DC3F254323F719C8D4347BBA964E874E781291F8474236BE8B6493";
|
|
205
205
|
var PUBLIC_CHAIN = {
|
|
206
206
|
network: "public",
|
|
207
207
|
blockchainRid: DEFAULT_BLOCKCHAIN_RID,
|
package/dist/index.d.cts
CHANGED
|
@@ -204,7 +204,7 @@ interface AtbashClientConfig {
|
|
|
204
204
|
|
|
205
205
|
declare const DEFAULT_ENDPOINT = "https://chromia-verified-ai-dev-two.vercel.app";
|
|
206
206
|
declare const DEFAULT_CHROMIA_NODE_URLS: string[];
|
|
207
|
-
declare const DEFAULT_BLOCKCHAIN_RID = "
|
|
207
|
+
declare const DEFAULT_BLOCKCHAIN_RID = "02668C5218871F69A93CC0F7032DCFFE06EF0D35EF2F0B07A92A3D83A3F23A7D";
|
|
208
208
|
declare function isValidPrivateKey(hex: string): boolean;
|
|
209
209
|
declare function derivePublicKey(privKeyHex: string): string;
|
|
210
210
|
declare function generateKeyPair(): {
|
package/dist/index.d.ts
CHANGED
|
@@ -204,7 +204,7 @@ interface AtbashClientConfig {
|
|
|
204
204
|
|
|
205
205
|
declare const DEFAULT_ENDPOINT = "https://chromia-verified-ai-dev-two.vercel.app";
|
|
206
206
|
declare const DEFAULT_CHROMIA_NODE_URLS: string[];
|
|
207
|
-
declare const DEFAULT_BLOCKCHAIN_RID = "
|
|
207
|
+
declare const DEFAULT_BLOCKCHAIN_RID = "02668C5218871F69A93CC0F7032DCFFE06EF0D35EF2F0B07A92A3D83A3F23A7D";
|
|
208
208
|
declare function isValidPrivateKey(hex: string): boolean;
|
|
209
209
|
declare function derivePublicKey(privKeyHex: string): string;
|
|
210
210
|
declare function generateKeyPair(): {
|
package/dist/index.js
CHANGED
|
@@ -117,15 +117,15 @@ async function shutdownTelemetry() {
|
|
|
117
117
|
var { createClient, encryption: encryption2, newSignatureProvider } = postchain2;
|
|
118
118
|
var DEFAULT_ENDPOINT = "https://chromia-verified-ai-dev-two.vercel.app";
|
|
119
119
|
var DEFAULT_CHROMIA_NODE_URLS = [
|
|
120
|
-
"https://
|
|
121
|
-
"https://
|
|
122
|
-
"https://
|
|
120
|
+
"https://node0.testnet.chromia.com:7740",
|
|
121
|
+
"https://node1.testnet.chromia.com:7740",
|
|
122
|
+
"https://node3.testnet.chromia.com:7740"
|
|
123
123
|
];
|
|
124
|
-
var DEFAULT_BLOCKCHAIN_RID = "
|
|
124
|
+
var DEFAULT_BLOCKCHAIN_RID = "02668C5218871F69A93CC0F7032DCFFE06EF0D35EF2F0B07A92A3D83A3F23A7D";
|
|
125
125
|
var DEFAULT_PRIVATE_NODE_URLS = [
|
|
126
126
|
"https://node0-pvn-testnet.dynamic.chromia.dev"
|
|
127
127
|
];
|
|
128
|
-
var DEFAULT_PRIVATE_BLOCKCHAIN_RID = "
|
|
128
|
+
var DEFAULT_PRIVATE_BLOCKCHAIN_RID = "2603569AE8DC3F254323F719C8D4347BBA964E874E781291F8474236BE8B6493";
|
|
129
129
|
var PUBLIC_CHAIN = {
|
|
130
130
|
network: "public",
|
|
131
131
|
blockchainRid: DEFAULT_BLOCKCHAIN_RID,
|
package/package.json
CHANGED