@@ -99,29 +99,6 @@ function balanceOfBatch(address[] accounts, uint256[] ids) external view returns
99
99
| ---| ---| ---|
100
100
| _ 0 | uint256[ ] | undefined |
101
101
102
- ### bundle
103
-
104
- ``` solidity
105
- function bundle(uint256) external view returns (uint256 count, string uri)
106
- ```
107
-
108
-
109
-
110
-
111
-
112
- #### Parameters
113
-
114
- | Name | Type | Description |
115
- | ---| ---| ---|
116
- | _ 0 | uint256 | undefined |
117
-
118
- #### Returns
119
-
120
- | Name | Type | Description |
121
- | ---| ---| ---|
122
- | count | uint256 | undefined |
123
- | uri | string | undefined |
124
-
125
102
### canUpdatePack
126
103
127
104
``` solidity
@@ -286,6 +263,51 @@ Returns the admin role that controls the specified role.
286
263
| ---| ---| ---|
287
264
| _ 0 | bytes32 | undefined |
288
265
266
+ ### getRoleMember
267
+
268
+ ``` solidity
269
+ function getRoleMember(bytes32 role, uint256 index) external view returns (address member)
270
+ ```
271
+
272
+ Returns the role-member from a list of members for a role, at a given index.
273
+
274
+ * Returns ` member ` who has ` role ` , at ` index ` of role-members list. See struct {RoleMembers}, and mapping {roleMembers}*
275
+
276
+ #### Parameters
277
+
278
+ | Name | Type | Description |
279
+ | ---| ---| ---|
280
+ | role | bytes32 | keccak256 hash of the role. e.g. keccak256(" ; TRANSFER_ROLE" ; ) |
281
+ | index | uint256 | Index in list of current members for the role. |
282
+
283
+ #### Returns
284
+
285
+ | Name | Type | Description |
286
+ | ---| ---| ---|
287
+ | member | address | Address of account that has ` role ` |
288
+
289
+ ### getRoleMemberCount
290
+
291
+ ``` solidity
292
+ function getRoleMemberCount(bytes32 role) external view returns (uint256 count)
293
+ ```
294
+
295
+ Returns total number of accounts that have a role.
296
+
297
+ * Returns ` count ` of accounts that have ` role ` . See struct {RoleMembers}, and mapping {roleMembers}*
298
+
299
+ #### Parameters
300
+
301
+ | Name | Type | Description |
302
+ | ---| ---| ---|
303
+ | role | bytes32 | keccak256 hash of the role. e.g. keccak256(" ; TRANSFER_ROLE" ; ) |
304
+
305
+ #### Returns
306
+
307
+ | Name | Type | Description |
308
+ | ---| ---| ---|
309
+ | count | uint256 | Total number of accounts that have ` role ` |
310
+
289
311
### getRoyaltyInfoForToken
290
312
291
313
``` solidity
0 commit comments