@solana/web3.js 2.0.0-experimental.f46b34c → 2.0.0-experimental.f5d64e6

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 (49) hide show
  1. package/README.md +19 -23
  2. package/dist/index.browser.cjs +81 -28
  3. package/dist/index.browser.cjs.map +1 -1
  4. package/dist/index.browser.js +76 -28
  5. package/dist/index.browser.js.map +1 -1
  6. package/dist/index.development.js +1061 -884
  7. package/dist/index.development.js.map +1 -1
  8. package/dist/index.native.js +78 -28
  9. package/dist/index.native.js.map +1 -1
  10. package/dist/index.node.cjs +81 -28
  11. package/dist/index.node.cjs.map +1 -1
  12. package/dist/index.node.js +76 -28
  13. package/dist/index.node.js.map +1 -1
  14. package/dist/index.production.min.js +83 -76
  15. package/dist/types/airdrop-confirmer.d.ts +4 -5
  16. package/dist/types/airdrop-confirmer.d.ts.map +1 -1
  17. package/dist/types/airdrop.d.ts +3 -5
  18. package/dist/types/airdrop.d.ts.map +1 -1
  19. package/dist/types/index.d.ts +10 -9
  20. package/dist/types/index.d.ts.map +1 -1
  21. package/dist/types/rpc-default-config.d.ts.map +1 -1
  22. package/dist/types/rpc-integer-overflow-error.d.ts +3 -2
  23. package/dist/types/rpc-integer-overflow-error.d.ts.map +1 -1
  24. package/dist/types/rpc-request-coalescer.d.ts +1 -1
  25. package/dist/types/rpc-request-coalescer.d.ts.map +1 -1
  26. package/dist/types/rpc-subscription-coalescer.d.ts +1 -1
  27. package/dist/types/rpc-subscription-coalescer.d.ts.map +1 -1
  28. package/dist/types/rpc-transport.d.ts +1 -2
  29. package/dist/types/rpc-transport.d.ts.map +1 -1
  30. package/dist/types/rpc-websocket-autopinger.d.ts +1 -1
  31. package/dist/types/rpc-websocket-autopinger.d.ts.map +1 -1
  32. package/dist/types/rpc-websocket-connection-sharding.d.ts +1 -1
  33. package/dist/types/rpc-websocket-connection-sharding.d.ts.map +1 -1
  34. package/dist/types/rpc-websocket-transport.d.ts +1 -2
  35. package/dist/types/rpc-websocket-transport.d.ts.map +1 -1
  36. package/dist/types/rpc.d.ts +1 -2
  37. package/dist/types/rpc.d.ts.map +1 -1
  38. package/dist/types/send-transaction.d.ts +3 -3
  39. package/dist/types/send-transaction.d.ts.map +1 -1
  40. package/dist/types/transaction-confirmation-strategy-blockheight.d.ts +9 -5
  41. package/dist/types/transaction-confirmation-strategy-blockheight.d.ts.map +1 -1
  42. package/dist/types/transaction-confirmation-strategy-nonce.d.ts +2 -3
  43. package/dist/types/transaction-confirmation-strategy-nonce.d.ts.map +1 -1
  44. package/dist/types/transaction-confirmation-strategy-racer.d.ts +1 -1
  45. package/dist/types/transaction-confirmation-strategy-recent-signature.d.ts +2 -3
  46. package/dist/types/transaction-confirmation-strategy-recent-signature.d.ts.map +1 -1
  47. package/dist/types/transaction-confirmation.d.ts +6 -11
  48. package/dist/types/transaction-confirmation.d.ts.map +1 -1
  49. package/package.json +15 -15
package/README.md CHANGED
@@ -34,17 +34,17 @@ In response to your feedback, we began a process of modernizing the library to p
34
34
  ### For use in Node.js or a web application
35
35
 
36
36
  ```shell
37
- npm install --save @solana/web3.js@ts
37
+ npm install --save @solana/web3.js@tp
38
38
  ```
