Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bridge-backend
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
movabridge
bridge-backend
Commits
b086b896
Commit
b086b896
authored
Nov 20, 2025
by
vicotor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update abi
parent
32628d1d
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
37 additions
and
36 deletions
+37
-36
sync.go
chain/sync.go
+2
-2
constant.go
constant/constant.go
+1
-1
Bridge.go
contract/bridge/Bridge.go
+32
-31
bridge.json
contract/bridge/bridge.json
+1
-1
builder.go
dao/builder.go
+1
-1
No files found.
chain/sync.go
View file @
b086b896
...
...
@@ -50,8 +50,8 @@ func (s *ChainSync) ParseTransferInConfirmation(log *types.Log) (*bridge.BridgeC
return
s
.
bridgeCa
.
ParseTransferInConfirmation
(
*
log
)
}
func
(
s
*
ChainSync
)
ParseTokenConfigChanged
(
log
*
types
.
Log
)
(
*
bridge
.
BridgeContractTokenConfigChanged
,
error
)
{
return
s
.
bridgeCa
.
ParseTokenConfigChanged
(
*
log
)
func
(
s
*
ChainSync
)
ParseTokenConfigChanged
(
log
*
types
.
Log
)
(
*
bridge
.
BridgeContractToken
Out
ConfigChanged
,
error
)
{
return
s
.
bridgeCa
.
ParseToken
Out
ConfigChanged
(
*
log
)
}
func
(
s
*
ChainSync
)
GetReceiveToken
(
token
common
.
Address
,
toChainId
int64
)
(
string
,
error
)
{
...
...
constant/constant.go
View file @
b086b896
...
...
@@ -45,7 +45,7 @@ const (
EVENT_TRANSFER_IN_CONFIRMATION
=
"TransferInConfirmation"
EVENT_TRANSFER_IN_REJECTION
=
"TransferInRejection"
EVENT_TRANSFER_IN_EXECUTION
=
"TransferInExecution"
EVENT_TOKENCONFIGCHANGED
=
"TokenConfigChanged"
EVENT_TOKENCONFIGCHANGED
=
"Token
Out
ConfigChanged"
)
type
ValidatorOp
int
...
...
contract/bridge/Bridge.go
View file @
b086b896
This diff is collapsed.
Click to expand it.
contract/bridge/bridge.json
View file @
b086b896
...
...
@@ -92,7 +92,7 @@
"type"
:
"bool"
}
],
"name"
:
"TokenConfigChanged"
,
"name"
:
"Token
Out
ConfigChanged"
,
"type"
:
"event"
},
{
...
...
dao/builder.go
View file @
b086b896
...
...
@@ -22,7 +22,7 @@ type ChainInterface interface {
ParseTransferInExecution
(
log
*
types
.
Log
)
(
*
bridge
.
BridgeContractTransferInExecution
,
error
)
ParseTransferInRejection
(
log
*
types
.
Log
)
(
*
bridge
.
BridgeContractTransferInRejection
,
error
)
ParseTransferInConfirmation
(
log
*
types
.
Log
)
(
*
bridge
.
BridgeContractTransferInConfirmation
,
error
)
ParseTokenConfigChanged
(
log
*
types
.
Log
)
(
*
bridge
.
BridgeContractTokenConfigChanged
,
error
)
ParseTokenConfigChanged
(
log
*
types
.
Log
)
(
*
bridge
.
BridgeContractToken
Out
ConfigChanged
,
error
)
GetReceiveToken
(
token
common
.
Address
,
toChainId
int64
)
(
string
,
error
)
}
...
...
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