@solana/transaction-messages 3.0.0-canary-20250814085008 → 3.0.0-canary-20250814100736

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.
@@ -77,12 +77,12 @@ export declare function isTransactionMessageWithDurableNonceLifetime(transaction
77
77
  *
78
78
  * @example
79
79
  * ```ts
80
- * import { assertIsDurableNonceTransactionMessage } from '@solana/transaction-messages';
80
+ * import { assertIsTransactionMessageWithDurableNonceLifetime } from '@solana/transaction-messages';
81
81
  *
82
82
  * try {
83
83
  * // If this type assertion function doesn't throw, then
84
84
  * // Typescript will upcast `message` to `TransactionMessageWithDurableNonceLifetime`.
85
- * assertIsDurableNonceTransactionMessage(message);
85
+ * assertIsTransactionMessageWithDurableNonceLifetime(message);
86
86
  * // At this point, `message` is a `TransactionMessageWithDurableNonceLifetime` that can be used
87
87
  * // with the RPC.
88
88
  * const { nonce, nonceAccountAddress } = message.lifetimeConstraint;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/transaction-messages",
3
- "version": "3.0.0-canary-20250814085008",
3
+ "version": "3.0.0-canary-20250814100736",
4
4
  "description": "Helpers for creating transaction messages",
5
5
  "exports": {
6
6
  "edge-light": {
@@ -54,15 +54,15 @@
54
54
  "maintained node versions"
55
55
  ],
56
56
  "dependencies": {
57
- "@solana/addresses": "3.0.0-canary-20250814085008",
58
- "@solana/codecs-core": "3.0.0-canary-20250814085008",
59
- "@solana/codecs-data-structures": "3.0.0-canary-20250814085008",
60
- "@solana/errors": "3.0.0-canary-20250814085008",
61
- "@solana/codecs-numbers": "3.0.0-canary-20250814085008",
62
- "@solana/functional": "3.0.0-canary-20250814085008",
63
- "@solana/instructions": "3.0.0-canary-20250814085008",
64
- "@solana/nominal-types": "3.0.0-canary-20250814085008",
65
- "@solana/rpc-types": "3.0.0-canary-20250814085008"
57
+ "@solana/addresses": "3.0.0-canary-20250814100736",
58
+ "@solana/codecs-data-structures": "3.0.0-canary-20250814100736",
59
+ "@solana/codecs-numbers": "3.0.0-canary-20250814100736",
60
+ "@solana/errors": "3.0.0-canary-20250814100736",
61
+ "@solana/codecs-core": "3.0.0-canary-20250814100736",
62
+ "@solana/functional": "3.0.0-canary-20250814100736",
63
+ "@solana/instructions": "3.0.0-canary-20250814100736",
64
+ "@solana/nominal-types": "3.0.0-canary-20250814100736",
65
+ "@solana/rpc-types": "3.0.0-canary-20250814100736"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "typescript": ">=5.3.3"