39
39
 
40
40
  ### For use in a browser, without a build system
41
41
 
42
42
  ```html
43
43
  <!-- Development (debug mode, unminified) -->
44
- <script src="https://unpkg.com/@solana/web3.js@ts/dist/index.development.js"></script>
44
+ <script src="https://unpkg.com/@solana/web3.js@tp/dist/index.development.js"></script>
45
45
 
46
46
  <!-- Production (minified) -->
47
- <script src="https://unpkg.com/@solana/web3.js@ts/dist/index.production.min.js"></script>
47
+ <script src="https://unpkg.com/@solana/web3.js@tp/dist/index.production.min.js"></script>
48
48
  ```
49
49
 
50
50
  What follows is an overview of *why* the library was re-engineered, what changes have been introduced, and how the JavaScript landscape might look across Solana in the near future.
@@ -80,7 +80,7 @@ The inability to customize web3.js has been a source of frustration for some:
80
80
 
81
81
  ## Lagging Behind Modern JavaScript
82
82
 
83
- The advance of modern JavaScript features presents an opportunity to developers of crypto applcations, such as the ability to use native Ed25519 keys and to express large values as native `bigint`.
83
+ The advance of modern JavaScript features presents an opportunity to developers of crypto applications, such as the ability to use native Ed25519 keys and to express large values as native `bigint`.
84
84
 
85
85
  The Web Incubator Community Group has advocated for the addition of Ed25519 support to the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API), and support has already landed in *most* modern JavaScript runtimes.
86
86
 
@@ -102,7 +102,7 @@ Enter web3.js 2.0. The new API aims to deliver a re-imagined experience of build
102
102
 
103
103
  ## Features
104
104
 
105
- The new (2.0) version of `@solana/web3.js` aims to address shortcomings in the legacy library first, then goes even further .
105
+ The new (2.0) version of `@solana/web3.js` aims to address shortcomings in the legacy library first, then goes even further.
106
106
 
107
107
  ### Tree-Shaking
108
108
 
@@ -251,8 +251,7 @@ const rpc = createJsonRpc<SolanaRpcMethods>({ api, transport });
251
251
  If you want to, you can also reduce the scope of the API’s type-spec so you are left only with the types you need. Keep in mind types don’t affect bundle size, but you may choose to scope the type-spec for a variety of reasons, including reducing TypeScript noise.
252
252
 
253
253
  ```tsx
254
- import { createSolanaRpcApi } from '@solana/rpc-core';
255
- import type { GetAccountInfoApi } from '@solana/rpc-core/dist/types/rpc-methods/getAccountInfo';
254
+ import { createSolanaRpcApi, type GetAccountInfoApi } from '@solana/rpc-core';
256
255
  import { createHttpTransport, createJsonRpc } from '@solana/rpc-transport';
257
256
 
258
257
  const api = createSolanaRpcApi();
@@ -325,8 +324,7 @@ Here’s an example of how someone might implement a “round robin” approach
325
324
 
326
325
  ```tsx
327
326
  import { createSolanaRpcApi } from '@solana/rpc-core';
328
- import { createJsonRpc } from '@solana/rpc-transport';
329
- import { IRpcTransport } from '@solana/rpc-transport/dist/types/transports/transport-types';
327
+ import { createJsonRpc, type IRpcTransport } from '@solana/rpc-transport';
330
328
  import { createDefaultRpcTransport } from '@solana/web3.js';
331
329
 
332
330
  // Create a transport for each RPC server
@@ -364,10 +362,9 @@ Another example of a possible customization for RPC transports is sharding. Here
364
362
  The transport library can also be used to implement custom retry logic on any request:
365
363
 
366
364
  ```tsx
367
- import { createDefaultRpcTransport } from "@solana/web3.js";
368
- import { IRpcTransport } from "@solana/rpc-transport/dist/types/transports/transport-types";
369
- import { createJsonRpc } from "@solana/rpc-transport";
370
- import { createSolanaRpcApi } from "@solana/rpc-core";
365
+ import { createDefaultRpcTransport } from '@solana/web3.js';
366
+ import { createJsonRpc, IRpcTransport } from '@solana/rpc-transport';
367
+ import { createSolanaRpcApi } from '@solana/rpc-core';
371
368
 
372
369
  // Set the maximum number of attempts to retry a request
373
370
  const MAX_ATTEMPTS = 4;
@@ -425,15 +422,14 @@ Perhaps your application needs to make a large number of requests, or needs to f
425
422
 
426
423
  ```tsx
427
424
  import { createSolanaRpcApi } from '@solana/rpc-core';
428
- import { createJsonRpc } from '@solana/rpc-transport';
429
- import { IRpcTransport } from '@solana/rpc-transport/dist/types/transports/transport-types';
425
+ import { createJsonRpc, IRpcTransport } from '@solana/rpc-transport';
430
426
  import { createDefaultRpcTransport } from '@solana/web3.js';
431
427
 
432
428
  // Create multiple transports
433
- const transportA = createDefaultRpcTransport({ url: 'https://mainnet-beta.my-server-1.com' }));
434
- const transportB = createDefaultRpcTransport({ url: 'https://mainnet-beta.my-server-2.com' }));
435
- const transportC = createDefaultRpcTransport({ url: 'https://mainnet-beta.my-server-3.com' }));
436
- const transportD = createDefaultRpcTransport({ url: 'https://mainnet-beta.my-server-4.com' }));
429
+ const transportA = createDefaultRpcTransport({ url: 'https://mainnet-beta.my-server-1.com' });
430
+ const transportB = createDefaultRpcTransport({ url: 'https://mainnet-beta.my-server-2.com' });
431
+ const transportC = createDefaultRpcTransport({ url: 'https://mainnet-beta.my-server-3.com' });
432
+ const transportD = createDefaultRpcTransport({ url: 'https://mainnet-beta.my-server-4.com' });
437
433
 
438
434
  // Function to determine which shard to use based on the request method
