web3-wizzard-lib 1.6.12__py3-none-any.whl → 1.6.15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- web3_wizzard_lib/core/__init__.py +1 -0
- web3_wizzard_lib/core/contract/__init__.py +0 -0
- web3_wizzard_lib/core/contract/aavecontract.py +36 -0
- web3_wizzard_lib/core/contract/alienswap_contract.py +21 -0
- web3_wizzard_lib/core/contract/arena_games_contract.py +16 -0
- web3_wizzard_lib/core/contract/basiliskcontract.py +58 -0
- web3_wizzard_lib/core/contract/bilinear_contract.py +22 -0
- web3_wizzard_lib/core/contract/bungee.py +33 -0
- web3_wizzard_lib/core/contract/coredao_contract.py +34 -0
- web3_wizzard_lib/core/contract/coredao_from_contract.py +40 -0
- web3_wizzard_lib/core/contract/dmail_send_mail.py +18 -0
- web3_wizzard_lib/core/contract/empty_nft.py +18 -0
- web3_wizzard_lib/core/contract/era_name.py +23 -0
- web3_wizzard_lib/core/contract/eralendcontract.py +34 -0
- web3_wizzard_lib/core/contract/eth_scroll_bridge_contract.py +25 -0
- web3_wizzard_lib/core/contract/frog_war_contract.py +48 -0
- web3_wizzard_lib/core/contract/gmx_reward_router.py +22 -0
- web3_wizzard_lib/core/contract/horizondex_quoter.py +14 -0
- web3_wizzard_lib/core/contract/horizondex_router.py +91 -0
- web3_wizzard_lib/core/contract/imagine_contract.py +18 -0
- web3_wizzard_lib/core/contract/izumi.py +63 -0
- web3_wizzard_lib/core/contract/kreatorland_contract.py +21 -0
- web3_wizzard_lib/core/contract/l0_claim.py +254 -0
- web3_wizzard_lib/core/contract/l2_telegraph.py +21 -0
- web3_wizzard_lib/core/contract/layerbank_price.py +18 -0
- web3_wizzard_lib/core/contract/layerbank_token.py +29 -0
- web3_wizzard_lib/core/contract/layerbankcontract.py +59 -0
- web3_wizzard_lib/core/contract/linea_day_2_contract.py +19 -0
- web3_wizzard_lib/core/contract/linea_day_3_contract.py +55 -0
- web3_wizzard_lib/core/contract/linea_ens_names_contract.py +55 -0
- web3_wizzard_lib/core/contract/lineaswaprouter.py +52 -0
- web3_wizzard_lib/core/contract/maverick_multicall.py +52 -0
- web3_wizzard_lib/core/contract/mendi_finance_contract.py +11 -0
- web3_wizzard_lib/core/contract/mendi_token.py +25 -0
- web3_wizzard_lib/core/contract/merkly_minter.py +47 -0
- web3_wizzard_lib/core/contract/micro3_contract.py +18 -0
- web3_wizzard_lib/core/contract/mute_router.py +93 -0
- web3_wizzard_lib/core/contract/new_rage_contract.py +31 -0
- web3_wizzard_lib/core/contract/nidum_contract.py +44 -0
- web3_wizzard_lib/core/contract/nile_contract.py +60 -0
- web3_wizzard_lib/core/contract/nomis_attest_contract.py +40 -0
- web3_wizzard_lib/core/contract/nomis_contract.py +40 -0
- web3_wizzard_lib/core/contract/octomos.py +31 -0
- web3_wizzard_lib/core/contract/odos.py +104 -0
- web3_wizzard_lib/core/contract/omnisea.py +29 -0
- web3_wizzard_lib/core/contract/orbiter_starknet.py +30 -0
- web3_wizzard_lib/core/contract/pancake_pool.py +19 -0
- web3_wizzard_lib/core/contract/pancake_quoter.py +20 -0
- web3_wizzard_lib/core/contract/pancake_router.py +72 -0
- web3_wizzard_lib/core/contract/rage_claim.py +24 -0
- web3_wizzard_lib/core/contract/reactor_fusion_contract.py +78 -0
- web3_wizzard_lib/core/contract/readon_contract.py +19 -0
- web3_wizzard_lib/core/contract/rubyscore_contract.py +31 -0
- web3_wizzard_lib/core/contract/satoshi_universe_contract.py +29 -0
- web3_wizzard_lib/core/contract/scroll_bridge_contract.py +24 -0
- web3_wizzard_lib/core/contract/scroll_canvas_mint_contract.py +26 -0
- web3_wizzard_lib/core/contract/scroll_oracle.py +11 -0
- web3_wizzard_lib/core/contract/snap_contract.py +16 -0
- web3_wizzard_lib/core/contract/social_scan_contract.py +20 -0
- web3_wizzard_lib/core/contract/stargate_farming.py +37 -0
- web3_wizzard_lib/core/contract/stargate_router.py +84 -0
- web3_wizzard_lib/core/contract/stargate_router_eth.py +41 -0
- web3_wizzard_lib/core/contract/stargate_token_pool.py +45 -0
- web3_wizzard_lib/core/contract/stargate_v2_contract.py +36 -0
- web3_wizzard_lib/core/contract/syncswap_classic_pool.py +15 -0
- web3_wizzard_lib/core/contract/syncswap_classic_pool_factory.py +15 -0
- web3_wizzard_lib/core/contract/syncswap_pool.py +25 -0
- web3_wizzard_lib/core/contract/syncswap_router.py +123 -0
- web3_wizzard_lib/core/contract/tavaera_id.py +18 -0
- web3_wizzard_lib/core/contract/tavaera_mint.py +17 -0
- web3_wizzard_lib/core/contract/townstory_bonus_contract.py +19 -0
- web3_wizzard_lib/core/contract/townstory_contract.py +21 -0
- web3_wizzard_lib/core/contract/velocore_lens.py +44 -0
- web3_wizzard_lib/core/contract/velocore_pool.py +198 -0
- web3_wizzard_lib/core/contract/velocore_router.py +80 -0
- web3_wizzard_lib/core/contract/woofi_swap.py +29 -0
- web3_wizzard_lib/core/contract/xy_finance_contract.py +87 -0
- web3_wizzard_lib/core/contract/yoddlo_contract.py +19 -0
- web3_wizzard_lib/core/contract/yuliverse_contract.py +36 -0
- web3_wizzard_lib/core/contract/zebra_contract.py +68 -0
- web3_wizzard_lib/core/contract/zerolend_contract.py +34 -0
- web3_wizzard_lib/core/contract/zerolend_liq_contract.py +20 -0
- web3_wizzard_lib/core/contract/zkdx_contract.py +40 -0
- web3_wizzard_lib/core/contract/zkdx_data.py +14 -0
- web3_wizzard_lib/core/contract/zks.py +24 -0
- web3_wizzard_lib/core/modules/__init__.py +0 -0
- web3_wizzard_lib/core/modules/ads_import_proxy.py +52 -0
- web3_wizzard_lib/core/modules/airdrop_printer.py +81 -0
- web3_wizzard_lib/core/modules/bank/__init__.py +0 -0
- web3_wizzard_lib/core/modules/bank/aave.py +25 -0
- web3_wizzard_lib/core/modules/bank/bank.py +15 -0
- web3_wizzard_lib/core/modules/bank/basilisk.py +25 -0
- web3_wizzard_lib/core/modules/bank/eralend.py +25 -0
- web3_wizzard_lib/core/modules/bank/layerbank.py +116 -0
- web3_wizzard_lib/core/modules/bank/mendi_finance.py +57 -0
- web3_wizzard_lib/core/modules/bank/reactorfusion.py +25 -0
- web3_wizzard_lib/core/modules/bank/zerolend.py +36 -0
- web3_wizzard_lib/core/modules/bank_module.py +99 -0
- web3_wizzard_lib/core/modules/bridge/__init__.py +0 -0
- web3_wizzard_lib/core/modules/bridge/bridge.py +8 -0
- web3_wizzard_lib/core/modules/bridge/coredao_bridge_sub.py +47 -0
- web3_wizzard_lib/core/modules/bridge/orbiter_sub.py +112 -0
- web3_wizzard_lib/core/modules/bridge/scroll_bridge_sub.py +42 -0
- web3_wizzard_lib/core/modules/bridge/stargate_v2_sub.py +74 -0
- web3_wizzard_lib/core/modules/bridge_module.py +47 -0
- web3_wizzard_lib/core/modules/bungee.py +109 -0
- web3_wizzard_lib/core/modules/cex_sender.py +60 -0
- web3_wizzard_lib/core/modules/cex_subaccount_transfer.py +34 -0
- web3_wizzard_lib/core/modules/cex_withdraw.py +91 -0
- web3_wizzard_lib/core/modules/claimer.py +45 -0
- web3_wizzard_lib/core/modules/claims/__init__.py +0 -0
- web3_wizzard_lib/core/modules/claims/layerzero_claimer.py +64 -0
- web3_wizzard_lib/core/modules/claims/rabby_claimer.py +81 -0
- web3_wizzard_lib/core/modules/concrete_swap.py +108 -0
- web3_wizzard_lib/core/modules/coredao_bridge.py +32 -0
- web3_wizzard_lib/core/modules/coredao_bridge_auto.py +39 -0
- web3_wizzard_lib/core/modules/debank_checker.py +78 -0
- web3_wizzard_lib/core/modules/dmail.py +54 -0
- web3_wizzard_lib/core/modules/erc20_balance.py +42 -0
- web3_wizzard_lib/core/modules/gmx_reward.py +25 -0
- web3_wizzard_lib/core/modules/intract/__init__.py +0 -0
- web3_wizzard_lib/core/modules/intract/intract_api.py +212 -0
- web3_wizzard_lib/core/modules/intract/utils.py +81 -0
- web3_wizzard_lib/core/modules/intract_claim.py +101 -0
- web3_wizzard_lib/core/modules/layer_2_20.py +65 -0
- web3_wizzard_lib/core/modules/lending_module.py +134 -0
- web3_wizzard_lib/core/modules/linea_appeal.py +98 -0
- web3_wizzard_lib/core/modules/linea_poh_lxp.py +65 -0
- web3_wizzard_lib/core/modules/liquidity/__init__.py +0 -0
- web3_wizzard_lib/core/modules/liquidity/nile_pool.py +64 -0
- web3_wizzard_lib/core/modules/liquidity/pool.py +16 -0
- web3_wizzard_lib/core/modules/liquidity/syncswap_pool.py +61 -0
- web3_wizzard_lib/core/modules/liquidity/velocore_pool.py +55 -0
- web3_wizzard_lib/core/modules/liquidity/zerolend_liquidity.py +26 -0
- web3_wizzard_lib/core/modules/liquidity_pool.py +60 -0
- web3_wizzard_lib/core/modules/merkly_refuel.py +87 -0
- web3_wizzard_lib/core/modules/new_rage_withdraw.py +41 -0
- web3_wizzard_lib/core/modules/nft/__init__.py +0 -0
- web3_wizzard_lib/core/modules/nft/abbys_world.py +22 -0
- web3_wizzard_lib/core/modules/nft/acg_worlds.py +25 -0
- web3_wizzard_lib/core/modules/nft/alienswap_linea.py +22 -0
- web3_wizzard_lib/core/modules/nft/arena_games.py +22 -0
- web3_wizzard_lib/core/modules/nft/asmatch.py +22 -0
- web3_wizzard_lib/core/modules/nft/battlemon.py +25 -0
- web3_wizzard_lib/core/modules/nft/bilinear.py +22 -0
- web3_wizzard_lib/core/modules/nft/bitavatar.py +25 -0
- web3_wizzard_lib/core/modules/nft/culture_satoshi_universe.py +24 -0
- web3_wizzard_lib/core/modules/nft/efrogs.py +26 -0
- web3_wizzard_lib/core/modules/nft/empty_nft.py +22 -0
- web3_wizzard_lib/core/modules/nft/era_domain.py +42 -0
- web3_wizzard_lib/core/modules/nft/frog_war.py +22 -0
- web3_wizzard_lib/core/modules/nft/frog_war_bonus.py +22 -0
- web3_wizzard_lib/core/modules/nft/gamerboom.py +25 -0
- web3_wizzard_lib/core/modules/nft/gamerboom_bonus.py +26 -0
- web3_wizzard_lib/core/modules/nft/imagine.py +32 -0
- web3_wizzard_lib/core/modules/nft/kreatorland_module.py +35 -0
- web3_wizzard_lib/core/modules/nft/l2_telegraph_module.py +22 -0
- web3_wizzard_lib/core/modules/nft/layer3_meta.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_2_2_linus.py +24 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_2_3_yooldo.py +24 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_2_4_frogwar.py +24 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_2_5_acg.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_2_6_ascend_the_end.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_3_1_ascend_the_end.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_3_2_sending_me.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_3_3_townstory.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_3_4_daniele.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_3_5_demmortal.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_3_6_foxy.py +25 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_4_1_coop_records.py +60 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_4_2_borja_moskv.py +65 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_4_2_borja_moskv_approve.py +27 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_4_3_fruit.py +66 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_4_4_fruit_crux.py +67 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_4_5_forbidden_fruit.py +67 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_4_6_laurent.py +67 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_day2.py +20 -0
- web3_wizzard_lib/core/modules/nft/linea_culture_day3.py +20 -0
- web3_wizzard_lib/core/modules/nft/linea_ens_names.py +107 -0
- web3_wizzard_lib/core/modules/nft/lucky_cat.py +25 -0
- web3_wizzard_lib/core/modules/nft/merkly_minter_module.py +22 -0
- web3_wizzard_lib/core/modules/nft/micro3.py +23 -0
- web3_wizzard_lib/core/modules/nft/mint_2048.py +28 -0
- web3_wizzard_lib/core/modules/nft/nft_submodule.py +16 -0
- web3_wizzard_lib/core/modules/nft/nidum.py +87 -0
- web3_wizzard_lib/core/modules/nft/nidum_bonus.py +23 -0
- web3_wizzard_lib/core/modules/nft/nomis.py +64 -0
- web3_wizzard_lib/core/modules/nft/nomis_attest.py +66 -0
- web3_wizzard_lib/core/modules/nft/nouns.py +27 -0
- web3_wizzard_lib/core/modules/nft/octomos.py +32 -0
- web3_wizzard_lib/core/modules/nft/omnisea.py +33 -0
- web3_wizzard_lib/core/modules/nft/omnizone.py +25 -0
- web3_wizzard_lib/core/modules/nft/orbiter_claim.py +87 -0
- web3_wizzard_lib/core/modules/nft/readon.py +30 -0
- web3_wizzard_lib/core/modules/nft/rubyscore.py +45 -0
- web3_wizzard_lib/core/modules/nft/sarubol.py +22 -0
- web3_wizzard_lib/core/modules/nft/satoshi_universe.py +22 -0
- web3_wizzard_lib/core/modules/nft/scroll_canvas_attest_year_badge.py +35 -0
- web3_wizzard_lib/core/modules/nft/scroll_canvas_mint.py +51 -0
- web3_wizzard_lib/core/modules/nft/sign.py +32 -0
- web3_wizzard_lib/core/modules/nft/snap.py +25 -0
- web3_wizzard_lib/core/modules/nft/snap_bonus.py +31 -0
- web3_wizzard_lib/core/modules/nft/social_scan.py +22 -0
- web3_wizzard_lib/core/modules/nft/tavaera.py +30 -0
- web3_wizzard_lib/core/modules/nft/townstory.py +75 -0
- web3_wizzard_lib/core/modules/nft/townstory_bonus.py +45 -0
- web3_wizzard_lib/core/modules/nft/trusta_reputation.py +48 -0
- web3_wizzard_lib/core/modules/nft/trustaa_poh.py +49 -0
- web3_wizzard_lib/core/modules/nft/uber_poh.py +24 -0
- web3_wizzard_lib/core/modules/nft/wizards_of_linea.py +26 -0
- web3_wizzard_lib/core/modules/nft/yoddlo.py +22 -0
- web3_wizzard_lib/core/modules/nft/yuliverse.py +22 -0
- web3_wizzard_lib/core/modules/nft/zace.py +25 -0
- web3_wizzard_lib/core/modules/nft/zks_domain.py +41 -0
- web3_wizzard_lib/core/modules/nft_minter.py +107 -0
- web3_wizzard_lib/core/modules/orbiter.py +39 -0
- web3_wizzard_lib/core/modules/orbiter_checker.py +26 -0
- web3_wizzard_lib/core/modules/rage.py +54 -0
- web3_wizzard_lib/core/modules/scroll_bridge.py +45 -0
- web3_wizzard_lib/core/modules/sell_all.py +51 -0
- web3_wizzard_lib/core/modules/sleep_module.py +25 -0
- web3_wizzard_lib/core/modules/smart_contract_deployment.py +37 -0
- web3_wizzard_lib/core/modules/stargate/__init__.py +0 -0
- web3_wizzard_lib/core/modules/stargate/auto_bridge.py +91 -0
- web3_wizzard_lib/core/modules/stargate/bridge.py +38 -0
- web3_wizzard_lib/core/modules/stargate/bridge_eth.py +59 -0
- web3_wizzard_lib/core/modules/stargate/bridge_tokens.py +48 -0
- web3_wizzard_lib/core/modules/stargate/classic_bridge.py +34 -0
- web3_wizzard_lib/core/modules/stargate/farming.py +163 -0
- web3_wizzard_lib/core/modules/stargate/l0_data.py +10 -0
- web3_wizzard_lib/core/modules/stargate/pool.py +74 -0
- web3_wizzard_lib/core/modules/stargate/stargate_balance_utils.py +25 -0
- web3_wizzard_lib/core/modules/stargate/stargate_gas_checker.py +68 -0
- web3_wizzard_lib/core/modules/swap/__init__.py +1 -0
- web3_wizzard_lib/core/modules/swap/horizondex.py +38 -0
- web3_wizzard_lib/core/modules/swap/izumi.py +41 -0
- web3_wizzard_lib/core/modules/swap/lineaswap.py +34 -0
- web3_wizzard_lib/core/modules/swap/maverick.py +66 -0
- web3_wizzard_lib/core/modules/swap/mute.py +39 -0
- web3_wizzard_lib/core/modules/swap/odos.py +58 -0
- web3_wizzard_lib/core/modules/swap/one_inch.py +58 -0
- web3_wizzard_lib/core/modules/swap/pancake.py +41 -0
- web3_wizzard_lib/core/modules/swap/swap_list.py +11 -0
- web3_wizzard_lib/core/modules/swap/syncswap.py +62 -0
- web3_wizzard_lib/core/modules/swap/velocore.py +40 -0
- web3_wizzard_lib/core/modules/swap/woofi.py +38 -0
- web3_wizzard_lib/core/modules/swap/xy_finance.py +43 -0
- web3_wizzard_lib/core/modules/swap/zebra.py +32 -0
- web3_wizzard_lib/core/modules/warm_up.py +98 -0
- web3_wizzard_lib/core/modules/wrapping.py +74 -0
- web3_wizzard_lib/core/modules/zkdx.py +63 -0
- web3_wizzard_lib/core/utils/__init__.py +0 -0
- web3_wizzard_lib/core/utils/ai_utils.py +45 -0
- web3_wizzard_lib/core/utils/benchmark_utils.py +12 -0
- web3_wizzard_lib/core/utils/module_memory.py +28 -0
- web3_wizzard_lib/core/utils/statistic_utils.py +150 -0
- web3_wizzard_lib/core/utils/sub_module.py +8 -0
- web3_wizzard_lib/data/__init__.py +0 -0
- web3_wizzard_lib/data/config_default.py +52 -0
- web3_wizzard_lib/data/module_config_default.py +209 -0
- web3_wizzard_lib/utils/__init__.py +0 -0
- web3_wizzard_lib/utils/debank_utils.py +19 -0
- {web3_wizzard_lib-1.6.12.dist-info → web3_wizzard_lib-1.6.15.dist-info}/METADATA +2 -2
- web3_wizzard_lib-1.6.15.dist-info/RECORD +369 -0
- web3_wizzard_lib-1.6.12.dist-info/RECORD +0 -107
- {web3_wizzard_lib-1.6.12.dist-info → web3_wizzard_lib-1.6.15.dist-info}/WHEEL +0 -0
- {web3_wizzard_lib-1.6.12.dist-info → web3_wizzard_lib-1.6.15.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
2
|
+
from sybil_engine.data.networks import get_chain_instance
|
3
|
+
from sybil_engine.utils.web3_utils import init_web3
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.contract.arena_games_contract import ArenaGamesContract
|
6
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
7
|
+
|
8
|
+
|
9
|
+
class ArenaGames(SubModule):
|
10
|
+
module_name = 'ARENA_GAMES'
|
11
|
+
|
12
|
+
def execute(self, account, chain='LINEA'):
|
13
|
+
chain_instance = get_chain_instance(chain)
|
14
|
+
web3 = init_web3(chain_instance, account.proxy)
|
15
|
+
|
16
|
+
contract_address = get_contracts_for_chain(chain)['ARENA_GAMES']
|
17
|
+
arena_games_contract = ArenaGamesContract(contract_address, web3)
|
18
|
+
|
19
|
+
arena_games_contract.safe_mint(account)
|
20
|
+
|
21
|
+
def log(self):
|
22
|
+
return "ARENA GAMES NFT"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
2
|
+
from sybil_engine.data.networks import get_chain_instance
|
3
|
+
from sybil_engine.utils.web3_utils import init_web3
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.contract.alienswap_contract import AlienSwapContract
|
6
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
7
|
+
|
8
|
+
|
9
|
+
class AsMatch(SubModule):
|
10
|
+
module_name = 'ASMATCH'
|
11
|
+
|
12
|
+
def execute(self, account, chain='LINEA'):
|
13
|
+
chain_instance = get_chain_instance(chain)
|
14
|
+
web3 = init_web3(chain_instance, account.proxy)
|
15
|
+
|
16
|
+
contract_address = get_contracts_for_chain(chain)['ASMATCH']
|
17
|
+
as_match_nft = AlienSwapContract(contract_address, web3)
|
18
|
+
|
19
|
+
as_match_nft.purchase(account, 1)
|
20
|
+
|
21
|
+
def log(self):
|
22
|
+
return "ASMATCH NFT"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
3
|
+
from sybil_engine.data.networks import get_chain_instance
|
4
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
5
|
+
from sybil_engine.utils.web3_utils import init_web3
|
6
|
+
|
7
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
8
|
+
|
9
|
+
|
10
|
+
class Battlemon(SubModule):
|
11
|
+
module_name = 'BATTLEMON'
|
12
|
+
|
13
|
+
def execute(self, account, chain='LINEA'):
|
14
|
+
chain_instance = get_chain_instance(chain)
|
15
|
+
web3 = init_web3(chain_instance, account.proxy)
|
16
|
+
|
17
|
+
contract_address = get_contracts_for_chain(chain)['BATTLEMON']
|
18
|
+
|
19
|
+
send = Send(None, web3)
|
20
|
+
send.send_to_wallet(
|
21
|
+
account, contract_address, NativeBalance(0, chain, "ETH"), "0x6871ee40"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "BATTLEMON NFT"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
2
|
+
from sybil_engine.data.networks import get_chain_instance
|
3
|
+
from sybil_engine.utils.web3_utils import init_web3
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.contract.bilinear_contract import BilinearContract
|
6
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
7
|
+
|
8
|
+
|
9
|
+
class Bilinear(SubModule):
|
10
|
+
module_name = 'BILINEAR'
|
11
|
+
|
12
|
+
def execute(self, account, chain='LINEA'):
|
13
|
+
chain_instance = get_chain_instance(chain)
|
14
|
+
web3 = init_web3(chain_instance, account.proxy)
|
15
|
+
|
16
|
+
contract_address = get_contracts_for_chain(chain)['BILINEAR']
|
17
|
+
as_match_nft = BilinearContract(contract_address, web3)
|
18
|
+
|
19
|
+
as_match_nft.claim(account)
|
20
|
+
|
21
|
+
def log(self):
|
22
|
+
return "BILINEAR LINEA NFT"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
3
|
+
from sybil_engine.data.networks import get_chain_instance
|
4
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
5
|
+
from sybil_engine.utils.web3_utils import init_web3
|
6
|
+
|
7
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
8
|
+
|
9
|
+
|
10
|
+
class BitAvatar(SubModule):
|
11
|
+
module_name = 'BITAVATAR'
|
12
|
+
|
13
|
+
def execute(self, account, chain='LINEA'):
|
14
|
+
chain_instance = get_chain_instance(chain)
|
15
|
+
web3 = init_web3(chain_instance, account.proxy)
|
16
|
+
|
17
|
+
contract_address = get_contracts_for_chain(chain)['BITAVATAR']
|
18
|
+
|
19
|
+
send = Send(None, web3)
|
20
|
+
send.send_to_wallet(
|
21
|
+
account, contract_address, NativeBalance(0, chain, "ETH"), "0x183ff085"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "BITAVATAR CHECK IN"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
6
|
+
|
7
|
+
|
8
|
+
class LineaCultureWeek2Day1(NftSubmodule):
|
9
|
+
module_name = 'LINEA_CULTURE_2_1'
|
10
|
+
nft_address = '0xc0A2a606913A49a0B0a02F682C833EFF3829B4bA'
|
11
|
+
|
12
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=0):
|
13
|
+
Send(
|
14
|
+
None,
|
15
|
+
self.create_web3(account, chain)
|
16
|
+
).send_to_wallet(
|
17
|
+
account,
|
18
|
+
self.nft_address,
|
19
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
20
|
+
"0x00000000"
|
21
|
+
)
|
22
|
+
|
23
|
+
def log(self):
|
24
|
+
return "LINEA CULTURE 2 WEEK DAY 1 (SATOSHI UNIVERSE)"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.data.networks import get_chain_instance
|
3
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
4
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
5
|
+
from sybil_engine.utils.web3_utils import init_web3
|
6
|
+
|
7
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
8
|
+
|
9
|
+
|
10
|
+
class Efrogs(SubModule):
|
11
|
+
module_name = 'LINEA_CULTURE_5'
|
12
|
+
|
13
|
+
def execute(self, account: AppAccount, chain='LINEA'):
|
14
|
+
chain_instance = get_chain_instance(chain)
|
15
|
+
web3 = init_web3(chain_instance, account.proxy)
|
16
|
+
|
17
|
+
send = Send(None, web3)
|
18
|
+
send.send_to_wallet(
|
19
|
+
account,
|
20
|
+
'0xf4AA97cDE2686Bc5ae2Ee934a8E5330B8B13Be64',
|
21
|
+
NativeBalance(0, chain, "ETH"),
|
22
|
+
"0x00000000"
|
23
|
+
)
|
24
|
+
|
25
|
+
def log(self):
|
26
|
+
return "LINEA CULTURE 5 (EFROGS)"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
2
|
+
from sybil_engine.data.networks import get_chain_instance
|
3
|
+
from sybil_engine.utils.web3_utils import init_web3
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.contract.empty_nft import EmptyNFT
|
6
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
7
|
+
|
8
|
+
|
9
|
+
class EmptyNFTModule(SubModule):
|
10
|
+
module_name = 'EMPTY_NFT'
|
11
|
+
|
12
|
+
def execute(self, account, chain='ZKSYNC'):
|
13
|
+
chain_instance = get_chain_instance(chain)
|
14
|
+
web3 = init_web3(chain_instance, account.proxy)
|
15
|
+
|
16
|
+
contract_address = get_contracts_for_chain(chain)['EMPTY_MINTER']
|
17
|
+
empty_nft = EmptyNFT(contract_address, web3)
|
18
|
+
|
19
|
+
empty_nft.mint(account)
|
20
|
+
|
21
|
+
def log(self):
|
22
|
+
return "EMPTY NFT"
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import random
|
2
|
+
|
3
|
+
from loguru import logger
|
4
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
5
|
+
from sybil_engine.data.networks import get_chain_instance
|
6
|
+
from sybil_engine.utils.web3_utils import init_web3
|
7
|
+
|
8
|
+
from web3_wizzard_lib.core.contract.era_name import EraName
|
9
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
10
|
+
|
11
|
+
|
12
|
+
class EraDomain(SubModule):
|
13
|
+
nft_address = '0x935442AF47F3dc1c11F006D551E13769F12eab13'
|
14
|
+
module_name = 'ERA_DOMAIN'
|
15
|
+
|
16
|
+
def execute(self, account, chain='ZKSYNC'):
|
17
|
+
chain_instance = get_chain_instance(chain)
|
18
|
+
web3 = init_web3(chain_instance, account.proxy)
|
19
|
+
|
20
|
+
contract_address = get_contracts_for_chain(chain)['ERA']
|
21
|
+
era_contract = EraName(contract_address, web3)
|
22
|
+
|
23
|
+
domain_name = self.get_random_name(era_contract)
|
24
|
+
|
25
|
+
era_contract.register(account, domain_name)
|
26
|
+
|
27
|
+
def get_random_name(self, era_contract):
|
28
|
+
domain_name = "".join(random.sample([chr(i) for i in range(97, 123)], random.randint(7, 15)))
|
29
|
+
|
30
|
+
logger.info(f"Mint {domain_name}.era domain")
|
31
|
+
|
32
|
+
check_name = era_contract.check_name(domain_name)
|
33
|
+
|
34
|
+
if check_name:
|
35
|
+
return domain_name
|
36
|
+
|
37
|
+
logger.info(f"{domain_name}.era is unavailable, try another domain")
|
38
|
+
|
39
|
+
return self.get_random_name(era_contract)
|
40
|
+
|
41
|
+
def log(self):
|
42
|
+
return "REGISTER RANDOM ERA NS DOMAIN"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
2
|
+
from sybil_engine.data.networks import get_chain_instance
|
3
|
+
from sybil_engine.utils.web3_utils import init_web3
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.contract.frog_war_contract import FrogWarContract
|
6
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
7
|
+
|
8
|
+
|
9
|
+
class FrogWar(SubModule):
|
10
|
+
module_name = 'FROG_WAR'
|
11
|
+
|
12
|
+
def execute(self, account, chain='LINEA'):
|
13
|
+
chain_instance = get_chain_instance(chain)
|
14
|
+
web3 = init_web3(chain_instance, account.proxy)
|
15
|
+
|
16
|
+
contract_address = get_contracts_for_chain(chain)['FROG_WAR']
|
17
|
+
frog_war = FrogWarContract(contract_address, web3)
|
18
|
+
|
19
|
+
frog_war.claim(account)
|
20
|
+
|
21
|
+
def log(self):
|
22
|
+
return "FROG WAR mint"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
2
|
+
from sybil_engine.data.networks import get_chain_instance
|
3
|
+
from sybil_engine.utils.web3_utils import init_web3
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.contract.frog_war_contract import FrogWarContract
|
6
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
7
|
+
|
8
|
+
|
9
|
+
class FrogWarBonus(SubModule):
|
10
|
+
module_name = 'FROG_WAR_BONUS'
|
11
|
+
|
12
|
+
def execute(self, account, chain='LINEA'):
|
13
|
+
chain_instance = get_chain_instance(chain)
|
14
|
+
web3 = init_web3(chain_instance, account.proxy)
|
15
|
+
|
16
|
+
contract_address = get_contracts_for_chain(chain)['FROG_WAR_BONUS']
|
17
|
+
frog_war = FrogWarContract(contract_address, web3)
|
18
|
+
|
19
|
+
frog_war.claim_bonus(account)
|
20
|
+
|
21
|
+
def log(self):
|
22
|
+
return "FROG WAR BONUS mint"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
3
|
+
from sybil_engine.data.networks import get_chain_instance
|
4
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
5
|
+
from sybil_engine.utils.web3_utils import init_web3
|
6
|
+
|
7
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
8
|
+
|
9
|
+
|
10
|
+
class GamerBoom(SubModule):
|
11
|
+
module_name = 'GAMERBOOM'
|
12
|
+
|
13
|
+
def execute(self, account, chain='LINEA'):
|
14
|
+
chain_instance = get_chain_instance(chain)
|
15
|
+
web3 = init_web3(chain_instance, account.proxy)
|
16
|
+
|
17
|
+
contract_address = get_contracts_for_chain(chain)['GAMERBOOM']
|
18
|
+
|
19
|
+
send = Send(None, web3)
|
20
|
+
send.send_to_wallet(
|
21
|
+
account, contract_address, NativeBalance(0, chain, "ETH"), "0xb9a2092d"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "GAMERBOOM CHECK IN"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
3
|
+
from sybil_engine.data.networks import get_chain_instance
|
4
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
5
|
+
from sybil_engine.utils.web3_utils import init_web3
|
6
|
+
|
7
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
8
|
+
|
9
|
+
|
10
|
+
class GamerBoomBonus(SubModule):
|
11
|
+
module_name = 'GAMERBOOM_BONUS'
|
12
|
+
allow_reuse_address = True
|
13
|
+
|
14
|
+
def execute(self, account, chain='LINEA'):
|
15
|
+
chain_instance = get_chain_instance(chain)
|
16
|
+
web3 = init_web3(chain_instance, account.proxy)
|
17
|
+
|
18
|
+
contract_address = get_contracts_for_chain(chain)['GAMERBOOM_BONUS']
|
19
|
+
|
20
|
+
send = Send(None, web3)
|
21
|
+
send.send_to_wallet(
|
22
|
+
account, contract_address, NativeBalance(0, chain, "ETH"), "0x1249c58b"
|
23
|
+
)
|
24
|
+
|
25
|
+
def log(self):
|
26
|
+
return "GAMERBOOM BONUS"
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import secrets
|
2
|
+
|
3
|
+
import base58
|
4
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
5
|
+
from sybil_engine.data.networks import get_chain_instance
|
6
|
+
from sybil_engine.utils.web3_utils import init_web3
|
7
|
+
|
8
|
+
from web3_wizzard_lib.core.contract.imagine_contract import ImagineContract
|
9
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
10
|
+
|
11
|
+
|
12
|
+
class Imagine(SubModule):
|
13
|
+
module_name = 'IMAGINE'
|
14
|
+
|
15
|
+
def execute(self, account, chain='LINEA'):
|
16
|
+
chain_instance = get_chain_instance(chain)
|
17
|
+
web3 = init_web3(chain_instance, account.proxy)
|
18
|
+
|
19
|
+
contract_address = get_contracts_for_chain(chain)['IMAGINE']
|
20
|
+
imagine_contract = ImagineContract(contract_address, web3)
|
21
|
+
|
22
|
+
random_bytes = secrets.token_bytes(32)
|
23
|
+
|
24
|
+
# Encode the byte string using base58
|
25
|
+
base58_string = base58.b58encode(random_bytes).decode('utf-8')
|
26
|
+
|
27
|
+
uri = f"https://ipfs.io/ipfs/{base58_string}/metadata.json"
|
28
|
+
|
29
|
+
imagine_contract.mint(account, uri)
|
30
|
+
|
31
|
+
def log(self):
|
32
|
+
return "IMAGINE NFT"
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import random
|
2
|
+
import string
|
3
|
+
|
4
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
5
|
+
from sybil_engine.data.networks import get_chain_instance
|
6
|
+
from sybil_engine.utils.web3_utils import init_web3
|
7
|
+
|
8
|
+
from web3_wizzard_lib.core.contract.kreatorland_contract import KreatorLandContract
|
9
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
10
|
+
|
11
|
+
|
12
|
+
class KreatorLand(SubModule):
|
13
|
+
module_name = 'KREATOR_LAND'
|
14
|
+
|
15
|
+
def execute(self, account, chain='ZKSYNC'):
|
16
|
+
chain_instance = get_chain_instance(chain)
|
17
|
+
web3 = init_web3(chain_instance, account.proxy)
|
18
|
+
|
19
|
+
contract_address = get_contracts_for_chain(chain)['KREATOR_LAND']
|
20
|
+
kreator_land_contract = KreatorLandContract(contract_address, web3)
|
21
|
+
|
22
|
+
uri = f'https://cloudflare-ipfs.com/ipfs/{random_string}/metadata.json'
|
23
|
+
|
24
|
+
kreator_land_contract.mint(account, uri)
|
25
|
+
|
26
|
+
def log(self):
|
27
|
+
return "Kreator Land"
|
28
|
+
|
29
|
+
def parse_params(self, module_params):
|
30
|
+
return []
|
31
|
+
|
32
|
+
|
33
|
+
def random_string(length=59):
|
34
|
+
characters = string.ascii_letters + string.digits # A-Z, a-z, 0-9
|
35
|
+
return ''.join(random.choice(characters) for _ in range(length))
|
@@ -0,0 +1,22 @@
|
|
1
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
2
|
+
from sybil_engine.data.networks import get_chain_instance
|
3
|
+
from sybil_engine.utils.web3_utils import init_web3
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.contract.l2_telegraph import L2TelegraphMinter
|
6
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
7
|
+
|
8
|
+
|
9
|
+
class L2Telegraph(SubModule):
|
10
|
+
module_name = "L2_TELEGRAPH_MINTER"
|
11
|
+
|
12
|
+
def execute(self, account, chain='ZKSYNC'):
|
13
|
+
chain_instance = get_chain_instance(chain)
|
14
|
+
web3 = init_web3(chain_instance, account.proxy)
|
15
|
+
|
16
|
+
contract_address = get_contracts_for_chain(chain)['L2_TELEGRAPH']
|
17
|
+
l2_telegraph = L2TelegraphMinter(contract_address, web3)
|
18
|
+
|
19
|
+
l2_telegraph.mint(account)
|
20
|
+
|
21
|
+
def log(self):
|
22
|
+
return "L2 TELEGRAPH MINTER"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.data.contracts import get_contracts_for_chain
|
3
|
+
from sybil_engine.data.networks import get_chain_instance
|
4
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
5
|
+
from sybil_engine.utils.web3_utils import init_web3
|
6
|
+
|
7
|
+
from web3_wizzard_lib.core.utils.sub_module import SubModule
|
8
|
+
|
9
|
+
|
10
|
+
class Layer3Meta(SubModule):
|
11
|
+
module_name = 'LAYER_3_META'
|
12
|
+
|
13
|
+
def execute(self, account, chain='LINEA'):
|
14
|
+
chain_instance = get_chain_instance(chain)
|
15
|
+
web3 = init_web3(chain_instance, account.proxy)
|
16
|
+
|
17
|
+
contract_address = get_contracts_for_chain(chain)['LAYER_3_META']
|
18
|
+
|
19
|
+
send = Send(None, web3)
|
20
|
+
send.send_to_wallet(
|
21
|
+
account, contract_address, NativeBalance(75000000000000, chain, "ETH"), "0x6871ee40"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "LAYER_3_META NFT"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
6
|
+
|
7
|
+
|
8
|
+
class LineaCultureWeek2Day2(NftSubmodule):
|
9
|
+
module_name = 'LINEA_CULTURE_2_2'
|
10
|
+
nft_address = '0xBcFa22a36E555c507092FF16c1af4cB74B8514C8'
|
11
|
+
|
12
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=0):
|
13
|
+
Send(
|
14
|
+
None,
|
15
|
+
self.create_web3(account, chain)
|
16
|
+
).send_to_wallet(
|
17
|
+
account,
|
18
|
+
self.nft_address,
|
19
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
20
|
+
"0x1b7af8fc0c21cfbb000000000000000000000000000000000000000000000000000000001ffca9db000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
|
21
|
+
)
|
22
|
+
|
23
|
+
def log(self):
|
24
|
+
return "LINEA CULTURE 2 WEEK DAY 2 (LINUS)"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
6
|
+
|
7
|
+
|
8
|
+
class LineaCultureWeek2Day2(NftSubmodule):
|
9
|
+
module_name = 'LINEA_CULTURE_2_3'
|
10
|
+
nft_address = '0xF502AA456C4ACe0D77d55Ad86436F84b088486F1'
|
11
|
+
|
12
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=0):
|
13
|
+
Send(
|
14
|
+
None,
|
15
|
+
self.create_web3(account, chain)
|
16
|
+
).send_to_wallet(
|
17
|
+
account,
|
18
|
+
self.nft_address,
|
19
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
20
|
+
"0x1249c58b"
|
21
|
+
)
|
22
|
+
|
23
|
+
def log(self):
|
24
|
+
return "LINEA CULTURE 2 WEEK DAY 3 (YOOLDO)"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
4
|
+
|
5
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
6
|
+
|
7
|
+
|
8
|
+
class LineaCultureWeek2Day2(NftSubmodule):
|
9
|
+
module_name = 'LINEA_CULTURE_2_4'
|
10
|
+
nft_address = '0x32DeC694570ce8EE6AcA08598DaEeA7A3e0168A3'
|
11
|
+
|
12
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=0):
|
13
|
+
Send(
|
14
|
+
None,
|
15
|
+
self.create_web3(account, chain)
|
16
|
+
).send_to_wallet(
|
17
|
+
account,
|
18
|
+
self.nft_address,
|
19
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
20
|
+
"0x00000000"
|
21
|
+
)
|
22
|
+
|
23
|
+
def log(self):
|
24
|
+
return "LINEA CULTURE 2 WEEK DAY 4 (FROGWAR)"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.domain.balance.balance_utils import from_eth_to_wei
|
4
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
5
|
+
|
6
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
7
|
+
|
8
|
+
|
9
|
+
class LineaCultureWeek2Day2(NftSubmodule):
|
10
|
+
module_name = 'LINEA_CULTURE_2_5'
|
11
|
+
nft_address = '0x057b0080120D89aE21cC622db34f2d9Ae9fF2BDE'
|
12
|
+
|
13
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=from_eth_to_wei(0.0001)):
|
14
|
+
Send(
|
15
|
+
None,
|
16
|
+
self.create_web3(account, chain)
|
17
|
+
).send_to_wallet(
|
18
|
+
account,
|
19
|
+
self.nft_address,
|
20
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
21
|
+
"0x1249c58b"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "LINEA CULTURE 2 WEEK DAY 5 (ACG)"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.domain.balance.balance_utils import from_eth_to_wei
|
4
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
5
|
+
|
6
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
7
|
+
|
8
|
+
|
9
|
+
class LineaCultureWeek2Day2(NftSubmodule):
|
10
|
+
module_name = 'LINEA_CULTURE_2_6'
|
11
|
+
nft_address = '0x0841479e87Ed8cC7374d3E49fF677f0e62f91fa1'
|
12
|
+
|
13
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=from_eth_to_wei(0)):
|
14
|
+
Send(
|
15
|
+
None,
|
16
|
+
self.create_web3(account, chain)
|
17
|
+
).send_to_wallet(
|
18
|
+
account,
|
19
|
+
self.nft_address,
|
20
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
21
|
+
"0x00000000"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "LINEA CULTURE 2 WEEK DAY 6 (Toad The Great)"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.domain.balance.balance_utils import from_eth_to_wei
|
4
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
5
|
+
|
6
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
7
|
+
|
8
|
+
|
9
|
+
class LineaCultureWeek2Day2(NftSubmodule):
|
10
|
+
module_name = 'LINEA_CULTURE_3_1'
|
11
|
+
nft_address = '0xBcFa22a36E555c507092FF16c1af4cB74B8514C8'
|
12
|
+
|
13
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=from_eth_to_wei(0)):
|
14
|
+
Send(
|
15
|
+
None,
|
16
|
+
self.create_web3(account, chain)
|
17
|
+
).send_to_wallet(
|
18
|
+
account,
|
19
|
+
self.nft_address,
|
20
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
21
|
+
"0x1b7af8fc0c21cfbb0000000000000000000000000000000000000000000000000000000019a747c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "LINEA CULTURE 3 WEEK DAY 1 (Ascend The End)"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.domain.balance.balance_utils import from_eth_to_wei
|
4
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
5
|
+
|
6
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
7
|
+
|
8
|
+
|
9
|
+
class LineaCultureWeek3Day2(NftSubmodule):
|
10
|
+
module_name = 'LINEA_CULTURE_3_2'
|
11
|
+
nft_address = '0xEaea2Fa0dea2D1191a584CFBB227220822E29086'
|
12
|
+
|
13
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=from_eth_to_wei(0)):
|
14
|
+
Send(
|
15
|
+
None,
|
16
|
+
self.create_web3(account, chain)
|
17
|
+
).send_to_wallet(
|
18
|
+
account,
|
19
|
+
self.nft_address,
|
20
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
21
|
+
"0x1249c58b"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "LINEA CULTURE 3 WEEK DAY 2 (Sending Me)"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
from sybil_engine.contract.send import Send
|
2
|
+
from sybil_engine.domain.balance.balance import NativeBalance
|
3
|
+
from sybil_engine.domain.balance.balance_utils import from_eth_to_wei
|
4
|
+
from sybil_engine.utils.app_account_utils import AppAccount
|
5
|
+
|
6
|
+
from web3_wizzard_lib.core.modules.nft.nft_submodule import NftSubmodule
|
7
|
+
|
8
|
+
|
9
|
+
class LineaCultureWeek3Day2(NftSubmodule):
|
10
|
+
module_name = 'LINEA_CULTURE_3_3'
|
11
|
+
nft_address = '0x8Ad15e54D37d7d35fCbD62c0f9dE4420e54Df403'
|
12
|
+
|
13
|
+
def execute(self, account: AppAccount, chain='LINEA', wei_cost=from_eth_to_wei(0)):
|
14
|
+
Send(
|
15
|
+
None,
|
16
|
+
self.create_web3(account, chain)
|
17
|
+
).send_to_wallet(
|
18
|
+
account,
|
19
|
+
self.nft_address,
|
20
|
+
NativeBalance(wei_cost, chain, "ETH"),
|
21
|
+
"0x00000000"
|
22
|
+
)
|
23
|
+
|
24
|
+
def log(self):
|
25
|
+
return "LINEA CULTURE 3 WEEK DAY 3 (Townstory)"
|