@solana/web3.js 1.70.0 → 1.70.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/index.browser.cjs.js +6 -0
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +6 -0
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +6 -0
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.esm.js +6 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +6 -0
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +1 -1
- package/lib/index.iife.min.js.map +1 -1
- package/lib/index.native.js +6 -0
- package/lib/index.native.js.map +1 -1
- package/package.json +1 -1
- package/src/publickey.ts +4 -0
package/lib/index.iife.js
CHANGED
|
@@ -8301,6 +8301,7 @@ var solanaWeb3 = (function (exports) {
|
|
|
8301
8301
|
}
|
|
8302
8302
|
const SOLANA_SCHEMA = new Map();
|
|
8303
8303
|
|
|
8304
|
+
let _Symbol$toStringTag;
|
|
8304
8305
|
/**
|
|
8305
8306
|
* Maximum length of derived pubkey seed
|
|
8306
8307
|
*/
|
|
@@ -8325,6 +8326,7 @@ var solanaWeb3 = (function (exports) {
|
|
|
8325
8326
|
* A public key
|
|
8326
8327
|
*/
|
|
8327
8328
|
|
|
8329
|
+
_Symbol$toStringTag = Symbol.toStringTag;
|
|
8328
8330
|
class PublicKey extends Struct$1 {
|
|
8329
8331
|
/** @internal */
|
|
8330
8332
|
|
|
@@ -8415,6 +8417,10 @@ var solanaWeb3 = (function (exports) {
|
|
|
8415
8417
|
b.copy(zeroPad, 32 - b.length);
|
|
8416
8418
|
return zeroPad;
|
|
8417
8419
|
}
|
|
8420
|
+
|
|
8421
|
+
get [_Symbol$toStringTag]() {
|
|
8422
|
+
return `PublicKey(${this.toString()})`;
|
|
8423
|
+
}
|
|
8418
8424
|
/**
|
|
8419
8425
|
* Return the base-58 representation of the public key
|
|
8420
8426
|
*/
|