Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
token
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
wallet
token
Commits
95e79695
Commit
95e79695
authored
Nov 25, 2019
by
shajiaiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
f928ae53
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
16 deletions
+49
-16
WalletController.php
api/controllers/WalletController.php
+23
-4
Chain33Service.php
common/service/chain33/Chain33Service.php
+5
-2
IssueChainController.php
wallet/controllers/IssueChainController.php
+21
-10
No files found.
api/controllers/WalletController.php
View file @
95e79695
...
...
@@ -6,6 +6,7 @@ use api\base\BaseController;
use
common\models\psources\CoinAirDropTrade
;
use
common\models\psources\CoinIssueTransfer
;
use
common\models\psources\CoinPlatform
;
use
common\models\psources\CoinPlatformWithHold
;
use
common\service\chain33\Chain33Service
;
use
Yii
;
...
...
@@ -82,17 +83,35 @@ class WalletController extends BaseController
$msg
=
'success'
;
$platform_id
=
Yii
::
$app
->
request
->
get
(
'platform_id'
,
''
);
$token
=
Yii
::
$app
->
request
->
get
(
'address'
,
''
);
if
(
empty
(
$platform_id
)
||
empty
(
$token
))
{
$symbol
=
Yii
::
$app
->
request
->
get
(
'symbol'
,
''
);
if
(
empty
(
$platform_id
)
||
empty
(
$token
)
||
empty
(
$symbol
))
{
$msg
=
'参数不能为空'
;
$code
=
-
1
;
$data
=
null
;
goto
doEnd
;
}
$node
=
Yii
::
$app
->
params
[
'chain_parallel'
][
'primary'
];
$chain_model
=
CoinPlatform
::
find
()
->
select
(
'chain_id'
)
->
where
([
'id'
=>
$platform_id
])
->
andWhere
([
'<>'
,
'chain_id'
,
0
])
->
one
();
if
(
empty
(
$chain_model
))
{
$msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$code
=
-
1
;
goto
doEnd
;
}
$platform
=
CoinPlatformWithHold
::
find
()
->
select
(
'exer, platform'
)
->
where
([
'id'
=>
$chain_model
->
chain_id
])
->
one
();
if
(
empty
(
$platform
))
{
$msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$code
=
-
1
;
goto
doEnd
;
}
$node
=
Yii
::
$app
->
params
[
'chain_nodes'
][
strtoupper
(
$platform
->
platform
)];
if
(
empty
(
$node
))
{
$msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$code
=
-
1
;
goto
doEnd
;
}
$service
=
new
Chain33Service
(
$node
);
$address
[]
=
$token
;
$execer
=
'coins'
;
$result
=
$service
->
getBalance
(
$address
,
$execer
);
$result
=
$service
->
getBalance
(
$address
,
$platform
->
exer
,
$symbol
);
if
(
0
!==
$result
[
'code'
])
{
$msg
=
'当前发币人数过多,请客官稍后再试'
;
$code
=
-
1
;
...
...
common/service/chain33/Chain33Service.php
View file @
95e79695
...
...
@@ -256,12 +256,15 @@ class Chain33Service
return
$this
->
send
(
$params
,
'Chain33.Query'
);
}
public
function
getBalance
(
$address
,
$execer
)
public
function
getBalance
(
$address
,
$execer
,
$tokenSymbol
=
''
)
{
$params
=
[
'addresses'
=>
$address
,
'execer'
=>
$execer
'execer'
=>
$execer
,
];
if
(
!
empty
(
$tokenSymbol
))
{
$params
=
array_merge
(
$params
,
[
'tokenSymbol'
=>
$tokenSymbol
]);
}
return
$this
->
send
(
$params
,
'Chain33.GetBalance'
);
}
...
...
wallet/controllers/IssueChainController.php
View file @
95e79695
...
...
@@ -176,15 +176,26 @@ class IssueChainController extends BaseController
{
$data
=
null
;
$group
=
Yii
::
$app
->
request
->
getGroup
();
if
(
'administrator'
==
$group
)
{
$chains
=
array_keys
(
Yii
::
$app
->
params
[
'chain_nodes'
]);
$platform
=
CoinPlatformWithHold
::
find
()
->
select
(
'id, platform, exer'
)
->
where
([
'in'
,
'platform'
,
$chains
])
->
all
();
}
else
{
$platform_id
=
Yii
::
$app
->
request
->
getPlatformId
();
$chain_model
=
CoinPlatform
::
find
()
->
select
(
'chain_id'
)
->
where
([
'id'
=>
$platform_id
])
->
andWhere
([
'<>'
,
'chain_id'
,
0
])
->
one
();
$platform
=
CoinPlatformWithHold
::
find
()
->
select
(
'id, platform, exer'
)
->
where
([
'id'
=>
$chain_model
->
chain_id
])
->
all
();
// if ('administrator' == $group) {
// $chains = array_keys(Yii::$app->params['chain_nodes']);
// $platform = CoinPlatformWithHold::find()->select('id, platform, exer')->where(['in', 'platform', $chains])->all();
// } else {
// $platform_id = Yii::$app->request->getPlatformId();
// $chain_model = CoinPlatform::find()->select('chain_id')->where(['id' => $platform_id])->andWhere(['<>', 'chain_id', 0])->one();
// $platform = CoinPlatformWithHold::find()->select('id, platform, exer')->where(['id' => $chain_model->chain_id])->all();
// }
$platform_id
=
Yii
::
$app
->
request
->
getPlatformId
();
$chain_model
=
CoinPlatform
::
find
()
->
select
(
'chain_id'
)
->
where
([
'id'
=>
$platform_id
])
->
andWhere
([
'<>'
,
'chain_id'
,
0
])
->
one
();
if
(
empty
(
$chain_model
))
{
$msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$code
=
-
1
;
goto
doEnd
;
}
$platform
=
CoinPlatformWithHold
::
find
()
->
select
(
'id, platform, exer'
)
->
where
([
'id'
=>
$chain_model
->
chain_id
])
->
all
();
if
(
empty
(
$platform
))
{
$msg
=
'此功能为付费功能,有兴趣请与销售联系'
;
$code
=
-
1
;
goto
doEnd
;
}
foreach
(
$platform
as
$val
)
{
$val
->
tokens
=
[];
...
...
@@ -203,7 +214,7 @@ class IssueChainController extends BaseController
if
(
!
empty
(
$coin_model
))
{
array_unshift
(
$symbol
,
$coin_model
->
name
);
}
array_unshift
(
$symbol
,
'BTY'
);
//
array_unshift($symbol, 'BTY');
$val
->
tokens
=
$symbol
;
}
unset
(
$val
->
exer
);
...
...
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