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
Introduced NFD filtering based on major version constraints (`minMajorVersion` and `maxMajorVersion`) with appropriate documentation and configuration updates.
chore(*): upgraded `go` to 1.24 and updated key dependencies (`algorand-sdk`, `mailgun/holster`, `golang.org/x/crypto`, etc.).
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,8 @@ Some of these options conflict with eachother if specified together.
104
104
"segmentsOfRoot": "orange.algo",
105
105
"allowDuplicateAccounts": true,
106
106
"onlyRoots": false,
107
+
"minMajorVersion": 3,
108
+
"maxMajorVersion": 3,
107
109
"randomNFDs": {
108
110
"count": 100
109
111
},
@@ -127,6 +129,8 @@ Some of these options conflict with eachother if specified together.
127
129
- The owner of each NFD is used and if allowDuplicateAccounts is false, then only unique owners are chosen amongst the NFDs (picking an artbirary NFD for that owner)
128
130
-`onlyRoots`: Determines whether only root NFDs are allowed.
129
131
- If specified, only roots are chosen with segments being skipped.
132
+
-`minMajorVersion`: If specified, only NFDs with a major version >= this value are considered.
133
+
-`maxMajorVersion`: If specified, only NFDs with a major version <= this value are considered.` Using both could be used for only sending to 2.x, or 3.x.
130
134
-`randomNFDs`:
131
135
-`count`: If specified, this is the number of NFDS to choose randomly from the total list. ie: All segments of root X, but only pick 100 random recipients by specifying a count here.
132
136
-`verifiedRequirements`: An optional array of verified field names. If specified, the destination NFD must have ALL of the specified verified fields.
0 commit comments