https://github.com/null-none/django-eth-fields
Helpers for Python Django projects using ethereum
https://github.com/null-none/django-eth-fields
blockchain blockchain-technology eth ethereum python python3 web3
Last synced: 2 months ago
JSON representation
Helpers for Python Django projects using ethereum
- Host: GitHub
- URL: https://github.com/null-none/django-eth-fields
- Owner: null-none
- License: mit
- Created: 2022-02-17T15:33:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-17T15:53:14.000Z (over 3 years ago)
- Last Synced: 2025-03-27T21:11:58.474Z (3 months ago)
- Topics: blockchain, blockchain-technology, eth, ethereum, python, python3, web3
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
Django Eth Fields
===================Helpers for Python Django projects using ethereum
Installation
------------Using pip
$ pip install django-eth-fields
Example
-----from django_eth_fields.fields import EthereumAddressField, HexField, Uint256Field
class MyModel(models.Model):
address = EthereumAddressField()
hex = HexField()
unit_255 = Uint256Field()