UNPKG

web3-eth

Version:

Web3 module to interact with the Ethereum blockchain and smart contracts.

122 lines (119 loc) 6.58 kB
/* This file is part of web3.js. web3.js is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. web3.js is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see <http://www.gnu.org/licenses/>. */ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import { ethRpcMethods } from 'web3-rpc-methods'; import { format, numberToHex } from 'web3-utils'; import { isNullish } from 'web3-validator'; import { logSchema } from './schemas.js'; /** * View additional documentations here: {@link Web3Eth.createNewPendingTransactionFilter} * @param web3Context ({@link Web3Context}) Web3 configuration object that contains things such as the provider, request manager, wallet, etc. * @param returnFormat ({@link DataFormat}) Return format */ export function createNewPendingTransactionFilter(web3Context, returnFormat) { return __awaiter(this, void 0, void 0, function* () { const response = yield ethRpcMethods.newPendingTransactionFilter(web3Context.requestManager); return format({ format: 'uint' }, response, returnFormat !== null && returnFormat !== void 0 ? returnFormat : web3Context.defaultReturnFormat); }); } /** * View additional documentations here: {@link Web3Eth.createNewFilter} * @param web3Context ({@link Web3Context}) Web3 configuration object that contains things such as the provider, request manager, wallet, etc. * @param filter ({@link FilterParam}) Filter param optional having from-block to-block address or params * @param returnFormat ({@link DataFormat}) Return format */ export function createNewFilter(web3Context, filter, returnFormat) { return __awaiter(this, void 0, void 0, function* () { // format type bigint or number toBlock and fromBlock to hexstring. let { toBlock, fromBlock } = filter; if (!isNullish(toBlock)) { if (typeof toBlock === 'number' || typeof toBlock === 'bigint') { toBlock = numberToHex(toBlock); } } if (!isNullish(fromBlock)) { if (typeof fromBlock === 'number' || typeof fromBlock === 'bigint') { fromBlock = numberToHex(fromBlock); } } const formattedFilter = Object.assign(Object.assign({}, filter), { fromBlock, toBlock }); const response = yield ethRpcMethods.newFilter(web3Context.requestManager, formattedFilter); return format({ format: 'uint' }, response, returnFormat !== null && returnFormat !== void 0 ? returnFormat : web3Context.defaultReturnFormat); }); } /** * View additional documentations here: {@link Web3Eth.createNewBlockFilter} * @param web3Context ({@link Web3Context}) Web3 configuration object that contains things such as the provider, request manager, wallet, etc. * @param returnFormat ({@link DataFormat}) Return format */ export function createNewBlockFilter(web3Context, returnFormat) { return __awaiter(this, void 0, void 0, function* () { const response = yield ethRpcMethods.newBlockFilter(web3Context.requestManager); return format({ format: 'uint' }, response, returnFormat !== null && returnFormat !== void 0 ? returnFormat : web3Context.defaultReturnFormat); }); } /** * View additional documentations here: {@link Web3Eth.uninstallFilter} * @param web3Context ({@link Web3Context}) Web3 configuration object that contains things such as the provider, request manager, wallet, etc. * @param filterIdentifier ({@link Numbers}) filter id */ export function uninstallFilter(web3Context, filterIdentifier) { return __awaiter(this, void 0, void 0, function* () { const response = yield ethRpcMethods.uninstallFilter(web3Context.requestManager, numberToHex(filterIdentifier)); return response; }); } /** * View additional documentations here: {@link Web3Eth.getFilterChanges} * @param web3Context ({@link Web3Context}) Web3 configuration object that contains things such as the provider, request manager, wallet, etc. * @param filterIdentifier ({@link Numbers}) filter id */ export function getFilterChanges(web3Context, filterIdentifier, returnFormat) { return __awaiter(this, void 0, void 0, function* () { const response = yield ethRpcMethods.getFilterChanges(web3Context.requestManager, numberToHex(filterIdentifier)); const result = response.map(res => { if (typeof res === 'string') { return res; } return format(logSchema, res, returnFormat !== null && returnFormat !== void 0 ? returnFormat : web3Context.defaultReturnFormat); }); return result; }); } /** * View additional documentations here: {@link Web3Eth.getFilterLogs} * @param web3Context ({@link Web3Context}) Web3 configuration object that contains things such as the provider, request manager, wallet, etc. * @param filterIdentifier ({@link Numbers}) filter id */ export function getFilterLogs(web3Context, filterIdentifier, returnFormat) { return __awaiter(this, void 0, void 0, function* () { const response = yield ethRpcMethods.getFilterLogs(web3Context.requestManager, numberToHex(filterIdentifier)); const result = response.map(res => { if (typeof res === 'string') { return res; } return format(logSchema, res, returnFormat !== null && returnFormat !== void 0 ? returnFormat : web3Context.defaultReturnFormat); }); return result; }); } //# sourceMappingURL=filtering_rpc_method_wrappers.js.map