-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rpc method * createNewPendingTransactionFilter in eth class * unit test * integration test * rpc method * web3Eth class updates * test update * type FilterParams * createNewBlockFilter test * createNewFilter test * getFilterChanges test * getFilterLogs test * uninstallFilter test * fixtures * changelog update * updated changelog * tests for coverage
- Loading branch information
Showing
17 changed files
with
900 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
/* | ||
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/>. | ||
*/ | ||
|
||
import { Web3Context } from 'web3-core'; | ||
import { ethRpcMethods } from 'web3-rpc-methods'; | ||
import { DataFormat, EthExecutionAPI, Numbers, Log, FilterParams } from 'web3-types'; | ||
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 async function createNewPendingTransactionFilter<ReturnFormat extends DataFormat>( | ||
web3Context: Web3Context<EthExecutionAPI>, | ||
returnFormat: ReturnFormat, | ||
) { | ||
const response = await ethRpcMethods.newPendingTransactionFilter(web3Context.requestManager); | ||
|
||
return format( | ||
{ format: 'uint' }, | ||
response as Numbers, | ||
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 async function createNewFilter<ReturnFormat extends DataFormat>( | ||
web3Context: Web3Context<EthExecutionAPI>, | ||
filter: FilterParams, | ||
returnFormat: ReturnFormat, | ||
) { | ||
// 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 = { ...filter, fromBlock, toBlock }; | ||
|
||
const response = await ethRpcMethods.newFilter(web3Context.requestManager, formattedFilter); | ||
|
||
return format( | ||
{ format: 'uint' }, | ||
response as Numbers, | ||
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 async function createNewBlockFilter<ReturnFormat extends DataFormat>( | ||
web3Context: Web3Context<EthExecutionAPI>, | ||
returnFormat: ReturnFormat, | ||
) { | ||
const response = await ethRpcMethods.newBlockFilter(web3Context.requestManager); | ||
|
||
return format( | ||
{ format: 'uint' }, | ||
response as Numbers, | ||
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 async function uninstallFilter( | ||
web3Context: Web3Context<EthExecutionAPI>, | ||
filterIdentifier: Numbers, | ||
) { | ||
const response = await 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 async function getFilterChanges<ReturnFormat extends DataFormat>( | ||
web3Context: Web3Context<EthExecutionAPI>, | ||
filterIdentifier: Numbers, | ||
returnFormat: ReturnFormat, | ||
) { | ||
const response = await ethRpcMethods.getFilterChanges( | ||
web3Context.requestManager, | ||
numberToHex(filterIdentifier), | ||
); | ||
|
||
const result = response.map(res => { | ||
if (typeof res === 'string') { | ||
return res; | ||
} | ||
|
||
return format( | ||
logSchema, | ||
res as unknown as Log, | ||
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 async function getFilterLogs<ReturnFormat extends DataFormat>( | ||
web3Context: Web3Context<EthExecutionAPI>, | ||
filterIdentifier: Numbers, | ||
returnFormat: ReturnFormat, | ||
) { | ||
const response = await ethRpcMethods.getFilterLogs( | ||
web3Context.requestManager, | ||
numberToHex(filterIdentifier), | ||
); | ||
|
||
const result = response.map(res => { | ||
if (typeof res === 'string') { | ||
return res; | ||
} | ||
|
||
return format( | ||
logSchema, | ||
res as unknown as Log, | ||
returnFormat ?? web3Context.defaultReturnFormat, | ||
); | ||
}); | ||
|
||
return result; | ||
} |
Oops, something went wrong.