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:
@@ -12,7 +12,10 @@ import {toBuffer} from './util/to-buffer';
|
||||
*/
|
||||
export const MAX_SEED_LENGTH = 32;
|
||||
|
||||
type PublicKeyInitData =
|
||||
/**
|
||||
* Value to be converted into public key
|
||||
*/
|
||||
export type PublicKeyInitData =
|
||||
| number
|
||||
| string
|
||||
| Buffer
|
||||
@@ -20,7 +23,10 @@ type PublicKeyInitData =
|
||||
| Array<number>
|
||||
| PublicKeyData;
|
||||
|
||||
type PublicKeyData = {
|
||||
/**
|
||||
* JSON object representation of PublicKey class
|
||||
*/
|
||||
export type PublicKeyData = {
|
||||
/** @internal */
|
||||
_bn: BN;
|
||||
};
|
||||
|
@@ -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 */
|
||||
|
Reference in New Issue
Block a user