@@ -99,29 +99,6 @@ function balanceOfBatch(address[] accounts, uint256[] ids) external view returns
9999| ---| ---| ---|
100100| _ 0 | uint256[ ] | undefined |
101101
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-
125102### canUpdatePack
126103
127104``` solidity
@@ -286,6 +263,51 @@ Returns the admin role that controls the specified role.
286263| ---| ---| ---|
287264| _ 0 | bytes32 | undefined |
288265
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+
289311### getRoyaltyInfoForToken
290312
291313``` solidity
0 commit comments