Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Horizon: Integration tests #1109

Merged
merged 23 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b6d23f3
chore: service provider integration tests
Maikol Feb 12, 2025
5e32650
fix: import hardhat tasks after build/contracts exist
Maikol Feb 12, 2025
bdd8b9d
fix: run integration tests on CI
Maikol Feb 13, 2025
dfab1db
chore: added operator tests
Maikol Feb 19, 2025
8d6fe67
chore: add delegators integration tests
Maikol Feb 20, 2025
9a0bae7
chore: add to delegation pool integration tests
Maikol Feb 21, 2025
b1c26c4
chore: working on e2e scripts
Maikol Feb 21, 2025
a727158
chore: added pre horizon upgrade state setup scripts
Maikol Mar 10, 2025
b14100a
chore: added operator, permissionless and slasher integration tests
Maikol Mar 18, 2025
5ea9832
fix: ts-lint
Maikol Mar 18, 2025
b08f5d4
chore: cleanup
Maikol Mar 19, 2025
42cc449
fix: during transition period test fixes
Maikol Mar 19, 2025
48bbd4b
chore: rename e2e to integration and moved scripts to hh tasks
Maikol Mar 25, 2025
a1adeb2
wip: moving staking actions to sdk
Maikol Mar 25, 2025
912a10f
chore: reset yarn lock file due to shenanigans
tmigone Mar 25, 2025
420c236
chore: moving actions to SDK
Maikol Mar 26, 2025
59c78fd
fix: renamed signerIndex to accountIndex
Maikol Mar 26, 2025
a375b3a
fix: added comments, change GRT asset holder for a minting account
Maikol Mar 26, 2025
2bcd0d2
chore: added more tests for service provider during transition period
Maikol Mar 27, 2025
dea2561
chore: added more service provider and delegators tests
Maikol Mar 28, 2025
aa51cf1
chore: rebase cleanup
tmigone Apr 3, 2025
7016cf9
chore: add arbitrum sepolia addresses to horizon address book
tmigone Apr 3, 2025
a2ad15a
chore: couple fixes due to rebase
tmigone Apr 3, 2025
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Logs
yarn-debug.log*
yarn-error.log*
node.log

# Dependency directories
node_modules/
Expand Down
4 changes: 2 additions & 2 deletions packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.0.0",
"@types/bs58": "^4.0.1",
"@types/chai": "4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.2.0",
"@types/inquirer": "^7.3.1",
"@types/minimist": "^1.2.1",
Expand All @@ -43,7 +43,7 @@
"@urql/core": "^2.1.3",
"arbos-precompiles": "^1.0.2",
"bignumber.js": "^9.0.0",
"chai": "^4.3.4",
"chai": "4.3.4",
"chai-as-promised": "^7.1.1",
"cli-table": "^0.3.6",
"console-table-printer": "^2.11.1",
Expand Down
1 change: 1 addition & 0 deletions packages/data-edge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/hardhat-upgrades": "^1.8.2",
"@tenderly/api-client": "^1.0.13",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
Expand Down
2 changes: 0 additions & 2 deletions packages/hardhat-graph-protocol/src/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import fs from 'fs'

import { GraphPluginError } from './sdk/utils/error'
import { logDebug } from './logger'
import { normalizePath } from './sdk/utils/path'
Expand Down
Loading
Loading