Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
public set accountId(id: string) {
this._accountId = normalizeAddress(id);
this.emit(ProviderEvent.ACCOUNT_CHANGE, id);
}
public set orderGatewayId(id: string) {
this._orderGatewayId = normalizeAddress(id);
}
this._unsafeRecipientIds = (ids || []).map((id) => normalizeAddress(id));
}