feat: add singleGossip commitment level

This commit is contained in:
Tyera Eulberg
2020-05-26 15:17:35 -06:00
committed by Michael Vines
parent ed08c25d2d
commit e2e4b47103
4 changed files with 6 additions and 5 deletions

2
web3.js/module.d.ts vendored
View File

@ -46,7 +46,7 @@ declare module '@solana/web3.js' {
value: T;
};
export type Commitment = 'max' | 'recent' | 'root' | 'single';
export type Commitment = 'max' | 'recent' | 'root' | 'single' | 'singleGossip';
export type LargestAccountsFilter = 'circulating' | 'nonCirculating';