Skip to content

Commit a00ce61

Browse files
committed
chore: Update 0.40.0 deployment directory
1 parent 1df337d commit a00ce61

22 files changed

+137
-137
lines changed

raiden_contracts/data_0.40.0/contracts.json

Lines changed: 91 additions & 91 deletions
Large diffs are not rendered by default.

raiden_contracts/data_0.40.0/gas.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,32 @@
33
"CustomToken.mint": 50776,
44
"CustomToken.transfer": 36556,
55
"CustomToken.transferFrom": 29060,
6-
"MonitoringService.claimReward": 45683,
7-
"MonitoringService.monitor": 224971,
8-
"OneToN.bulkClaim 1 ious": 107282,
9-
"OneToN.bulkClaim 6 ious": 166847,
10-
"OneToN.claim": 103888,
6+
"MonitoringService.claimReward": 45555,
7+
"MonitoringService.monitor": 224140,
8+
"OneToN.bulkClaim 1 ious": 106874,
9+
"OneToN.bulkClaim 6 ious": 165202,
10+
"OneToN.claim": 103516,
1111
"SecretRegistry.registerSecret": 46205,
12-
"SecretRegistry.registerSecretBatch1": 46799,
13-
"SecretRegistry.registerSecretBatch2": 71627,
14-
"SecretRegistry.registerSecretBatch3": 96455,
15-
"ServiceRegistry.deposit": 478020,
12+
"SecretRegistry.registerSecretBatch1": 46786,
13+
"SecretRegistry.registerSecretBatch2": 71602,
14+
"SecretRegistry.registerSecretBatch3": 96418,
15+
"ServiceRegistry.deposit": 468946,
1616
"ServiceRegistry.setURL": 47165,
17-
"TokenNetwork DEPLOYMENT": 3892049,
18-
"TokenNetwork.closeChannel": 118508,
19-
"TokenNetwork.cooperativeSettle": 112577,
20-
"TokenNetwork.openChannel": 113376,
21-
"TokenNetwork.openChannelWithDeposit": 149786,
22-
"TokenNetwork.setTotalDeposit": 56274,
23-
"TokenNetwork.setTotalWithdraw": 115218,
24-
"TokenNetwork.settleChannel": 108640,
25-
"TokenNetwork.unlock 1 locks": 38857,
26-
"TokenNetwork.unlock 6 locks": 54090,
27-
"TokenNetwork.updateNonClosingBalanceProof": 90533,
28-
"TokenNetworkRegistry DEPLOYMENT": 4579540,
29-
"TokenNetworkRegistry createERC20TokenNetwork": 3666639,
30-
"UserDeposit.deposit": 98831,
31-
"UserDeposit.deposit (increase balance)": 34631,
17+
"TokenNetwork DEPLOYMENT": 3862593,
18+
"TokenNetwork.closeChannel": 118503,
19+
"TokenNetwork.cooperativeSettle": 112294,
20+
"TokenNetwork.openChannel": 113248,
21+
"TokenNetwork.openChannelWithDeposit": 149414,
22+
"TokenNetwork.setTotalDeposit": 56006,
23+
"TokenNetwork.setTotalWithdraw": 115143,
24+
"TokenNetwork.settleChannel": 108564,
25+
"TokenNetwork.unlock 1 locks": 38625,
26+
"TokenNetwork.unlock 6 locks": 53054,
27+
"TokenNetwork.updateNonClosingBalanceProof": 90557,
28+
"TokenNetworkRegistry DEPLOYMENT": 4547001,
29+
"TokenNetworkRegistry createERC20TokenNetwork": 3639446,
30+
"UserDeposit.deposit": 98691,
31+
"UserDeposit.deposit (increase balance)": 34491,
3232
"UserDeposit.planWithdraw": 69778,
33-
"UserDeposit.withdraw": 49317
33+
"UserDeposit.withdraw": 49189
3434
}

raiden_contracts/data_0.40.0/source/lib/ECVerify.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
/* solium-disable error-reason */
3-
pragma solidity 0.8.7;
3+
pragma solidity 0.8.10;
44
pragma abicoder v2;
55

