- [ ] Deprecate Pending RPC Commands - [ ] Add Receivable RPC Commands - [ ] Add new Delegators options - [ ] Iterate through existing RPC commands, check new options. The following snippet should support `threshold` option. ``` export const delegatorsRpc = async (address, threshold: number): Promise<DelegatorsResponse> => NANO_CLIENT.delegators(address) .then((delegators: DelegatorsResponse) => Promise.resolve(delegators)) .catch((err) => Promise.reject(err)); ```
The following snippet should support
thresholdoption.