Skip to content

Commit 7eafa56

Browse files
authored
Update issuance rate on config files (#754)
* chore: update issuanceRate on config files to match actual values Signed-off-by: Tomás Migone <[email protected]>
1 parent 0084af5 commit 7eafa56

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

config/graph.goerli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ contracts:
132132
controller: "${{Controller.address}}"
133133
calls:
134134
- fn: "setIssuanceRate"
135-
issuanceRate: "1000000012184945188" # per block increase of total supply, blocks in a year = 365*60*60*24/13
135+
issuanceRate: "1000000011247641700" # per block increase of total supply, blocks in a year = 365*60*60*24/13
136136
- fn: "setSubgraphAvailabilityOracle"
137137
subgraphAvailabilityOracle: *availabilityOracle
138138
- fn: "syncAllContracts"

config/graph.localhost.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ contracts:
132132
controller: "${{Controller.address}}"
133133
calls:
134134
- fn: "setIssuanceRate"
135-
issuanceRate: "1000000012184945188" # per block increase of total supply, blocks in a year = 365*60*60*24/13
135+
issuanceRate: "1000000011247641700" # per block increase of total supply, blocks in a year = 365*60*60*24/13
136136
- fn: "setSubgraphAvailabilityOracle"
137137
subgraphAvailabilityOracle: *availabilityOracle
138138
- fn: "syncAllContracts"

config/graph.mainnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ contracts:
132132
controller: "${{Controller.address}}"
133133
calls:
134134
- fn: "setIssuanceRate"
135-
issuanceRate: "1000000012184945188" # per block increase of total supply, blocks in a year = 365*60*60*24/13
135+
issuanceRate: "1000000011247641700" # per block increase of total supply, blocks in a year = 365*60*60*24/13
136136
- fn: "setSubgraphAvailabilityOracle"
137137
subgraphAvailabilityOracle: *availabilityOracle
138138
- fn: "syncAllContracts"

e2e/deployment/config/l1/rewardsManager.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ describe('[L1] RewardsManager configuration', () => {
1212

1313
it('issuanceRate should match "issuanceRate" in the config file', async function () {
1414
const value = await RewardsManager.issuanceRate()
15-
expect(value).eq('1000000012184945188') // hardcoded as it's set with a function call rather than init parameter
15+
expect(value).eq('1000000011247641700') // hardcoded as it's set with a function call rather than init parameter
1616
})
1717
})

0 commit comments

Comments
 (0)