forked from protofire/rootstock-transaction-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
98 changed files
with
2,761 additions
and
1,318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
asgiref==3.7.2 | ||
boto3==1.34.103 | ||
cachetools==5.3.3 | ||
boto3==1.34.144 | ||
cachetools==5.4.0 | ||
celery==5.4.0 | ||
django==5.0.4 | ||
django==5.0.7 | ||
django-cache-memoize==0.2.0 | ||
django-celery-beat==2.6.0 | ||
django-cors-headers==4.3.1 | ||
django-db-geventpool==4.0.2 | ||
django-cors-headers==4.4.0 | ||
django-db-geventpool==4.0.6 | ||
django-debug-toolbar | ||
django-debug-toolbar-force | ||
django-environ==0.11.2 | ||
|
@@ -16,8 +16,8 @@ django-imagekit==5.0.0 | |
django-model-utils==4.5.1 | ||
django-redis==5.4.0 | ||
django-s3-storage==0.15.0 | ||
django-timezone-field==6.1.0 | ||
djangorestframework==3.15.1 | ||
django-timezone-field==7.0 | ||
djangorestframework==3.15.2 | ||
djangorestframework-camel-case==1.4.2 | ||
docutils==0.21.2 | ||
drf-yasg[validation]==1.21.7 | ||
|
@@ -28,11 +28,10 @@ hexbytes==0.3.1 | |
hiredis==2.3.2 | ||
packaging>=21.0 | ||
pika==1.3.2 | ||
pillow==10.3.0 | ||
pillow==10.4.0 | ||
psycogreen==1.0.2 | ||
psycopg2==2.9.9 | ||
redis==5.0.4 | ||
requests==2.31.0 | ||
git+https://github.com/protofire/[email protected]#egg=safe-eth-py | ||
# safe-eth-py[django]==6.0.0b29 | ||
web3==6.18.0 | ||
redis==5.0.7 | ||
requests==2.32.3 | ||
safe-eth-py[django]==6.0.0b35 | ||
web3==6.20.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...nt_abstraction/migrations/0004_rename_call_data_gas_limit_useroperation_call_gas_limit.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 5.0.4 on 2024-05-30 08:37 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("account_abstraction", "0003_alter_useroperationreceipt_reason"), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name="useroperation", | ||
old_name="call_data_gas_limit", | ||
new_name="call_gas_limit", | ||
), | ||
] |
45 changes: 45 additions & 0 deletions
45
...ervice/account_abstraction/migrations/0005_alter_safeoperation_module_address_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Generated by Django 5.0.7 on 2024-07-19 12:53 | ||
|
||
from django.db import migrations | ||
|
||
import gnosis.eth.django.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"account_abstraction", | ||
"0004_rename_call_data_gas_limit_useroperation_call_gas_limit", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="safeoperation", | ||
name="module_address", | ||
field=gnosis.eth.django.models.EthereumAddressBinaryField(db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="safeoperationconfirmation", | ||
name="owner", | ||
field=gnosis.eth.django.models.EthereumAddressBinaryField(), | ||
), | ||
migrations.AlterField( | ||
model_name="useroperation", | ||
name="entry_point", | ||
field=gnosis.eth.django.models.EthereumAddressBinaryField(db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="useroperation", | ||
name="paymaster", | ||
field=gnosis.eth.django.models.EthereumAddressBinaryField( | ||
blank=True, db_index=True, null=True | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="useroperation", | ||
name="sender", | ||
field=gnosis.eth.django.models.EthereumAddressBinaryField(db_index=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.