@taquito/taquito 17.3.1-beta-RC.0 → 17.3.2
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/README.md +2 -2
- package/dist/lib/estimate/rpc-estimate-provider.js +3 -3
- package/dist/lib/version.js +2 -2
- package/dist/lib/version.js.map +1 -1
- package/dist/taquito.es6.js +5 -5
- package/dist/taquito.es6.js.map +1 -1
- package/dist/taquito.min.js +1 -1
- package/dist/taquito.umd.js +5 -5
- package/dist/taquito.umd.js.map +1 -1
- package/package.json +9 -9
package/dist/taquito.umd.js
CHANGED
|
@@ -3835,9 +3835,9 @@
|
|
|
3835
3835
|
if (toValidation !== utils.ValidationResult.VALID) {
|
|
3836
3836
|
throw new core.InvalidAddressError(rest.to, utils.invalidDetail(toValidation));
|
|
3837
3837
|
}
|
|
3838
|
-
const
|
|
3839
|
-
if (rest.source &&
|
|
3840
|
-
throw new core.InvalidAddressError(rest.source, utils.invalidDetail(
|
|
3838
|
+
const sourceValidation = utils.validateAddress((_b = rest.source) !== null && _b !== void 0 ? _b : '');
|
|
3839
|
+
if (rest.source && sourceValidation !== utils.ValidationResult.VALID) {
|
|
3840
|
+
throw new core.InvalidAddressError(rest.source, utils.invalidDetail(sourceValidation));
|
|
3841
3841
|
}
|
|
3842
3842
|
if (rest.amount < 0) {
|
|
3843
3843
|
throw new core.InvalidAmountError(rest.amount.toString());
|
|
@@ -6175,8 +6175,8 @@
|
|
|
6175
6175
|
|
|
6176
6176
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
6177
6177
|
const VERSION = {
|
|
6178
|
-
"commitHash": "
|
|
6179
|
-
"version": "17.3.
|
|
6178
|
+
"commitHash": "a97e506efd61b86e39ae30db588401b8fda46553",
|
|
6179
|
+
"version": "17.3.2"
|
|
6180
6180
|
};
|
|
6181
6181
|
|
|
6182
6182
|
/**
|