curl -X DELETE "http://localhost:9090/igp_rules/1"
const response = await fetch('http://localhost:9090/igp_rules/1', {
method: 'DELETE',
});
import requests
response = requests.delete('http://localhost:9090/igp_rules/1')
HTTP API
Remove IGP Rule
DELETE
/
igp_rules
/
:index
curl -X DELETE "http://localhost:9090/igp_rules/1"
const response = await fetch('http://localhost:9090/igp_rules/1', {
method: 'DELETE',
});
import requests
response = requests.delete('http://localhost:9090/igp_rules/1')
Remove existing Interchain Gas Payment (IGP) rules.
This endpoint is only available when gas enforcers are configured.
number
required
Index of the IGP rule to remove
curl -X DELETE "http://localhost:9090/igp_rules/1"
const response = await fetch('http://localhost:9090/igp_rules/1', {
method: 'DELETE',
});
import requests
response = requests.delete('http://localhost:9090/igp_rules/1')
Was this page helpful?