export BRIDGE_ID=29 # Replace with your actual bridge ID. You can get it from `${REST_URL}/opinit/opchild/v1/bridge_info`
export VERSION=1 # Use 1 unless your rollup has been delisted before
export NEW_COMMISSION_RATE=0.05 # Replace with the new commission rate (e.g., 0.05 for 5%)
export OPERATOR_KEY_NAME=operator # Replace with your operator key name. Check `initiad keys list` for the list of your keys
export VIP_CONTRACT='init182yxkv4gqfvz7tjyde6dfgjdr4ldqxklgmf23aju2u3cslnss7ys6dy6w8'
export RPC_URL='https://rpc.initia.xyz'
export CHAIN_ID='interwoven-1'
initiad tx move execute-json
$VIP_CONTRACT vip update_operator_commission \
--args '["'${BRIDGE_ID}'",
"'${VERSION}'", "'${NEW_COMMISSION_RATE}'"]' \
--from $OPERATOR_KEY_NAME \
--node $RPC_URL \
--chain-id $CHAIN_ID \
--gas-prices 0.015uinit \
--gas auto