Aleš Ferlan

Results 16 issues of Aleš Ferlan

I am trying to configure Stripe webhooks and it doesn't seem to work for me: I configured the app: ```typescript StripeModule.forRoot(StripeModule, { apiKey: stripeSecretKey, webhookConfig: { stripeWebhookSecret: stripeWebhookSecret, // controllerPrefix:...

stripe

### Clear and concise description of the problem Faker works great when you're trying to generate random address and ip locations, but the generated addresses are not good when you...

c: feature
s: needs decision
m: address

I get an error when trying to get an address from string using regtest network. ```javascript const address = Address.fromString('RF1PJ1VkHG6H9dwoE2k19a5aigWcWr6Lsu', 'regtest'); % multisig/node_modules/bcoin/lib/protocol/network.js:226 throw new Error(`Network mismatch for ${name}.`); ^...

I added support for rinkeby and goerli testnets. I'm working on rinkeby, but I added and tested codegen on goerli as well.

Please provide an example for eth_signTypedData method. I'm trying to use your library instead of web3 and so far it works great! However I'm trying to implement signTypedData and don't...

## Issue description I'm receiving errors in the log by the node failing to send telemetry data. ## Expected behavior Logs sent without an error ## Actual behavior Receive error...

bug
v6

- **OpenEthereum version**: v3.3.0-rc.11 - **Operating system**: Linux - **Installation**: homebrew - **Fully synchronized**: yes - **Network**: kovan - **Restarted**: yes About 10 days ago the node started throwing broken...

Added api endpoint for metrics. Started working on adding UI support for completed/failed graph, but I suck at React so it might take a while :sweat_smile: Updates #618

enhancement

Bull and BullMQ support metrics, which can be enabled with metrics option: ```typescript // Bull new Queue3( queueName, { metrics: { maxDataPoints: MetricsTime.ONE_WEEK } } ); // BullMQ (in worker)...

enhancement

Trying to connect to a redis instance using path param in options fails with ENOENT error, while initializing ioredis with path works. ```typescript import Redis from 'ioredis'; new Redis('redis://127.0.0.1:6379') //...