Compare commits

...

3 Commits

Author SHA1 Message Date
semantic-release-bot 780b2e4e4f chore(release): 0.1.0-develop.63 [skip ci]
# [0.1.0-develop.63](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.62...v0.1.0-develop.63) (2023-10-24)

### Bug Fixes

* args should not be var args ([32bf0a4](32bf0a42e2))
2023-10-24 00:46:10 +00:00
Derrick Hammer 772d7eb21e
Merge remote-tracking branch 'origin/develop' into develop 2023-10-23 20:45:10 -04:00
Derrick Hammer 32bf0a42e2
fix: args should not be var args 2023-10-23 20:45:07 -04:00
4 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
# [0.1.0-develop.63](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.62...v0.1.0-develop.63) (2023-10-24)
### Bug Fixes
* args should not be var args ([32bf0a4](https://git.lumeweb.com/LumeWeb/libethsync/commit/32bf0a42e2ee22b907768496b094cc1bee4a42cf))
# [0.1.0-develop.62](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.61...v0.1.0-develop.62) (2023-10-24) # [0.1.0-develop.62](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.61...v0.1.0-develop.62) (2023-10-24)

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@lumeweb/libethsync", "name": "@lumeweb/libethsync",
"version": "0.1.0-develop.62", "version": "0.1.0-develop.63",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lumeweb/libethsync", "name": "@lumeweb/libethsync",
"version": "0.1.0-develop.62", "version": "0.1.0-develop.63",
"dependencies": { "dependencies": {
"@chainsafe/as-sha256": "^0.3.1", "@chainsafe/as-sha256": "^0.3.1",
"@chainsafe/bls": "7.1.1", "@chainsafe/bls": "7.1.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@lumeweb/libethsync", "name": "@lumeweb/libethsync",
"version": "0.1.0-develop.62", "version": "0.1.0-develop.63",
"type": "module", "type": "module",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -397,7 +397,7 @@ export default class VerifyingProvider implements IClientVerifyingProvider {
}; };
} }
private async getLogs(...args: any) { private async getLogs(args: any) {
const { result: logs, success } = await this.rpc.request({ const { result: logs, success } = await this.rpc.request({
method: "eth_getLogs", method: "eth_getLogs",
params: [args], params: [args],