chore(web3): use github actions (#19816)

* chore: use github actions

* chore: npm audit

* chore: fix prettier warn

* chore: fix doc errors

* chore: add puppeteer
This commit is contained in:
Justin Starry
2021-09-13 16:37:18 -05:00
committed by GitHub
parent e1a038e791
commit 1942d294e9
9 changed files with 554 additions and 504 deletions

View File

@@ -106,7 +106,7 @@ export type SignaturePubkeyPair = {
* List of Transaction object fields that may be initialized at construction
*
*/
type TransactionCtorFields = {
export type TransactionCtorFields = {
/** A recent blockhash */
recentBlockhash?: Blockhash | null;
/** Optional nonce information used for offline nonce'd transactions */
@@ -120,7 +120,7 @@ type TransactionCtorFields = {
/**
* Nonce information to be used to build an offline Transaction.
*/
type NonceInformation = {
export type NonceInformation = {
/** The current blockhash stored in the nonce */
nonce: Blockhash;
/** AdvanceNonceAccount Instruction */