Skip to content

Commit 256605f

Browse files
committed
add jettons to list
1 parent 3409bf6 commit 256605f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/rebuild-src.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- main
1414
workflow_dispatch:
1515
schedule:
16-
- cron: '27 * * * *'
16+
- cron: '27 */3 * * *'
1717
jobs:
1818
run-aggregator:
1919
runs-on: ubuntu-latest

accounts/infrastructure.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
- address: "0:51b3631fe3f915981f4114cdeb1237e850b7fae43055b13dbcdc96e50f1c16ce"
5454
name: "TONAPI gas proxy"
5555
- address: "0:059a3528654a8a14404660510c6effa6eb5b054ad8007d447c27a8490f0514d3"
56-
name: "The Open Network Foundation"
56+
name: "TON Foundation"
5757
- address: "EQCLyZHP4Xe8fpchQz76O-_RmUhaVc_9BAoGyJrwJrcbz2eZ"
5858
name: "Hipo Treasury"
5959
- address: "UQCMOXxD-f8LSWWbXQowKxqTr3zMY-X1wMTyWp3B-LR6syif"

generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def main():
117117
collect_all_dexes()
118118
jettons = merge_jettons()
119119
collections = merge_collections()
120-
accounts = merge_accounts([])
120+
accounts = merge_accounts([{'name': x['symbol'] + " master", 'address': x['address']} for x in jettons])
121121
jettons_md = "\n".join(["[%s](%s%s) | %s" % (j[0], EXPLORER_JETTONS, normalize_address(j[1], True), normalize_address(j[1], False)) for j in jettons])
122122
accounts_md = "\n".join(["[%s](%s%s) | %s" % (j[0], EXPLORER_ACCOUNTS, normalize_address(j[1], True), normalize_address(j[1], False)) for j in accounts])
123123
collections_md = "\n".join(["[%s](%s%s) | %s" % (j[0], EXPLORER_COLLECTIONS, normalize_address(j[1], True), normalize_address(j[1], False)) for j in collections])

0 commit comments

Comments
 (0)