Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ on:
- main
pull_request:
branches:
- dev
- main
- '**'
issue_comment:
inputs:
workflowBranch:
Expand Down
32 changes: 16 additions & 16 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shardeum-foundation/explorer",
"version": "1.1.0-prerelease.0",
"version": "1.2.0-prerelease.0",
"main": "dist/server.js",
"scripts": {
"server": "npm run prepare && node dist/server.js",
Expand Down Expand Up @@ -31,9 +31,9 @@
"release:major": "npm run prepare && npm run build && npm version major && git push --follow-tags"
},
"dependencies": {
"@shardeum-foundation/lib-archiver-discovery": "1.2.0-prerelease.0",
"@shardeum-foundation/lib-crypto-utils": "4.2.0-prerelease.0",
"@shardeum-foundation/lib-types": "1.3.0-prerelease.0",
"@shardeum-foundation/lib-archiver-discovery": "1.3.0-prerelease.0",
"@shardeum-foundation/lib-crypto-utils": "4.3.0-prerelease.0",
"@shardeum-foundation/lib-types": "1.4.0-prerelease.0",
"@ethereumjs/rlp": "5.0.0",
"@ethereumjs/tx": "5.0.0",
"@ethereumjs/util": "9.0.0",
Expand Down
2 changes: 1 addition & 1 deletion scripts/itn_scripts/cycles_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

base_path = 's3://shardeumdb/'

subfolders = ['beta1.9.3-explorer/','beta1.9.7_26Feb24/','dapp1.5.6-explorer/','dapp1.6.1-explorer/','dapp1.7.1-explorer/','sphinx1.0-explorer/','sphnix2.0-explorer/','sphnix3.0-explorer/','beta1.10.3/']
subfolders = ['beta1.9.3-explorer/','beta1.9.7_26Feb24/','dapp1.5.6-explorer/','dapp1.6.1-explorer/','dapp1.7.1-explorer/','sphinx1.0-explorer/','sphinx2.0-explorer/','sphinx3.0-explorer/','beta1.10.3/']


for subfolder in subfolders:
Expand Down
2 changes: 1 addition & 1 deletion scripts/itn_scripts/transactions_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def extract_stake_component(row, component):
for stakeitr in stake:
df[stakeitr] = df.apply(lambda row: extract_stake_component(row, stakeitr), axis=1)

df = df.drop(['wrappedEVMAccount','readable_receipt','stakeInfo','logs','originTxData'], axis=1)
df = df.drop(['wrappedEVMAccount','readable_receipt','stakeInfo','logs','originalTxData'], axis=1)

df['data'] = df['data'].str.slice(0, 65534)

Expand Down
2 changes: 1 addition & 1 deletion src/class/DataSync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ export async function downloadOriginalTxsDataByCycle(
}
}

export const downloadCyclcesBetweenCycles = async (
export const downloadCyclesBetweenCycles = async (
startCycle: number,
totalCyclesToSync: number,
saveOnlyNewData = false
Expand Down