You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried with multiple intervals here, it takes the count as total limit instead of limit per interval.
In the example below, it will only allow the first transaction, and post that you can't perform any transactions, even after hours.
// In this example, the signer can send one UserOp per minute
const rateLimitPolicy = toRateLimitPolicy({
count: 1,
interval: 60, // one minute in seconds
})
The text was updated successfully, but these errors were encountered:
I tried with multiple intervals here, it takes the count as total limit instead of limit per interval.
In the example below, it will only allow the first transaction, and post that you can't perform any transactions, even after hours.
The text was updated successfully, but these errors were encountered: