Skip to content

Commit

Permalink
Merge pull request #349 from multiversx/new-contracts-2024.10.04
Browse files Browse the repository at this point in the history
Integrated the new contracts
  • Loading branch information
iulianpascalau authored Oct 4, 2024
2 parents 0a8e83d + d4ebf70 commit 145fab3
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ func TestRelayersShouldExecuteTransfers(t *testing.T) {
GenerateTestUSDCToken(),
GenerateTestMEMEToken(),
)

// TODO: add a test for the withdrawTotalFeesOnEthereum functionality
}

func TestRelayersShouldExecuteTransfersWithSCCallsWithArguments(t *testing.T) {
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,18 @@
],
"outputs": []
},
{
"name": "withdrawTotalFeesOnEthereum",
"onlyOwner": true,
"mutability": "mutable",
"inputs": [
{
"name": "token_id",
"type": "TokenIdentifier"
}
],
"outputs": []
},
{
"name": "computeTotalAmmountsFromIndex",
"mutability": "readonly",
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,25 @@
],
"outputs": []
},
{
"name": "withdrawTotalFeesOnEthereum",
"onlyOwner": true,
"mutability": "mutable",
"inputs": [
{
"name": "token_id",
"type": "TokenIdentifier"
}
],
"outputs": []
},
{
"name": "withdrawSlashedAmount",
"onlyOwner": true,
"mutability": "mutable",
"inputs": [],
"outputs": []
},
{
"docs": [
"Proposers and board members use this to launch signed actions."
Expand Down Expand Up @@ -1270,11 +1289,11 @@
]
},
{
"identifier": "pauseEsdtEvent",
"identifier": "pauseBridgeProxyEvent",
"inputs": []
},
{
"identifier": "unpauseEsdtEvent",
"identifier": "unpauseBridgeProxyEvent",
"inputs": []
},
{
Expand Down
Binary file not shown.

0 comments on commit 145fab3

Please sign in to comment.