439
435
  function selectShard(method: string): IRpcTransport {
@@ -551,7 +547,7 @@ for await (const notification of accountNotifications) {
551
547
 
552
548
  One of the most crucial aspects of any subscription API is managing potential missed messages. Missing messages, such as account state updates, could be catastrophic for an application. That’s why the new library provides native support for recovering missed messages using the `AsyncIterator`.
553
549
 
554
- When a connection fails unexpectedly, any messages you miss while disconnected can result in your UI falling behind or becoming corrupt. Because subscription failure is now made explicit in the new API, you can implement ‘catch up’ logic after re-estabilshing the subscription.
550
+ When a connection fails unexpectedly, any messages you miss while disconnected can result in your UI falling behind or becoming corrupt. Because subscription failure is now made explicit in the new API, you can implement ‘catch up’ logic after re-establishing the subscription.
555
551
 
556
552
  Here’s an example of such logic:
557
553
 
@@ -754,7 +750,7 @@ const transactionSignedWithFeePayer = await signTransaction([signer], transactio
754
750
 
755
751
  Transaction objects are also ********frozen by these functions******** to prevent transactions from being mutated in place by functions you pass them to.
756
752
 
757
- Building transactions in this manner might feel different to what you’re used to. Also, we certainly wouldn’t want you to have to bind transformed transactions to a new variable at each step, so we have released a functional programming library dubbed `@solana/functional` that lets you build transactions in **********************************pipelines**********************************. Here’s how it can be used:
753
+ Building transactions in this manner might feel different from what you’re used to. Also, we certainly wouldn’t want you to have to bind transformed transactions to a new variable at each step, so we have released a functional programming library dubbed `@solana/functional` that lets you build transactions in **********************************pipelines**********************************. Here’s how it can be used:
758
754
 
759
755
  ```tsx
760
756
  import { pipe } from '@solana/functional';
@@ -814,7 +810,7 @@ const myToken = {
814
810
  };
815
811
 
816
812
  const myEncodedToken: Uint8Array = structCodec.encode(myToken);
817
- const myDecodedToken = structCodec.decode(myEncodedToken)[0];
813
+ const myDecodedToken = structCodec.decode(myEncodedToken);
818
814
 
819
815
  myDecodedToken satisfies {
820
816
  amount: bigint;
@@ -913,7 +909,7 @@ const blockWithRewardsAndTransactionsResponse = await rpc.getBlock(0n, {
913
909
 
914
910
  ### Catching Compile-Time Bugs with TypeScript
915
911
 
916
- As previously mentioned, the type coverage in web3.js 2.0 allow developers to catch common bugs at compile time, rather than runtime.
912
+ As previously mentioned, the type coverage in web3.js 2.0 allows developers to catch common bugs at compile time, rather than runtime.
917
913
 
918
914
  In the example below, a transaction is created and then attempted to be compiled without setting the fee payer. This would result in a runtime error from the RPC, but instead you will see a type error from TypeScript as you type:
919
915
 
@@ -1,11 +1,11 @@
1
1
  'use strict';
2
2
 
3
3
  var addresses = require('@solana/addresses');
4
+ var functional = require('@solana/functional');
4
5
  var instructions = require('@solana/instructions');
5
6
  var keys = require('@solana/keys');
6
7
  var rpcTypes = require('@solana/rpc-types');
7
8
  var transactions = require('@solana/transactions');
8
- var functional = require('@solana/functional');
9
9
  var rpcCore = require('@solana/rpc-core');
10
10
  var rpcTransport = require('@solana/rpc-transport');
11
11
  var fastStableStringify = require('fast-stable-stringify');
@@ -175,23 +175,30 @@ async function requestAndConfirmAirdrop({
175
175
 
176
176
  // src/rpc-integer-overflow-error.ts
177
177
  var SolanaJsonRpcIntegerOverflowError = class extends Error {
178
+ methodName;
179
+ keyPath;
180
+ value;
178
181
  constructor(methodName, keyPath, value) {
179
- const argPosition = (typeof keyPath[0] === "number" ? keyPath[0] : parseInt(keyPath[0], 10)) + 1;
180
- let ordinal = "";
181
- const lastDigit = argPosition % 10;
182
- const lastTwoDigits = argPosition % 100;
183
- if (lastDigit == 1 && lastTwoDigits != 11) {
184
- ordinal = argPosition + "st";
185
- } else if (lastDigit == 2 && lastTwoDigits != 12) {
186
- ordinal = argPosition + "nd";
187
- } else if (lastDigit == 3 && lastTwoDigits != 13) {
188
- ordinal = argPosition + "rd";
182
+ let argumentLabel = "";
183
+ if (typeof keyPath[0] === "number") {
184
+ const argPosition = keyPath[0] + 1;
185
+ const lastDigit = argPosition % 10;
186
+ const lastTwoDigits = argPosition % 100;
187
+ if (lastDigit == 1 && lastTwoDigits != 11) {
188
+ argumentLabel = argPosition + "st";
189
+ } else if (lastDigit == 2 && lastTwoDigits != 12) {
190
+ argumentLabel = argPosition + "nd";
191
+ } else if (lastDigit == 3 && lastTwoDigits != 13) {
192
+ argumentLabel = argPosition + "rd";
193
+ } else {
194
+ argumentLabel = argPosition + "th";
195
+ }
189
196
  } else {
190
- ordinal = argPosition + "th";
197
+ argumentLabel = `\`${keyPath[0].toString()}\``;
191
198
  }
192
199
  const path = keyPath.length > 1 ? keyPath.slice(1).map((pathPart) => typeof pathPart === "number" ? `[${pathPart}]` : pathPart).join(".") : null;
193
200
  super(
194
- `The ${ordinal} argument to the \`${methodName}\` RPC method${path ? ` at path \`${path}\`` : ""} was \`${value}\`. This number is unsafe for use with the Solana JSON-RPC because it exceeds \`Number.MAX_SAFE_INTEGER\`.`
201
+ `The ${argumentLabel} argument to the \`${methodName}\` RPC method${path ? ` at path \`${path}\`` : ""} was \`${value}\`. This number is unsafe for use with the Solana JSON-RPC because it exceeds \`Number.MAX_SAFE_INTEGER\`.`
195
202
  );
