Skip to content

Commit

Permalink
fix: telos and activity
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Jul 24, 2024
1 parent 53e527b commit 6c610f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const getAddressActivity = async (
).then((res) => {
if (res.status === "0") return [];
const results = res.result as EtherscanTxType[];
const newResults = results.reverse().map((tx) => {
const newResults = results.map((tx) => {
const rawTx: EthereumRawInfo = {
blockHash: tx.blockHash,
blockNumber: numberToHex(tx.blockNumber),
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/src/providers/ethereum/networks/tlos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const ethOptions: EvmNetworkOptions = {
isTestNetwork: false,
currencyName: "TLOS",
currencyNameLong: "Telos",
node: "wss://telos.drpc.org",
node: "https://mainnet-eu.telos.net/evm",
icon: require("./icons/telos.svg"),
coingeckoID: "telos",
coingeckoPlatform: CoingeckoPlatform.Telos,
Expand Down

1 comment on commit 6c610f0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.