Skip to main content
Version: v2

RemoteRateLimits

Inbound/outbound rate limits for one lane direction. fastInbound/fastOutbound are the fast-finality (FTF) per-lane limits.

inbound objectrequired

A token-bucket rate limiter.

isEnabledbooleanrequired

Whether the rate limiter is enforced.

capacitystringrequired

Maximum bucket capacity.

Possible values: Value must match regular expression ^[0-9]+$

Example: 50000000000000000000000
ratestringrequired

Refill rate per second.

Possible values: Value must match regular expression ^[0-9]+$

Example: 13880000000000000000
outbound objectrequired

A token-bucket rate limiter.

isEnabledbooleanrequired

Whether the rate limiter is enforced.

capacitystringrequired

Maximum bucket capacity.

Possible values: Value must match regular expression ^[0-9]+$

Example: 50000000000000000000000
ratestringrequired

Refill rate per second.

Possible values: Value must match regular expression ^[0-9]+$

Example: 13880000000000000000
fastInbound objectnullablerequired

Fast-finality (FTF) inbound rate limit.

isEnabledbooleanrequired
capacitystringrequired

Possible values: Value must match regular expression ^[0-9]+$

ratestringrequired

Possible values: Value must match regular expression ^[0-9]+$

fastOutbound objectnullablerequired

Fast-finality (FTF) outbound rate limit.

isEnabledbooleanrequired
capacitystringrequired

Possible values: Value must match regular expression ^[0-9]+$

ratestringrequired

Possible values: Value must match regular expression ^[0-9]+$

JSON
RemoteRateLimits
{
"outbound": {
"isEnabled": true,
"capacity": "50000000000000000000000",
"rate": "13880000000000000000"
},
"inbound": {
"isEnabled": true,
"capacity": "50000000000000000000000",
"rate": "13880000000000000000"
},
"fastOutbound": null,
"fastInbound": null
}