Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.2 #3

Merged
merged 3 commits into from
Mar 20, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change namespace and packages version.
  • Loading branch information
sc0Vu committed Mar 20, 2018
commit 248dd7548bc2b94b523f82098d7c263a8da8409b
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
],
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "~6.0"
"phpunit/phpunit": "^6.1"
},
"autoload": {
"psr-4": {
"EthereumTx\\": "src/"
"Web3p\\EthereumTx\\": "src/"
}
},
"autoload-dev": {
Expand All @@ -24,8 +24,8 @@
}
},
"require": {
"web3p/rlp": "dev-master",
"web3p/secp256k1": "dev-master",
"kornrunner/keccak": "dev-master"
"web3p/rlp": "~0.2",
"web3p/secp256k1": "~0.2",
"kornrunner/keccak": "~1"
}
}
88 changes: 42 additions & 46 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
* @license MIT
*/

namespace EthereumTx;
namespace Web3p\EthereumTx;

use InvalidArgumentException;
use RuntimeException;
use kornrunner\Keccak;
use RLP\RLP;
use Secp256k1\Secp256k1;
use Web3p\RLP\RLP;
use Web3p\Secp256k1\Secp256k1;
use ArrayAccess;

class Transaction implements ArrayAccess
Expand Down Expand Up @@ -57,14 +57,14 @@ class Transaction implements ArrayAccess
/**
* rlp
*
* @var \RLP\RLP
* @var \Web3p\RLP\RLP
*/
protected $rlp;

/**
* secp256k1
*
* @var \Secp256k1\Secp256k1
* @var \Web3p\Secp256k1\Secp256k1
*/
protected $secp256k1;

Expand Down
Loading