Skip to content
This repository was archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #351 from manuelwedler/release-v1.4.0
Browse files Browse the repository at this point in the history
Release v1.4.0
  • Loading branch information
manuelwedler authored Dec 28, 2021
2 parents d60762e + 48fdf14 commit 3bfc672
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [1.4.0] - 2021-12-28

### Changed

- Use newest Raiden client version v3.0.0 - Coruscant

## [1.3.0] - 2021-07-05

### Added
Expand Down
20 changes: 15 additions & 5 deletions raiden_installer/tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def find_by_ticker(ticker, network_name):
"0.33": TokensV33,
"0.36": TokensV36,
"0.37": TokensV37,
"0.40": TokensV40,
}.get(version_string, Tokens)
try:
token_data = token_list_version[ticker].value
Expand Down Expand Up @@ -183,6 +184,12 @@ class TokenData:
},
)

_SVT = TokenData(
ticker="SVT",
wei_ticker="SEI",
addresses={"goerli": "0x5Fc523e13fBAc2140F056AD7A96De2cC0C4Cc63A"},
)

_DAI = TokenData(
ticker="DAI",
wei_ticker="DEI",
Expand Down Expand Up @@ -241,11 +248,14 @@ class TokensV37(Enum):
_RDN,
addresses={"mainnet": "0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6"},
)
SVT = TokenData(
ticker="SVT",
wei_ticker="SEI",
addresses={"goerli": "0x5Fc523e13fBAc2140F056AD7A96De2cC0C4Cc63A"},
)
SVT = _SVT
DAI = _DAI
WIZ = _WizardToken


class TokensV40(Enum):
RDN = _RDN
SVT = _SVT
DAI = _DAI
WIZ = _WizardToken

Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ cytoolz==0.10.1
decorator==4.4.0
entrypoints==0.3
eth-abi==2.1.1
eth-account==0.5.2
eth-account==0.5.6
eth-hash==0.2.0
eth-keyfile==0.5.1
eth-keys==0.2.4
eth-rlp==0.1.2
eth-typing==2.2.1
eth-utils==1.9.0
eth-utils==1.9.5
hexbytes==0.2.0
idna==2.8
importlib-metadata==0.19
ipdb==0.12
ipfshttpclient==0.4.13.2
ipfshttpclient==0.8.0a2
ipython==7.14.0
ipython-genutils==0.2.0
itsdangerous==1.1.0
Expand Down Expand Up @@ -67,12 +67,12 @@ pyparsing==2.4.2
pyrsistent==0.16.0
pytest==5.0.1
pytest-tornado==0.8.1
raiden-contracts==0.37.0
raiden-contracts==0.40.1
regex==2019.6.8
requests==2.22.0
rlp==1.1.0
rope==0.14.0
semantic-version==2.6.0
semantic-version==2.8.0
semver==2.8.1
six==1.12.0
soupsieve==1.9.2
Expand All @@ -86,8 +86,8 @@ typing-extensions==3.7.4.2
urllib3==1.25.3
varint==1.0.2
wcwidth==0.1.7
web3==5.10.0
websockets==8.1
web3==5.24.0
websockets==9.1
whaaaaat==0.5.2
WTForms==2.2.1
wtforms-tornado==0.0.2
Expand Down
2 changes: 1 addition & 1 deletion resources/conf/mainnet.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
network = "mainnet"
client_release_channel = "mainnet"
client_release_version = "v2.0.0"
client_release_version = "v3.0.0"
services_version = "mainnet"
ethereum_amount_required = 125e15
ethereum_amount_required_after_swap = 75e14
Expand Down

0 comments on commit 3bfc672

Please sign in to comment.