Merge pull request #1139 from moonstream-to/g7-ronin-sub-types

Add ronin and g7 chains.
pull/1140/head
Andrey Dolgolev 2024-11-19 15:56:10 +02:00 zatwierdzone przez GitHub
commit a7e76bc687
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 33 dodań i 0 usunięć

Wyświetl plik

@ -282,6 +282,17 @@ CANONICAL_SUBSCRIPTION_TYPES = {
stripe_price_id=None,
active=True,
),
"game7_smartcontract": SubscriptionTypeResourceData(
id="game7_smartcontract",
name="Game7 smartcontracts",
blockchain="game7",
choices=["input:address", "tag:erc721"],
description="Contracts events and tx_calls of contract of Game7 blockchain.",
icon_url="https://static.simiotics.com/moonstream/assets/game7-token-logo.png",
stripe_product_id=None,
stripe_price_id=None,
active=True,
),
"game7_testnet_smartcontract": SubscriptionTypeResourceData(
id="game7_testnet_smartcontract",
name="Game7 Testnet smartcontracts",
@ -613,6 +624,28 @@ CANONICAL_SUBSCRIPTION_TYPES = {
stripe_price_id=None,
active=False,
),
"ronin_smartcontract": SubscriptionTypeResourceData(
id="ronin_smartcontract",
name="Ronin smartcontracts",
blockchain="ronin",
choices=["input:address", "tag:erc721"],
description="Ronin chain transactions subscription.",
icon_url="https://static.simiotics.com/moonstream/assets/ronin-token-logo.png",
stripe_product_id=None,
stripe_price_id=None,
active=True,
),
"ronin_saigon_smartcontract": SubscriptionTypeResourceData(
id="ronin_saigon_smartcontract",
name="Ronin Saigon smartcontracts",
blockchain="ronin_saigon",
choices=["input:address", "tag:erc721"],
description="Ronin Saigon chain transactions subscription.",
icon_url="https://static.simiotics.com/moonstream/assets/ronin-saigon-token-logo.png",
stripe_product_id=None,
stripe_price_id=None,
active=True,
),
}