emblem-vault-sdk 1.12.7 → 2.0.0

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/bundle.js CHANGED
@@ -711421,7 +711421,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
711421
711421
  const bignumber_1 = require("@ethersproject/bignumber");
711422
711422
  const utils_1 = require("./utils");
711423
711423
  const derive_1 = require("./derive");
711424
- const SDK_VERSION = '1.12.7';
711424
+ const SDK_VERSION = '2.0.0';
711425
711425
  class EmblemVaultSDK {
711426
711426
  constructor(apiKey, baseUrl) {
711427
711427
  this.apiKey = apiKey;
@@ -711431,7 +711431,7 @@ class EmblemVaultSDK {
711431
711431
  }
711432
711432
  this.v1Url = 'https://api2.emblemvault.io';
711433
711433
  this.baseUrl = baseUrl || 'https://v2.emblemvault.io';
711434
- this.v3Url = 'https://emblemvault-io-v3-6156a7b1ac82.herokuapp.com';
711434
+ this.v3Url = 'https://v3.emblemvault.io';
711435
711435
  this.sigUrl = 'https://tor-us-signer-coval.vercel.app';
711436
711436
  }
711437
711437
  // Example method structure
package/dist/index.js CHANGED
@@ -35,7 +35,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
35
35
  const bignumber_1 = require("@ethersproject/bignumber");
36
36
  const utils_1 = require("./utils");
37
37
  const derive_1 = require("./derive");
38
- const SDK_VERSION = '1.12.7';
38
+ const SDK_VERSION = '2.0.0';
39
39
  class EmblemVaultSDK {
40
40
  constructor(apiKey, baseUrl) {
41
41
  this.apiKey = apiKey;
@@ -45,7 +45,7 @@ class EmblemVaultSDK {
45
45
  }
46
46
  this.v1Url = 'https://api2.emblemvault.io';
47
47
  this.baseUrl = baseUrl || 'https://v2.emblemvault.io';
48
- this.v3Url = 'https://emblemvault-io-v3-6156a7b1ac82.herokuapp.com';
48
+ this.v3Url = 'https://v3.emblemvault.io';
49
49
  this.sigUrl = 'https://tor-us-signer-coval.vercel.app';
50
50
  }
51
51
  // Example method structure
package/docs/bundle.js CHANGED
@@ -711421,7 +711421,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
711421
711421
  const bignumber_1 = require("@ethersproject/bignumber");
711422
711422
  const utils_1 = require("./utils");
711423
711423
  const derive_1 = require("./derive");
711424
- const SDK_VERSION = '1.12.7';
711424
+ const SDK_VERSION = '2.0.0';
711425
711425
  class EmblemVaultSDK {
711426
711426
  constructor(apiKey, baseUrl) {
711427
711427
  this.apiKey = apiKey;
@@ -711431,7 +711431,7 @@ class EmblemVaultSDK {
711431
711431
  }
711432
711432
  this.v1Url = 'https://api2.emblemvault.io';
711433
711433
  this.baseUrl = baseUrl || 'https://v2.emblemvault.io';
711434
- this.v3Url = 'https://emblemvault-io-v3-6156a7b1ac82.herokuapp.com';
711434
+ this.v3Url = 'https://v3.emblemvault.io';
711435
711435
  this.sigUrl = 'https://tor-us-signer-coval.vercel.app';
711436
711436
  }
711437
711437
  // Example method structure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emblem-vault-sdk",
3
- "version": "1.12.7",
3
+ "version": "2.0.0",
4
4
  "description": "Emblem Vault Software Development Kit",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -17,7 +17,7 @@ class EmblemVaultSDK {
17
17
  }
18
18
  this.v1Url = 'https://api2.emblemvault.io';
19
19
  this.baseUrl = baseUrl || 'https://v2.emblemvault.io';
20
- this.v3Url = 'https://emblemvault-io-v3-6156a7b1ac82.herokuapp.com';
20
+ this.v3Url = 'https://v3.emblemvault.io';
21
21
  this.sigUrl = 'https://tor-us-signer-coval.vercel.app';
22
22
  }
23
23