Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
burrow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hang Yu
burrow
Commits
4506df7c
Unverified
Commit
4506df7c
authored
8 years ago
by
Silas Davis
Browse files
Options
Downloads
Patches
Plain Diff
Improve comment
parent
94f21e79
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
manager/eris-mint/evm/snative.go
+6
-0
6 additions, 0 deletions
manager/eris-mint/evm/snative.go
util/snatives/templates/solidity_templates.go
+32
-6
32 additions, 6 deletions
util/snatives/templates/solidity_templates.go
with
38 additions
and
6 deletions
manager/eris-mint/evm/snative.go
+
6
−
0
View file @
4506df7c
...
...
@@ -187,6 +187,12 @@ func SNativeContracts() map[string]*SNativeContractDescription {
contractMap
:=
make
(
map
[
string
]
*
SNativeContractDescription
,
len
(
contracts
))
for
_
,
contract
:=
range
contracts
{
if
_
,
ok
:=
contractMap
[
contract
.
Name
];
ok
{
// If this happens we have a pseudo compile time error that will be caught
// on native.go init()
panic
(
fmt
.
Errorf
(
"Duplicate contract with name %s defined. "
+
"Contract names must be unique."
,
contract
.
Name
))
}
contractMap
[
contract
.
Name
]
=
contract
}
return
contractMap
...
...
This diff is collapsed.
Click to expand it.
util/snatives/templates/solidity_templates.go
+
32
−
6
View file @
4506df7c
...
...
@@ -25,9 +25,10 @@ import (
const
contractTemplateText
=
`/**
[[.Comment]]
* @dev These functions can be accessed as if this contract were deployed at the address [[.Address]].
* @dev For readability you may wish to define the following constant to refer to the SNative contract:
* @dev address constant [[.Name]]ContractAddress = [[.Address]]
* @dev These functions can be accessed as if this contract were deployed at a special address ([[.Address]]).
* @dev This special address is defined as the last 20 bytes of the sha3 hash of the the contract name.
* @dev To instantiate the contract use:
* @dev [[.Name]] [[.InstanceName]] = [[.Name]](address(sha3("[[.Name]]")));
*/
contract [[.Name]] {[[range .Functions]]
[[.SolidityIndent 1]]
...
...
@@ -69,11 +70,30 @@ type solidityFunction struct {
*
vm
.
SNativeFunctionDescription
}
//
// Contract
//
// Create a templated solidityContract from an SNative contract description
func
NewSolidityContract
(
contract
*
vm
.
SNativeContractDescription
)
*
solidityContract
{
return
&
solidityContract
{
contract
}
}
func
(
contract
*
solidityContract
)
Comment
()
string
{
return
comment
(
contract
.
SNativeContractDescription
.
Comment
)
}
// Get a version of the contract name to be used for an instance of the contract
func
(
contract
*
solidityContract
)
InstanceName
()
string
{
// Hopefully the contract name is UpperCamelCase. If it's not, oh well, this
// is meant to be illustrative rather than cast iron compilable
instanceName
:=
strings
.
ToLower
(
contract
.
Name
[
:
1
])
+
contract
.
Name
[
1
:
]
if
instanceName
==
contract
.
Name
{
return
"contractInstance"
}
return
instanceName
}
func
(
contract
*
solidityContract
)
Address
()
string
{
return
fmt
.
Sprintf
(
"0x%x"
,
contract
.
SNativeContractDescription
.
Address
())
...
...
@@ -98,6 +118,10 @@ func (contract *solidityContract) Functions() []*solidityFunction {
return
solidityFunctions
}
//
// Function
//
// Create a templated solidityFunction from an SNative function description
func
NewSolidityFunction
(
function
*
vm
.
SNativeFunctionDescription
)
*
solidityFunction
{
return
&
solidityFunction
{
function
}
...
...
@@ -133,9 +157,11 @@ func (function *solidityFunction) solidity(indentLevel uint) (string, error) {
return
buf
.
String
(),
nil
}
func
(
contract
*
solidityContract
)
Comment
()
string
{
return
comment
(
contract
.
SNativeContractDescription
.
Comment
)
}
//
// Contract
//
func
comment
(
comment
string
)
string
{
commentLines
:=
make
([]
string
,
0
,
5
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment