fix web3js: add feePayer type in TransactionCtorFields (#13343)

Co-authored-by: Son Nguyen <nhson@HKMAC0371.local>
This commit is contained in:
Son Nguyen
2020-11-02 13:00:00 +07:00
committed by GitHub
parent 0e4509c497
commit 1c75db41e3
2 changed files with 2 additions and 0 deletions

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

@ -660,6 +660,7 @@ declare module '@solana/web3.js' {
recentBlockhash?: Blockhash; recentBlockhash?: Blockhash;
nonceInfo?: NonceInformation; nonceInfo?: NonceInformation;
signatures?: Array<SignaturePubkeyPair>; signatures?: Array<SignaturePubkeyPair>;
feePayer?: PublicKey;
}; };
export type SerializeConfig = { export type SerializeConfig = {

View File

@ -665,6 +665,7 @@ declare module '@solana/web3.js' {
recentBlockhash?: Blockhash, recentBlockhash?: Blockhash,
nonceInfo?: NonceInformation, nonceInfo?: NonceInformation,
signatures?: Array<SignaturePubkeyPair>, signatures?: Array<SignaturePubkeyPair>,
feePayer?: PublicKey,
|}; |};
declare export type SerializeConfig = { declare export type SerializeConfig = {