66
library ECVerify {

raiden_contracts/data_0.40.0/source/lib/MessageType.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
/* solium-disable error-reason */
3-
pragma solidity 0.8.7;
3+
pragma solidity 0.8.10;
44
pragma abicoder v2;
55

66
library MessageType {

raiden_contracts/data_0.40.0/source/raiden/Controllable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33
pragma abicoder v2;
44

55
contract Controllable {

raiden_contracts/data_0.40.0/source/raiden/SecretRegistry.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33
pragma abicoder v2;
44

55
/// @title SecretRegistry

raiden_contracts/data_0.40.0/source/raiden/Token.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33
pragma abicoder v2;
44

55
interface Token {

raiden_contracts/data_0.40.0/source/raiden/TokenNetwork.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
/* solium-disable indentation */
3-
pragma solidity 0.8.7;
3+
pragma solidity 0.8.10;
44
pragma abicoder v2;
55

66
import "lib/ECVerify.sol";

raiden_contracts/data_0.40.0/source/raiden/TokenNetworkRegistry.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
/* solium-disable error-reason */
3-
pragma solidity 0.8.7;
3+
pragma solidity 0.8.10;
44
pragma abicoder v2;
55

66
import "raiden/Utils.sol";

raiden_contracts/data_0.40.0/source/raiden/Utils.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33
pragma abicoder v2;
44

55
/// @title Utils

raiden_contracts/data_0.40.0/source/services/MonitoringService.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33
pragma abicoder v2;
44

55
import "lib/ECVerify.sol";

raiden_contracts/data_0.40.0/source/services/OneToN.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33
pragma abicoder v2;
44

55
import "lib/ECVerify.sol";

raiden_contracts/data_0.40.0/source/services/ServiceRegistry.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
/* solium-disable indentation */
33
/* solium-disable security/no-block-members */
4-
pragma solidity 0.8.7;
4+
pragma solidity 0.8.10;
55
pragma abicoder v2;
66

77
import "raiden/Token.sol";
@@ -245,7 +245,7 @@ contract ServiceRegistry is Utils, ServiceRegistryConfigurableParameters {
245245
) {
246246
require(address(_token_for_registration) != address(0x0), "token at address zero");
247247
require(contractExists(address(_token_for_registration)), "token has no code");
248-
require(_initial_price >= min_price, "initial price too low");
248+
require(_initial_price >= _min_price, "initial price too low");
249249
require(_initial_price <= 2 ** 90, "intiial price too high");
250250

251251
token = _token_for_registration;

raiden_contracts/data_0.40.0/source/services/UserDeposit.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33
pragma abicoder v2;
44

55
import "raiden/Token.sol";

raiden_contracts/data_0.40.0/source/test/CustomToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
/* solium-disable error-reason */
3-
pragma solidity 0.8.7;
3+
pragma solidity 0.8.10;
44

55
/*
66
This Token Contract implements the standard token functionality (https://github.com/ethereum/EIPs/issues/20), the ERC223 functionality (https://github.com/ethereum/EIPs/issues/223) as well as the following OPTIONAL extras intended for use by humans.

raiden_contracts/data_0.40.0/source/test/HumanStandardToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
/* solium-disable */
3-
pragma solidity 0.8.7;
3+
pragma solidity 0.8.10;
44

55
import "test/StandardToken.sol";
66

raiden_contracts/data_0.40.0/source/test/MonitoringServiceInternalsTest.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33

44
import "services/MonitoringService.sol";
55

raiden_contracts/data_0.40.0/source/test/OneToNInternalsTest.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33

44
import "services/OneToN.sol";
55

raiden_contracts/data_0.40.0/source/test/SignatureVerifyTest.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33

44
/*
55
* This is a contract used for testing the ECVerify library and ecrecover behaviour.

raiden_contracts/data_0.40.0/source/test/StandardToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
/* solium-disable */
3-
pragma solidity 0.8.7;
3+
pragma solidity 0.8.10;
44

55
import "raiden/Token.sol";
66

raiden_contracts/data_0.40.0/source/test/TokenNetworkInternalsTest.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33
pragma experimental ABIEncoderV2;
44

55
import "lib/MessageType.sol";

raiden_contracts/data_0.40.0/source/test/UDCTransfer.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.7;
2+
pragma solidity 0.8.10;
33

44
import "services/UserDeposit.sol";
55

0 commit comments

Comments
 (0)