dash 3.23.0-dev.2 → 3.23.0-dev.3

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.
Files changed (51) hide show
  1. package/README.md +28 -1
  2. package/build/src/SDK/Client/Platform/Platform.js +12 -0
  3. package/build/src/SDK/Client/Platform/Platform.js.map +1 -1
  4. package/build/src/SDK/Client/Platform/createAssetLockTransaction.js +8 -4
  5. package/build/src/SDK/Client/Platform/createAssetLockTransaction.js.map +1 -1
  6. package/build/src/SDK/Client/Platform/methods/identities/internal/createAssetLockProof.js +8 -4
  7. package/build/src/SDK/Client/Platform/methods/identities/internal/createAssetLockProof.js.map +1 -1
  8. package/build/src/SDK/Client/Platform/methods/identities/internal/createIdentityCreateTransition.js +8 -4
  9. package/build/src/SDK/Client/Platform/methods/identities/internal/createIdentityCreateTransition.js.map +1 -1
  10. package/build/src/SDK/Client/Platform/methods/identities/internal/createIdnetityTopUpTransition.js +8 -4
  11. package/build/src/SDK/Client/Platform/methods/identities/internal/createIdnetityTopUpTransition.js.map +1 -1
  12. package/build/src/SDK/Client/Platform/methods/identities/internal/waitForCoreChainLockedHeight.js +7 -3
  13. package/build/src/SDK/Client/Platform/methods/identities/internal/waitForCoreChainLockedHeight.js.map +1 -1
  14. package/build/src/SDK/Client/Platform/methods/identities/register.js +5 -6
  15. package/build/src/SDK/Client/Platform/methods/identities/register.js.map +1 -1
  16. package/build/src/SDK/Client/Platform/methods/identities/topUp.js +5 -7
  17. package/build/src/SDK/Client/Platform/methods/identities/topUp.js.map +1 -1
  18. package/build/src/SDK/Client/Platform/methods/identities/update.js +22 -22
  19. package/build/src/SDK/Client/Platform/methods/identities/update.js.map +1 -1
  20. package/build/src/SDK/SDK.js +10 -0
  21. package/build/src/SDK/SDK.js.map +1 -1
  22. package/build/src/test/mocks/createAndAttachTransportMocksToClient.js +1 -1
  23. package/build/src/test/mocks/createAndAttachTransportMocksToClient.js.map +1 -1
  24. package/build/tests/fixtures/contracts.json +1 -1
  25. package/build-utils/ws.js +15 -0
  26. package/dist/dash.min.js +9 -0
  27. package/dist/dash.min.js.LICENSE.txt +80 -0
  28. package/dist/dash.min.js.map +1 -0
  29. package/dist/src/SDK/Client/Platform/Platform.d.ts +7 -0
  30. package/dist/src/SDK/Client/Platform/createAssetLockTransaction.d.ts +3 -2
  31. package/dist/src/SDK/Client/Platform/methods/identities/internal/createAssetLockProof.d.ts +3 -2
  32. package/dist/src/SDK/Client/Platform/methods/identities/internal/createIdentityCreateTransition.d.ts +3 -2
  33. package/dist/src/SDK/Client/Platform/methods/identities/internal/createIdnetityTopUpTransition.d.ts +3 -2
  34. package/dist/src/SDK/Client/Platform/methods/identities/internal/waitForCoreChainLockedHeight.d.ts +2 -1
  35. package/dist/src/SDK/SDK.d.ts +9 -0
  36. package/package.json +16 -12
  37. package/src/SDK/Client/Platform/Platform.ts +21 -0
  38. package/src/SDK/Client/Platform/createAssetLockTransaction.ts +5 -2
  39. package/src/SDK/Client/Platform/methods/identities/internal/createAssetLockProof.ts +5 -2
  40. package/src/SDK/Client/Platform/methods/identities/internal/createIdentityCreateTransition.ts +5 -2
  41. package/src/SDK/Client/Platform/methods/identities/internal/createIdnetityTopUpTransition.ts +5 -2
  42. package/src/SDK/Client/Platform/methods/identities/internal/waitForCoreChainLockedHeight.ts +4 -3
  43. package/src/SDK/Client/Platform/methods/identities/register.ts +6 -8
  44. package/src/SDK/Client/Platform/methods/identities/topUp.ts +5 -8
  45. package/src/SDK/Client/Platform/methods/identities/update.ts +18 -12
  46. package/src/SDK/SDK.ts +34 -21
  47. package/src/test/mocks/createAndAttachTransportMocksToClient.ts +1 -1
  48. package/tests/fixtures/contracts.json +1 -1
  49. package/tests/fixtures/ratePlatform.schema.json +1 -1
  50. package/webpack.base.config.js +14 -0
  51. package/webpack.config.js +6 -2
@@ -0,0 +1,80 @@
1
+ /*!
2
+ * prr
3
+ * (c) 2013 Rod Vagg <rod@vagg.org>
4
+ * https://github.com/rvagg/prr
5
+ * License: MIT
6
+ */
7
+
8
+ /*!
9
+ * The buffer module from node.js, for the browser.
10
+ *
11
+ * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
12
+ * @license MIT
13
+ */
14
+
15
+ /*!
16
+ * The buffer module from node.js, for the browser.
17
+ *
18
+ * @author Feross Aboukhadijeh <https://feross.org>
19
+ * @license MIT
20
+ */
21
+
22
+ /*!
23
+ * https://github.com/Starcounter-Jack/JSON-Patch
24
+ * (c) 2017 Joachim Wester
25
+ * MIT license
26
+ */
27
+
28
+ /*! https://mths.be/punycode v1.3.2 by @mathias */
29
+
30
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
31
+
32
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
33
+
34
+ /**
35
+ * @license
36
+ * Copyright 2009 The Closure Library Authors
37
+ * Copyright 2020 Daniel Wirtz / The long.js Authors.
38
+ *
39
+ * Licensed under the Apache License, Version 2.0 (the "License");
40
+ * you may not use this file except in compliance with the License.
41
+ * You may obtain a copy of the License at
42
+ *
43
+ * http://www.apache.org/licenses/LICENSE-2.0
44
+ *
45
+ * Unless required by applicable law or agreed to in writing, software
46
+ * distributed under the License is distributed on an "AS IS" BASIS,
47
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
48
+ * See the License for the specific language governing permissions and
49
+ * limitations under the License.
50
+ *
51
+ * SPDX-License-Identifier: Apache-2.0
52
+ */
53
+
54
+ /**
55
+ * @license
56
+ * Lodash <https://lodash.com/>
57
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
58
+ * Released under MIT license <https://lodash.com/license>
59
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
60
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
61
+ */
62
+
63
+ /** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
64
+
65
+ /** @preserve
66
+ * Counter block mode compatible with Dr Brian Gladman fileenc.c
67
+ * derived from CryptoJS.mode.CTR
68
+ * Jan Hruby jhruby.web@gmail.com
69
+ */
70
+
71
+ /** @preserve
72
+ (c) 2012 by Cédric Mesnil. All rights reserved.
73
+
74
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
75
+
76
+ - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
77
+ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
78
+
79
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
80
+ */