Skip to content

Commit 10d833c

Browse files
committed
1 parent 80a98db commit 10d833c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/rpc-core/src/rpc-methods/getProgramAccounts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type GetProgramAccountsDatasizeFilter = Readonly<{
2626
}>;
2727

2828
type GetProgramAccountsApiCommonConfig = Readonly<{
29-
/** @default "finalized" */
29+
/** @defaultValue "finalized" */
3030
commitment?: Commitment;
3131
/** The minimum slot that the request can be evaluated at */
3232
minContextSlot?: Slot;

packages/rpc-core/src/rpc-methods/getTokenAccountsByDelegate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type ProgramIdFilter = Readonly<{
4040
type AccountsFilter = MintFilter | ProgramIdFilter;
4141

4242
type GetTokenAccountsByDelegateApiCommonConfig = Readonly<{
43-
/** @default "finalized" */
43+
/** @defaultValue "finalized" */
4444
commitment?: Commitment;
4545
/** The minimum slot that the request can be evaluated at */
4646
minContextSlot?: Slot;

packages/rpc-core/src/rpc-methods/getTokenAccountsByOwner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type ProgramIdFilter = Readonly<{
4040
type AccountsFilter = MintFilter | ProgramIdFilter;
4141

4242
type GetTokenAccountsByOwnerApiCommonConfig = Readonly<{
43-
/** @default "finalized" */
43+
/** @defaultValue "finalized" */
4444
commitment?: Commitment;
4545
/** The minimum slot that the request can be evaluated at */
4646
minContextSlot?: Slot;

packages/rpc-core/src/rpc-methods/simulateTransaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
type SimulateTransactionConfigBase = Readonly<{
1818
/**
1919
* Commitment level to simulate the transaction at
20-
* @default finalized
20+
* @defaultValue finalized
2121
* */
2222
commitment?: Commitment;
2323
/** The minimum slot that the request can be evaluated at */

0 commit comments

Comments
 (0)