From d7ed951a4cfa3e2bb35e269bd6a6beda83cdcd29 Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 19 Nov 2024 15:25:53 +0200 Subject: [PATCH] Add ronin and g7 chains. --- .../moonstreamapi/admin/subscription_types.py | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/moonstreamapi/moonstreamapi/admin/subscription_types.py b/moonstreamapi/moonstreamapi/admin/subscription_types.py index ac8d0a1b..e5efe1ab 100644 --- a/moonstreamapi/moonstreamapi/admin/subscription_types.py +++ b/moonstreamapi/moonstreamapi/admin/subscription_types.py @@ -282,6 +282,17 @@ 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 @@ 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, + ), }