From 9e9628195216558b6979f8bbe59a788c499985dc Mon Sep 17 00:00:00 2001 From: Lech <88630083+Artemka374@users.noreply.github.com> Date: Wed, 21 Feb 2024 12:56:10 +0200 Subject: [PATCH] fix: Return back sepolia.json (#1165) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What ❔ Return back token config for sepolia ## Why ❔ It was accidentally removed ## Checklist - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zk fmt` and `zk lint`. - [ ] Spellcheck has been run via `zk spellcheck`. - [ ] Linkcheck has been run via `zk linkcheck`. --- etc/tokens/sepolia.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/etc/tokens/sepolia.json b/etc/tokens/sepolia.json index e69de29bb2d..899571df9e5 100644 --- a/etc/tokens/sepolia.json +++ b/etc/tokens/sepolia.json @@ -0,0 +1,14 @@ +[ + { + "name": "DAI", + "symbol": "DAI", + "decimals": 18, + "address": "0x35EfF6eA96571ff475136117FdD92A9ba25b1f37" + }, + { + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18, + "address": "0x7b79995e5f793A07Bc00c21412e50Ecae098E7f9" + } +]