Constructors
Properties
Readonly
rpcUrl
rpcUrl: string
Methods
ethGetTransactionReceipt
- ethGetTransactionReceipt(transaction: string): Promise<any>
Returns Promise<any>
getPendingTransactions
- getPendingTransactions(solanaWallet: PublicKey): Promise<RPCResponse<any>>
getTransactionByHash
- getTransactionByHash(transaction: string): Promise<RPCResponse<any>>
getTransactionCount
- getTransactionCount(neonWallet: string): Promise<string>
Returns Promise<string>
getTransactionReceipt
- getTransactionReceipt(transactionHash: string): Promise<RPCResponse<any>>
neonRpc
- neonRpc<T>(method: string, params?: unknown[]): Promise<RPCResponse<T>>
Parameters
- method: string
- params: unknown[] = []
sendRawScheduledTransaction
- sendRawScheduledTransaction(transaction: string): Promise<RPCResponse<string>>
Returns Promise<RPCResponse<string>>
sendRawScheduledTransactions
- sendRawScheduledTransactions(
transactions: string[],
): Promise<RPCResponse<string>[]> Returns Promise<RPCResponse<string>[]>
Static
rpc
- rpc<T>(url: string, method: string, params?: unknown[]): Promise<RPCResponse<T>>
Parameters
- url: string
- method: string
- params: unknown[] = []