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

VRF-780: updating VRF Owner contract; VRF-847: add posibility to deploy test coordinator, better customisation options for VRF job spec #11769

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8b88ac8
VRF-780: updating VRF Owner contract
iljapavlovs Jan 12, 2024
ca20991
VRF-847: add missing go binding
iljapavlovs Jan 12, 2024
4497763
VRF-847: fixing solidity lint
iljapavlovs Jan 12, 2024
eb379cc
VRF-847: fixing compile error
iljapavlovs Jan 12, 2024
e04c23a
VRF-847: fixing solidity lint
iljapavlovs Jan 12, 2024
820255a
VRF-847: fixing go lint issue
iljapavlovs Jan 12, 2024
d04833e
VRF-847: fixing go lint issue
iljapavlovs Jan 12, 2024
a249d7a
Merge branch 'develop' into chore/VRF-780-updating-vrf-owner-adding-t…
iljapavlovs Jan 12, 2024
55c422c
VRF-847: update
iljapavlovs Jan 15, 2024
f32cdf9
Merge remote-tracking branch 'origin/chore/VRF-780-updating-vrf-owner…
iljapavlovs Jan 15, 2024
2f80f99
VRF-847: minor updates
iljapavlovs Jan 15, 2024
ac40f66
fixing go lint
iljapavlovs Jan 16, 2024
8e5a04f
Merge branch 'develop' into chore/VRF-780-updating-vrf-owner-adding-t…
iljapavlovs Jan 19, 2024
0cc430a
fixing VRF v2 Plus load test
iljapavlovs Jan 19, 2024
9970f4e
reverting pnpm-lock.yaml changes
iljapavlovs Jan 22, 2024
8f4e9e0
adding billing type to load tests; finishing CTF test for VRF Owner
iljapavlovs Jan 23, 2024
ebf9609
sync with develop
iljapavlovs Jan 23, 2024
5213e4e
fixing VRF V2 Plus test
iljapavlovs Jan 23, 2024
e1fe2fd
Merge branch 'develop' into chore/VRF-780-updating-vrf-owner-adding-t…
iljapavlovs Jan 23, 2024
05db35d
decreasing max gas price for VRF V2 Plus test
iljapavlovs Jan 23, 2024
3c07e8e
Merge remote-tracking branch 'origin/chore/VRF-780-updating-vrf-owner…
iljapavlovs Jan 23, 2024
58c7386
fixing typo
iljapavlovs Jan 23, 2024
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 .github/workflows/on-demand-vrfv2-performance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:
- "POLYGON_MUMBAI"
- "AVALANCHE_FUJI"
- "AVALANCHE_MAINNET"
- "NEXON_DEV"
fundingPrivateKey:
description: Private funding key (Skip for Simulated)
required: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:
- "POLYGON_MUMBAI"
- "AVALANCHE_FUJI"
- "AVALANCHE_MAINNET"
- "NEXON_DEV"
fundingPrivateKey:
description: Private funding key (Skip for Simulated)
required: false
Expand Down Expand Up @@ -71,7 +72,8 @@ jobs:
contents: read
env:
LOKI_URL: ${{ secrets.LOKI_URL }}
LOKI_TOKEN: ${{ secrets.LOKI_TOKEN }}
LOKI_TENANT_ID: ${{ secrets.LOKI_TENANT_ID }}
LOKI_BASIC_AUTH: ${{ secrets.LOKI_BASIC_AUTH }}
SELECTED_NETWORKS: ${{ inputs.network }}
TEST_TYPE: ${{ inputs.performanceTestType }}
VRFV2PLUS_TEST_DURATION: ${{ inputs.testDuration }}
Expand Down
2 changes: 2 additions & 0 deletions contracts/scripts/native_solc_compile_all_vrf
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ compileContract vrf/testhelpers/VRFLoadTestOwnerlessConsumer.sol
compileContract vrf/testhelpers/VRFLoadTestExternalSubOwner.sol
compileContract vrf/testhelpers/VRFV2LoadTestWithMetrics.sol
compileContract vrf/testhelpers/VRFV2OwnerTestConsumer.sol
compileContractAltOpts vrf/testhelpers/VRFCoordinatorTestV2.sol 10000
compileContract vrf/testhelpers/VRFMockETHLINKAggregator.sol

# Helper contracts
compileContract vrf/interfaces/IAuthorizedReceiver.sol
Expand Down
Loading
Loading