Manage policies
Important
Policies are currently only available in validium mode.
Managing allowlists, denylists, and ACLs is done with policies.
Policy overview¶
A policy is a set of rules that govern what actions are allowed or denied in the transaction pool.
- Fine-grained control: Developers can specify policies at a granular level, allowing or denying specific actions for specific addresses.
- Dynamic updates: Policies and ACLs can be updated on-the-fly without requiring a node restart.
- Database-backed: All policy data is stored in a PostgreSQL database.
- Extensible: New policies can be easily added to the system.
Validium node¶
Policies¶
Currently, there are two defined policies:
- SendTx: governs whether an address may send transactions to the pool.
- Deploy: governs whether an address may deploy a contract.
The CDK validium node offers policy management features that include allowlisting1, denylisting2, and access control lists (ACLs)3. These features are beneficial for validium-based app-chains that require fine-grained control over transaction pools.
Code definitions¶
- Policy management:
cmd/policy.go
contains the core logic of policy management. - Policy definitions:
pool/policy.go
contains structs and utility functions for policies and ACLs. - Data:
pgpoolstorage/policy.go
interacts with the data layer (PostgreSQL database) to store and retrieve policy and ACL data. - Policy interface:
pool/interfaces.go
contains apolicy
interface which defines the methods that policies must implement.
How to use a policy¶
Command name | Description | Flags & parameters |
---|---|---|
policy add |
Add address(es) to a policy exclusion list | --policy (or -p ): Policy name--csv : CSV file with addresses |
policy remove |
Remove address(es) from a policy exclusion list | --policy (or -p ): Policy name--csv : CSV file with addresses to remove |
policy clear |
Clear all addresses from a policy’s exclusion list | --policy (or -p ): Policy name |
policy describe |
Describe the default actions for the policies or a specific policy | --policy (or -p ): Policy name (optional)--no-header : Omit header in output (optional) |
policy update |
Update the default action for a policy | --policy (or -p ): Policy name--allow : Set policy to ‘allow’--deny : Set policy to ‘deny’ |
Note
The examples demonstrate a deploy
policy.
Add addresses¶
To add one or more addresses to a specific policy, you can use the policy add
command. If you have a CSV file containing the addresses, you can use the –csv` flag.
docker exec -it cdk-validium-aggregator /app/cdk-validium-node policy add --policy deploy 0xAddress1
Remove addresses¶
To remove addresses from a policy, you can use the policy remove
command.
# Remove a single address from the 'deploy' policy
docker exec -it cdk-validium-aggregator /app/cdk-validium-node policy remove --policy deploy 0xAddress1
# Remove multiple addresses from the 'deploy' policy using a CSV file
docker exec -it cdk-validium-aggregator /app/cdk-validium-node policy remove --policy deploy --csv addresses.csv
Clear all addresses¶
To remove all addresses from a policy’s ACL, you can use the policy clear
command.
docker exec -it cdk-validium-aggregator /app/cdk-validium-node policy clear --policy deploy
Get information about a policy¶
To get information about a specific policy or all policies, you can use the policy describe
command.
# Describe a specific policy
docker exec -it cdk-validium-aggregator /app/cdk-validium-node policy describe --policy deploy
# Describe all policies
docker exec -it cdk-validium-aggregator /app/cdk-validium-node policy describe