196
203
  this.keyPath = keyPath;
197
204
  this.methodName = methodName;
@@ -204,6 +211,7 @@ var SolanaJsonRpcIntegerOverflowError = class extends Error {
204
211
 
205
212
  // src/rpc-default-config.ts
206
213
  var DEFAULT_RPC_CONFIG = {
214
+ defaultCommitment: "confirmed",
207
215
  onIntegerOverflow(methodName, keyPath, value) {
208
216
  throw new SolanaJsonRpcIntegerOverflowError(methodName, keyPath, value);
209
217
  }
@@ -363,11 +371,11 @@ function getRpcSubscriptionsWithSubscriptionCoalescing({
363
371
  return {
364
372
  ...iterable,
365
373
  async *[Symbol.asyncIterator]() {
366
- abortPromise || (abortPromise = abortSignal.aborted ? Promise.reject(EXPLICIT_ABORT_TOKEN) : new Promise((_, reject) => {
374
+ abortPromise ||= abortSignal.aborted ? Promise.reject(EXPLICIT_ABORT_TOKEN) : new Promise((_, reject) => {
367
375
  abortSignal.addEventListener("abort", () => {
368
376
  reject(EXPLICIT_ABORT_TOKEN);
369
377
  });
370
- }));
378
+ });
371
379
  try {
372
380
  const iterator = iterable[Symbol.asyncIterator]();
373
381
  while (true) {
@@ -610,22 +618,52 @@ function createDefaultRpcSubscriptionsTransport(config) {
610
618
  }
611
619
 
612
620
  // src/transaction-confirmation-strategy-blockheight.ts
613
- function createBlockHeightExceedencePromiseFactory(rpcSubscriptions) {
614
- return async function getBlockHeightExceedencePromise({ abortSignal: callerAbortSignal, lastValidBlockHeight }) {
621
+ function createBlockHeightExceedencePromiseFactory({
622
+ rpc,
623
+ rpcSubscriptions
624
+ }) {
625
+ return async function getBlockHeightExceedencePromise({
626
+ abortSignal: callerAbortSignal,
627
+ commitment,
628
+ lastValidBlockHeight
629
+ }) {
615
630
  const abortController = new AbortController();
616
- function handleAbort() {
631
+ const handleAbort = () => {
617
632
  abortController.abort();
618
- }
633
+ };
619
634
  callerAbortSignal.addEventListener("abort", handleAbort, { signal: abortController.signal });
620
- const slotNotifications = await rpcSubscriptions.slotNotifications().subscribe({ abortSignal: abortController.signal });
635
+ async function getBlockHeightAndDifferenceBetweenSlotHeightAndBlockHeight() {
636
+ const { absoluteSlot, blockHeight } = await rpc.getEpochInfo({ commitment }).send({ abortSignal: abortController.signal });
637
+ return {
638
+ blockHeight,
639
+ differenceBetweenSlotHeightAndBlockHeight: absoluteSlot - blockHeight
640
+ };
641
+ }
621
642
  try {
622
- for await (const slotNotification of slotNotifications) {
623
- if (slotNotification.slot > lastValidBlockHeight) {
624
- throw new Error(
625
- "The network has progressed past the last block for which this transaction could have committed."
626
- );
643
+ const [slotNotifications, { blockHeight, differenceBetweenSlotHeightAndBlockHeight }] = await Promise.all([
644
+ rpcSubscriptions.slotNotifications().subscribe({ abortSignal: abortController.signal }),
645
+ getBlockHeightAndDifferenceBetweenSlotHeightAndBlockHeight()
646
+ ]);
647
+ if (blockHeight <= lastValidBlockHeight) {
648
+ let lastKnownDifferenceBetweenSlotHeightAndBlockHeight = differenceBetweenSlotHeightAndBlockHeight;
649
+ for await (const slotNotification of slotNotifications) {
650
+ const { slot } = slotNotification;
651
+ if (slot - lastKnownDifferenceBetweenSlotHeightAndBlockHeight > lastValidBlockHeight) {
652
+ const {
653
+ blockHeight: currentBlockHeight,
654
+ differenceBetweenSlotHeightAndBlockHeight: currentDifferenceBetweenSlotHeightAndBlockHeight
655
+ } = await getBlockHeightAndDifferenceBetweenSlotHeightAndBlockHeight();
656
+ if (currentBlockHeight > lastValidBlockHeight) {
657
+ break;
658
+ } else {
659
+ lastKnownDifferenceBetweenSlotHeightAndBlockHeight = currentDifferenceBetweenSlotHeightAndBlockHeight;
660
+ }
661
+ }
627
662
  }
628
663
  }
664
+ throw new Error(
665
+ "The network has progressed past the last block for which this transaction could have been committed."
666
+ );
629
667
  } finally {
630
668
  abortController.abort();
631
669
  }
@@ -652,7 +690,7 @@ function createNonceInvalidationPromiseFactory(rpc, rpcSubscriptions) {
652
690
  function getNonceFromAccountData([base64EncodedBytes]) {
653
691
  const data = base64Encoder.encode(base64EncodedBytes);
654
692
  const nonceValueBytes = data.slice(NONCE_VALUE_OFFSET, NONCE_VALUE_OFFSET + 32);
655
- return base58Decoder.decode(nonceValueBytes)[0];
693
+ return base58Decoder.decode(nonceValueBytes);
656
694
  }
657
695
  const nonceAccountDidAdvancePromise = (async () => {
658
696
  for await (const accountNotification of accountNotifications) {
@@ -717,7 +755,10 @@ function createDefaultRecentTransactionConfirmer({
717
755
  rpc,
718
756
  rpcSubscriptions
719
757
  }) {
720
- const getBlockHeightExceedencePromise = createBlockHeightExceedencePromiseFactory(rpcSubscriptions);
758
+ const getBlockHeightExceedencePromise = createBlockHeightExceedencePromiseFactory({
759
+ rpc,
760
+ rpcSubscriptions
761
+ });
721
762
  const getRecentSignatureConfirmationPromise = createRecentSignatureConfirmationPromiseFactory(
722
763
  rpc,
723
764
  rpcSubscriptions
@@ -750,10 +791,16 @@ async function waitForRecentTransactionConfirmation(config) {
750
791
  await raceStrategies(
751
792
  transactions.getSignatureFromTransaction(config.transaction),
752
793
  config,
753
- function getSpecificStrategiesForRace({ abortSignal, getBlockHeightExceedencePromise, transaction }) {
794
+ function getSpecificStrategiesForRace({
795
+ abortSignal,
796
+ commitment,
797
+ getBlockHeightExceedencePromise,
798
+ transaction
799
+ }) {
754
800
  return [
755
801
  getBlockHeightExceedencePromise({
756
802
  abortSignal,
803
+ commitment,
757
804
  lastValidBlockHeight: transaction.lifetimeConstraint.lastValidBlockHeight
758
805
  })
759
806
  ];
@@ -899,6 +946,12 @@ Object.keys(addresses).forEach(function (k) {
899
946
  get: function () { return addresses[k]; }
900
947
  });
901
948
  });
949
+ Object.keys(functional).forEach(function (k) {
950
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
951
+ enumerable: true,
952
+ get: function () { return functional[k]; }
953
+ });
954
+ });
902
955
  Object.keys(instructions).forEach(function (k) {
903
956
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
904
957
  enumerable: true,