• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-config-service / 6224542909

18 Sep 2023 03:16PM UTC coverage: 99.88%. Remained the same
6224542909

push

github

web-flow
Bump docker/setup-buildx-action from 2.10.0 to 3.0.0 (#958)

Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2.10.0 to 3.0.0.
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](https://github.com/docker/setup-buildx-action/compare/v2.10.0...v3.0.0)

---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

4177 of 4182 relevant lines covered (99.88%)

1.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/chains/migrations/0001_initial.py
1
# Generated by Django 3.2.3 on 2021-06-02 14:44
2
from typing import List, Tuple
1✔
3

4
from django.db import migrations, models
1✔
5

6

7
class Migration(migrations.Migration):
1✔
8
    initial = True
1✔
9

10
    dependencies: List[Tuple[str, str]] = []
1✔
11

12
    operations = [
1✔
13
        migrations.CreateModel(
1✔
14
            name="Chain",
1✔
15
            fields=[
1✔
16
                (
1✔
17
                    "id",
1✔
18
                    models.PositiveBigIntegerField(
1✔
19
                        primary_key=True, serialize=False, verbose_name="Chain Id"
1✔
20
                    ),
21
                ),
22
                ("name", models.CharField(max_length=255, verbose_name="Chain name")),
1✔
23
                ("rpc_url", models.URLField()),
1✔
24
                ("block_explorer_url", models.URLField(null=True)),
1✔
25
                ("currency_name", models.CharField(max_length=255, null=True)),
1✔
26
                ("currency_symbol", models.CharField(max_length=255)),
1✔
27
                ("currency_decimals", models.IntegerField(default=18)),
1✔
28
            ],
29
        ),
30
    ]
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc