Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tron-explore
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张建华@五瓣科技
tron-explore
Commits
58f74e08
Commit
58f74e08
authored
Dec 01, 2020
by
jianhua.zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增solidity表以及初始化数据
parent
46768dc1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
4 deletions
+27
-4
README.md
README.md
+8
-3
tron-explore.sql
tron-explore.sql
+19
-1
No files found.
README.md
View file @
58f74e08
...
...
@@ -8,8 +8,13 @@
三. 资源配置
1.
Mysql、Redis可在配置文件application-dev.yml等文件中调整
2.
抓取数据地址配置
2.
抓取
区块
数据地址配置
tron:
site: https://api.shasta.trongrid.io
site: https://api.shasta.trongrid.io
3.
合约编译接口地址配置
contract
complier:
site:http://47.115.200.174:8080/api/explorer/v1/compileSolidity
\ No newline at end of file
tron-explore.sql
View file @
58f74e08
...
...
@@ -159,7 +159,6 @@ CREATE TABLE `tron_census` (
-- ----------------------------
-- Records of tron_census
-- ----------------------------
INSERT
INTO
`tron_census`
VALUES
(
'30'
,
'124576'
,
'1478493716'
,
'10834'
);
-- ----------------------------
-- Table structure for `tron_contract`
...
...
@@ -180,3 +179,22 @@ CREATE TABLE `tron_contract` (
-- ----------------------------
-- Records of tron_contract
-- ----------------------------
-- ----------------------------
-- Table structure for `tron_solidity_version`
-- ----------------------------
DROP
TABLE
IF
EXISTS
`tron_solidity_version`
;
CREATE
TABLE
`tron_solidity_version`
(
`id`
bigint
(
20
)
NOT
NULL
,
`version`
varchar
(
50
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COMMENT
=
'solidity版本号'
;
-- ----------------------------
-- Records of tron_solidity_version
-- ----------------------------
INSERT
INTO
`tron_solidity_version`
VALUES
(
'1'
,
'solidity0.4.25+commit'
);
INSERT
INTO
`tron_solidity_version`
VALUES
(
'2'
,
'solidity0.5.14+commit'
);
INSERT
INTO
`tron_solidity_version`
VALUES
(
'3'
,
'solidity0.6.12+commit'
);
INSERT
INTO
`tron_solidity_version`
VALUES
(
'4'
,
'solidity0.7.4+commit'
);
INSERT
INTO
`tron_solidity_version`
VALUES
(
'5'
,
'solidity0.8.0-nightly'
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment