ejemplo de rawtransaction
parents
Showing
with
3541 additions
and
0 deletions
.env.example
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
app/Blockchain/Accesscontract.php
0 → 100644
app/Blockchain/ContractMethods.php
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/Middleware/EncryptCookies.php
0 → 100644
app/Http/Middleware/TrimStrings.php
0 → 100644
app/Http/Middleware/TrustProxies.php
0 → 100644
app/Http/Middleware/VerifyCsrfToken.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/AuthServiceProvider.php
0 → 100644
app/Providers/BroadcastServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.php
0 → 100644
app/Providers/RouteServiceProvider.php
0 → 100644
app/Tools/Callback.php
0 → 100644
app/Tools/Credential.php
0 → 100644
app/Tools/KeyStore.php
0 → 100644
app/User.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "laravel/laravel", | ||
"description": "The Laravel Framework.", | ||
"keywords": ["framework", "laravel"], | ||
"license": "MIT", | ||
"type": "project", | ||
"require": { | ||
"php": ">=7.0.0", | ||
"fideloper/proxy": "~3.3", | ||
"hubwiz/ethtool": "dev-master", | ||
"laravel/framework": "5.5.*", | ||
"laravel/tinker": "~1.0", | ||
"web3p/ethereum-tx": "^0.4.3", | ||
"web3p/web3.php": "dev-master" | ||
}, | ||
"require-dev": { | ||
"filp/whoops": "~2.0", | ||
"fzaninotto/faker": "~1.4", | ||
"mockery/mockery": "~1.0", | ||
"phpunit/phpunit": "~6.0", | ||
"symfony/thanks": "^1.0" | ||
}, | ||
"autoload": { | ||
"classmap": [ | ||
"database/seeds", | ||
"database/factories" | ||
], | ||
"psr-4": { | ||
"App\\": "app/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"dont-discover": [ | ||
] | ||
} | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
], | ||
"post-create-project-cmd": [ | ||
"@php artisan key:generate" | ||
], | ||
"post-autoload-dump": [ | ||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
"@php artisan package:discover" | ||
] | ||
}, | ||
"config": { | ||
"preferred-install": "dist", | ||
"sort-packages": true, | ||
"optimize-autoloader": true | ||
} | ||
} |
composer.lock
0 → 100644
This diff could not be displayed because it is too large.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/broadcasting.php
0 → 100644
config/cache.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
config/view.php
0 → 100644
database/.gitignore
0 → 100644
database/factories/UserFactory.php
0 → 100644
database/seeds/DatabaseSeeder.php
0 → 100644
package.json
0 → 100644
{ | ||
"private": true, | ||
"scripts": { | ||
"dev": "npm run development", | ||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"watch-poll": "npm run watch -- --watch-poll", | ||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"prod": "npm run production", | ||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" | ||
}, | ||
"devDependencies": { | ||
"axios": "^0.17", | ||
"bootstrap-sass": "^3.3.7", | ||
"cross-env": "^5.1", | ||
"jquery": "^3.2", | ||
"laravel-mix": "^1.0", | ||
"lodash": "^4.17.4", | ||
"vue": "^2.5.7" | ||
} | ||
} |
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/css/app.css
0 → 100644
This diff could not be displayed because it is too large.
public/favicon.ico
0 → 100644
File mode changed
public/index.php
0 → 100644
public/js/app.js
0 → 100644
This diff could not be displayed because it is too large.
public/robots.txt
0 → 100644
public/web.config
0 → 100644
readme.md
0 → 100644
resources/assets/js/app.js
0 → 100644
resources/assets/js/bootstrap.js
0 → 100644
resources/assets/sass/_variables.scss
0 → 100644
resources/assets/sass/app.scss
0 → 100644
resources/lang/en/auth.php
0 → 100644
resources/lang/en/pagination.php
0 → 100644
resources/lang/en/passwords.php
0 → 100644
resources/lang/en/validation.php
0 → 100644
resources/views/welcome.blade.php
0 → 100644
routes/api.php
0 → 100644
routes/channels.php
0 → 100644
routes/console.php
0 → 100644
routes/web.php
0 → 100644
server.php
0 → 100644
storage/app/.gitignore
0 → 100644
storage/app/public/.gitignore
0 → 100644
storage/framework/.gitignore
0 → 100644
storage/framework/cache/.gitignore
0 → 100644
storage/framework/sessions/.gitignore
0 → 100644
storage/framework/testing/.gitignore
0 → 100644
storage/framework/views/.gitignore
0 → 100644
storage/logs/.gitignore
0 → 100644
tests/CreatesApplication.php
0 → 100644
tests/Feature/ExampleTest.php
0 → 100644
tests/TestCase.php
0 → 100644
tests/Unit/ExampleTest.php
0 → 100644
webpack.mix.js
0 → 100644
Please
register
or
sign in
to comment