@solana/web3.js 1.59.2 → 1.60.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 +4 -3
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +4 -3
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +4 -3
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.esm.js +4 -3
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +4 -3
- 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 +4 -3
- package/lib/index.native.js.map +1 -1
- package/package.json +1 -1
- package/src/connection.ts +5 -0
- package/src/keypair.ts +1 -1
package/lib/index.iife.js
CHANGED
|
@@ -17947,7 +17947,8 @@ var solanaWeb3 = (function (exports) {
|
|
|
17947
17947
|
accountKeys: array(type({
|
|
17948
17948
|
pubkey: PublicKeyFromString,
|
|
17949
17949
|
signer: boolean(),
|
|
17950
|
-
writable: boolean()
|
|
17950
|
+
writable: boolean(),
|
|
17951
|
+
source: optional(union([literal('transaction'), literal('lookupTable')]))
|
|
17951
17952
|
})),
|
|
17952
17953
|
instructions: array(ParsedOrRawInstruction),
|
|
17953
17954
|
recentBlockhash: string(),
|
|
@@ -18163,7 +18164,7 @@ var solanaWeb3 = (function (exports) {
|
|
|
18163
18164
|
|
|
18164
18165
|
/** @internal */
|
|
18165
18166
|
const COMMON_HTTP_HEADERS = {
|
|
18166
|
-
'solana-client': `js/${(_process$env$npm_pack = "1.
|
|
18167
|
+
'solana-client': `js/${(_process$env$npm_pack = "1.60.1") !== null && _process$env$npm_pack !== void 0 ? _process$env$npm_pack : 'UNKNOWN'}`
|
|
18167
18168
|
};
|
|
18168
18169
|
/**
|
|
18169
18170
|
* A connection to a fullnode JSON RPC endpoint
|
|
@@ -21123,7 +21124,7 @@ var solanaWeb3 = (function (exports) {
|
|
|
21123
21124
|
|
|
21124
21125
|
|
|
21125
21126
|
get secretKey() {
|
|
21126
|
-
return this._keypair.secretKey;
|
|
21127
|
+
return new Uint8Array(this._keypair.secretKey);
|
|
21127
21128
|
}
|
|
21128
21129
|
|
|
21129
21130
|
}
|