This proposal updates the existing IBC rate limit on channel-3 (Initia ↔ Noble) for USDC from 20% to 50% per hour for both inflows and outflows.
The previous 20% rate limit has been in effect and the network has demonstrated healthy activity. Raising the threshold to 50% reduces unnecessary friction for large but legitimate transfers, while still providing a meaningful circuit breaker against exploits or abnormal fund movements.
Rate Limit Parameters
| Parameter | Value |
|---|---|
| Network | interwoven-1 (Initia Mainnet) |
| Channel | channel-3 (Initia ↔ Noble) |
| Counterparty | Noble (noble-1), counterparty channel channel-129 |
| Token | USDC |
| IBC Denom | ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4 |
| Max Send (outflow) | ~~20%~~ → 50% per hour |
| Max Recv (inflow) | ~~20%~~ → 50% per hour |
| Duration | 1 hour |
Technical Implementation
This proposal executes a MsgUpdateRateLimit via the ratelimit.v1 module (ref: cosmos/ibc-apps rate-limiting module).
{
"messages": [
{
"@type": "/ratelimit.v1.MsgUpdateRateLimit",
"authority": "init10d07y265gmmuvt4z0w9aw880jnsr700j55nka3",
"denom": "ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4",
"channel_id": "channel-3",
"max_percent_send": "50",
"max_percent_recv": "50",
"duration_hours": 1
}
]
}