Skip to content

Commit

Permalink
Merge pull request #14 from Peersyst/van/fix/private-indexer-vars
Browse files Browse the repository at this point in the history
[VAN] fix: `Indexer` private variables
  • Loading branch information
AgustinMJ authored Mar 15, 2024
2 parents 2562427 + 6321f86 commit 3283d10
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 30 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bloxer/ethers",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Lightweight and simple ethers indexer framework based on custom events.",
"private": false,
"main": "src/index.ts",
Expand All @@ -11,7 +11,7 @@
"author": "Peersyst",
"license": "ISC",
"dependencies": {
"@bloxer/vanilla": "^1.0.0-alpha.1",
"@bloxer/vanilla": "^1.0.0-alpha.2",
"ethers": "5.7"
},
"sideEffects": false,
Expand Down
6 changes: 3 additions & 3 deletions packages/ethers/packages/typechain-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bloxer/ethers-typechain-contract",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Lightweight and simple ethers typechain-contract indexer based on custom events.",
"private": false,
"main": "src/index.ts",
Expand All @@ -11,8 +11,8 @@
"author": "Peersyst",
"license": "ISC",
"dependencies": {
"@bloxer/ethers": "^1.0.0-alpha.1",
"@bloxer/vanilla": "^1.0.0-alpha.1",
"@bloxer/ethers": "^1.0.0-alpha.2",
"@bloxer/vanilla": "^1.0.0-alpha.2",
"@ethersproject/providers": "^5.7.2",
"ethers": "5.7"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vanilla/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bloxer/vanilla",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Lightweight and simple blockchain indexer framework based on custom events.",
"private": false,
"main": "src/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/vanilla/src/Indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ export abstract class Indexer<Generics extends IndexerGenerics> {
/**
* The last event processed before the indexer is started.
*/
lastEvent: LastEvent | undefined;
private lastEvent: LastEvent | undefined;

/**
* Whether the last event has been reached and new events can be processed.
*/
reachedLastEvent = false;
private reachedLastEvent = false;

/**
* Requests the provider with retries
Expand Down
4 changes: 2 additions & 2 deletions packages/xrpl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bloxer/xrpl",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Lightweight and simple xrpl indexer framework based on custom events.",
"private": false,
"main": "src/index.ts",
Expand All @@ -11,7 +11,7 @@
"author": "Peersyst",
"license": "ISC",
"dependencies": {
"@bloxer/vanilla": "^1.0.0-alpha.1",
"@bloxer/vanilla": "^1.0.0-alpha.2",
"xrpl": "^2.12.0-beta.0"
},
"sideEffects": false,
Expand Down
6 changes: 3 additions & 3 deletions packages/xrpl/packages/account/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bloxer/xrpl-account",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Lightweight and simple xrpl account indexer based on custom events.",
"private": false,
"main": "src/index.ts",
Expand All @@ -11,8 +11,8 @@
"author": "Peersyst",
"license": "ISC",
"dependencies": {
"@bloxer/vanilla": "^1.0.0-alpha.1",
"@bloxer/xrpl": "^1.0.0-alpha.1",
"@bloxer/vanilla": "^1.0.0-alpha.2",
"@bloxer/xrpl": "^1.0.0-alpha.2",
"xrpl": "^2.12.0-beta.0"
},
"sideEffects": false,
Expand Down
6 changes: 3 additions & 3 deletions packages/xrpl/packages/ledgers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bloxer/xrpl-ledgers",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Lightweight and simple xrpl ledgers indexer based on custom events.",
"private": false,
"main": "src/index.ts",
Expand All @@ -11,8 +11,8 @@
"author": "Peersyst",
"license": "ISC",
"dependencies": {
"@bloxer/vanilla": "^1.0.0-alpha.1",
"@bloxer/xrpl": "^1.0.0-alpha.1"
"@bloxer/vanilla": "^1.0.0-alpha.2",
"@bloxer/xrpl": "^1.0.0-alpha.2"
},
"sideEffects": false,
"publishConfig": {
Expand Down

0 comments on commit 3283d10

Please sign in to comment.