@solana/web3.js 1.72.0 → 1.73.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/lib/index.browser.cjs.js +4 -2
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +4 -2
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +4 -2
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +9 -0
- package/lib/index.esm.js +4 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +4 -2
- 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 -2
- package/lib/index.native.js.map +1 -1
- package/package.json +5 -5
- package/src/connection.ts +11 -0
package/lib/index.iife.js
CHANGED
|
@@ -17440,7 +17440,8 @@ var solanaWeb3 = (function (exports) {
|
|
|
17440
17440
|
epoch: number(),
|
|
17441
17441
|
effectiveSlot: number(),
|
|
17442
17442
|
amount: number(),
|
|
17443
|
-
postBalance: number()
|
|
17443
|
+
postBalance: number(),
|
|
17444
|
+
commission: optional(nullable(number()))
|
|
17444
17445
|
}))));
|
|
17445
17446
|
|
|
17446
17447
|
/**
|
|
@@ -18119,7 +18120,8 @@ var solanaWeb3 = (function (exports) {
|
|
|
18119
18120
|
pubkey: string(),
|
|
18120
18121
|
lamports: number(),
|
|
18121
18122
|
postBalance: nullable(number()),
|
|
18122
|
-
rewardType: nullable(string())
|
|
18123
|
+
rewardType: nullable(string()),
|
|
18124
|
+
commission: optional(nullable(number()))
|
|
18123
18125
|
});
|
|
18124
18126
|
/**
|
|
18125
18127
|
* Expected JSON RPC response for the "getBlock" message
|