You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# URL prefix for retrieving reward distribution data.
119
+
# A full URL will be constructed by appending the epoch id and expected file name: <prefix>/<epochId>/reward-distribution-data.json
127
120
#
128
-
# The rewards hash file is expected to have the following structure:
129
-
# {
130
-
# "rewardEpochId": <epoch id>,
131
-
# "noOfWeightBasedClaims": <number of weight-based claims>,
132
-
# "merkleRoot": "<markle root of all claims for the epoch>"
133
-
# }
134
-
hash_path_prefix = ""
135
-
signing_window = 2# (optional) how many epochs in the past we attempt to sign rewards for, default: 2.
121
+
# For example, if reward data for an epoch can be retrieved at https://raw.githubusercontent.com/flare-foundation/fsp-rewards/refs/heads/main/songbird/240/reward-distribution-data.json,
122
+
# then the url_prefix should be set to "https://raw.githubusercontent.com/flare-foundation/fsp-rewards/refs/heads/main/songbird"
123
+
url_prefix = ""
124
+
min_reward = 0# minimum acceptable claim amount in wei for the identity address of this provider, default 0.
125
+
max_reward = 0# (optional) maximum acceptable claim amount in wei for the identity address of this provider. If 0 or not set, no maximum is enforced.
126
+
retries = 8# (optional) number of retries for fetching and signing reward data, default: 8.
127
+
retry_interval = "6h"# (optional) interval between retries, default: 6 hours.
0 commit comments