Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
slvler committed Dec 30, 2024
1 parent 8c0f295 commit 6261236
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Etherscan Service
[![tests](https://github.com/slvler/etherscan-service/actions/workflows/tests.yml/badge.svg)](https://github.com/slvler/etherscan-service/actions/workflows/tests.yml)
[![Latest Stable Version](https://img.shields.io/packagist/v/slvler/ether.svg)](https://packagist.org/packages/slvler/ether)
[![Total Downloads](https://poser.pugx.org/slvler/ether/downloads)](https://packagist.org/packages/slvler/ether)
[![License](https://poser.pugx.org/slvler/ether/license)](https://packagist.org/packages/slvler/ether)

[![Total Downloads](https://poser.pugx.org/slvler/ether/downloads)](https://packagist.org/packages/slvler/ether)
An api service for etherscan.io

## Requirements
Expand Down
2 changes: 2 additions & 0 deletions src/Services/EtherScanService.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
class EtherScanService
{
private $base_url;

private $api_key;

private $client;

public function __construct()
Expand Down
6 changes: 3 additions & 3 deletions tests/Feature/EtherScanTest.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace slvler\ether\Tests\Feature;
namespace Slvler\Ether\Tests\Feature;

use slvler\ether\Services\EtherScanService;
use slvler\ether\Tests\Unit\TestCase;
use Slvler\Ether\Services\EtherScanService;
use Slvler\Ether\Tests\Unit\TestCase;

class EtherScanTest extends TestCase
{
Expand Down
8 changes: 3 additions & 5 deletions tests/Unit/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace slvler\ether\Tests\Unit;
namespace Slvler\Ether\Tests\Unit;

use slvler\ether\EtherServiceProvider;
use Slvler\Ether\EtherServiceProvider;

class TestCase extends \Orchestra\Testbench\TestCase
{
Expand All @@ -18,7 +18,5 @@ protected function getPackageProviders($app)
];
}

protected function getEnvironmentSetUp($app)
{
}
protected function getEnvironmentSetUp($app) {}
}

0 comments on commit 6261236

Please sign in to comment.