Jump to content

Recommended Posts

Posted

Καλησπέρα!

Έχοντας ήδη ολοκληρώσει τo back-end για project που αφορά αυτοματικοποίημένες πληρωμές με χρήση κρυπτονομισμάτων, αναζητείτε συνεργάτης για να αναλάβει την ανάπτυξη και υποστήριξη ιστοσελίδας (web developer), ώστε να ολοκληρώθει η πρώτη φάση (project launch) του εγχειρήματος.

Η τρέχουσα ιστοσελίδα είναι https://fiskpay.net

Θα χαρώ να απαντήσω σε διευκρινήσεις!

Posted

επειδή έχω ασχοληθεί πολύ με τα IPN θα σου πρότεινα να ασχοληθείς περισσότερο με την πιστοποίηση και την ασφάλεια γιατί λείπουν πολλά απο τη PHP σύνδεση που κάνει ο συνδρομητής σου

μιλάω για αυτό: https://files.fiskpay.net/dependency/fiskpay-dependency.zip

<?php

/*
 * @package    fiskpay.ipn
 *
 * @copyright  (C) FiskPay https://fiskpay.net/
 * @license    GNU General Public License version 2 or later;
 */
 
//Add tor wallet address in the $wallet parameter. Example:
//
//$wallet = "0x1BedAb21aB78D16a4EDAf6eBbb746ccfEA5e7ad0";

$wallet = "0x1bedab21ab78d16a4edaf6ebbb746ccfea5e7ad0";

$data = json_decode(file_get_contents('php://input'), true);
if($data)
{
	$claimed = false;
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL, 'https://api.fiskpay.net/claim/');
	curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(array('k' => $data['0'], 'w' => $wallet)));
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_POST, true);
	$json_data = curl_exec($ch);
	curl_close($ch);
	if($json_data)
	{
		$claim_data = json_decode(preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $json_data));
		if($claim_data != null && $claim_data -> claim)
		{
			$claimed = true;
		}
	}
	if($claimed)
	{
		//Variables feched from the post form during client payment
		$variable_1 = $data['1'];
		$variable_2 = $data['2'];
		$variable_3 = $data['3'];
		$variable_4 = $data['4'];
		$crypto_currency = $data['5'];
		$crypto_amount = $data['6'];
		$fiat_currency = $data['7'];
		$fiat_amount = $data['8'];
		$transaction_hash = $data['9'];
		$transaction_chain_id = $data['10'];
			
		/*--------------------------------------------------*/
		/*													*/
		/*													*/
		/*													*/
		/*             remove these commends and            */
		/*                add your code here!               */
		/*													*/
		/*													*/
		/*													*/
		/*--------------------------------------------------*/
	}
}

?>

επίσης καλό είναι να δώσεις και ένα sandbox με ελεύθερη χρήση και να στήσεις ένα github project για τον composer θα κερδίσεις πολύ γρηγορότερα κόσμο αν όλα γίνονται εύκολα και υπάρχει wiki για το Rest API με documentation για τους developers, επίσης θα ήταν καλό να μην σταθείς μόνο στην PHP αλλά να το δώσεις για περισσότερες γλώσσες.

Y.γ: https://app.fiskpay.net/ αυτό δεν φαίνεται πολύ καλά, γεμάτο nulls είναι

Posted (edited)

Καλησπέρα!

Ευχαριστώ για το χρόνο που αφιέρωσες, στο να απαντήσεις στο πόστ.

Η πιστοποίηση γίνετε ως εξής: έχω επιβεβαιώσει ότι έγινε μία πληρωμή μέσω blockchain και "κρατάω" την επιβεβαίωση σε μία βάση δεδομένων.

 

Απο τον σέρβερ (μου) στέλνω μία ειδοποίηση στον πελάτη και του ζητάω να μου στείλει κάποια στοιχεία τα οποία εξακριβώνονται στο blockchain και στη βάση. Αν όλα είναι οκ απαντάω στον πελάτη "προχώρα".

 

Όσο αφορά την τοποθέτησή σου, ότι λείπουν πολλά από την php σύνδεση, μπορείς να κάνεις κάποια επισήμανση;

Το sandbox υπάρχει ήδη αφού οι πληρωμές λειτουργούν και στο mainnet και στο testnet,

Τα null παρουσιάζονται επειδή δεν έχεις συνδεθεί στη σελίδα με κάποιο web3 πορτοφόλι ή/και είσαι σε λάθος Network (blockchain)

Οι περιγραφές στο πώς ακριβώς πιστοποιούνται οι συναλλαγές είναι σκοπήμως ανακριβής - κακές καθώς θα ήταν κάπως χαζό να περιγράψω ακριβώς πως λειτουργεί. Επίσης αν όντως περιέγραφα επακριβώς πως γίνετε η πιστοποίηση θα έπρεπε να γράψω "έκθεση".

Αν θέλεις μπορούμε να κουβεντίασουμε μέσω discord, στην περίπτωση που θα ήθελες να συμμετέχεις στην υλοποίηση του Project.

Και πάλι ευχαριστώ για το χρόνο σου

 

Edited by ScRaB4ever
Posted (edited)

https://dev.twitch.tv/docs/api/get-started

είναι το καλύτερο παράδειγμα που μπορώ να σου δώσω

Authorization Tokens
Client Id
Client secret

Η καλύτερη πιστοποίηση μέσω των κεφαλίδων (headers) χωρίς να φορτώνεις body (εξοικονόμηση πόρων) και δίνεις πρόσβαση σε συγκεκριμένους τομείς με json απαντήσεις αφού γίνει η πιστοποίηση, μετά από αυτό έρχεται η ζωή των tokens και η ανανέωσή τους.

 

και το documentation για τους developers ένα παράδειγμα: https://dev.twitch.tv/docs/api/reference#get-game-analytics

 

αυτά.

 

Edited by Nightw0lf
Posted

σε έκανα add. Η πιστοποιηση γίνετε με "τυχαια" sha256 hashes τα οποία δεν αντιστοιχούν σε κάποιον χρήστη αλλά σε συναλαγές που έχουν επαληθευτεί στο blockchain και έχουν αποθηκευτεί στον σερβερ. τα hashes ειναι διαφορετικά από αυτά του blockchain.

Πρακτικά διαβάζω ποιός πληρώνει ποιόν στο blockchain, πηγαίνω στο ipn αυτού που πληρώθηκε, του λέω (με api) "έχω πιστοποιήσει ότι αυτός σε πλήρωσε" οπότε το ipn ΄κάνει αυτό π είναι να κάνει.

 

Posted
2 hours ago, BabayG said:

Ρε αφήστε τα αυτά και πείτε μας, θα ανέβουν τα μπουρδελικια?🤪

βάλε και εσύ ένα χεράκι είδες κώδικα; ζόρικα τα πράγματα:pepe-cool:

Posted
3 hours ago, BabayG said:

Ρε αφήστε τα αυτά και πείτε μας, θα ανέβουν τα μπουρδελικια?🤪

κααααααααποια στιγμη θα ανεβουν:P

Posted (edited)
8 hours ago, Nightw0lf said:

βάλε και εσύ ένα χεράκι είδες κώδικα; ζόρικα τα πράγματα:pepe-cool:

Μόλις δω κώδικα λακίζω. Κλειν σε λίγο θα τα κάνουν όλα τα μποτάκια 

 

7 hours ago, ScRaB4ever said:

κααααααααποια στιγμη θα ανεβουν:P

Αμήν

Edited by BabayG
  • Haha 2
  • Vision locked this topic
Guest
This topic is now closed to further replies.


  • Posts

    • What a deductive skills. What is it, 2012? And would You ask for unban with false accusations? I don't have to prove YOU anything. Have fun.
    • Released new security update for Faceit anti-cheat and Gamers Club. Cheat is available again! We also added a few more slots for 1 month subscription and 6 months.
    • This post originally appeared on zupyak.   If you're diving into MLB The Show 25, you know how essential stubs are for building a powerhouse team. Whether you're aiming to snag elite players, upgrade your roster, or stock up on packs, stubs are the key to success. The good news? You don't need to spend real money to earn them. With a little strategy and effort, you can rake in stubs and dominate the diamond.  Here are the top five strategies to maximize your MLB The Show stub earnings and create the ultimate team without breaking the bank.    1. Earning Stubs with Diamond Quest Diamond Quest is a goldmine for stubs. By completing challenges in this mode, you can earn Diamond cards, which often have high sell values. Once you've earned these cards, sell them in the in-game Marketplace for a quick influx of stubs. Additionally, the packs you earn from Diamond Quest can be opened for more cards to sell or use in collections.   2. Completing Conquest Maps Conquest Maps are another excellent way to rack up stubs. Focus on capturing territories and completing map-specific goals. Many maps offer hidden rewards, including packs and stubs, which can significantly boost your earnings. You don't always need to conquer Strongholds—simply taking over territories can yield great rewards.   3. Flipping Cards in the Marketplace The Marketplace is your playground for flipping cards. Look for cards with a significant gap between their "Buy Now" and "Sell Now" prices. Place a Buy Order slightly above the current "Sell Now" price, then list the card for a "Sell Order" just below the "Buy Now" price. After the 10% Marketplace tax, you'll still make a profit. This strategy works best with high-value cards but requires patience and consistency.     4. Leveraging Player Exchanges Player Exchanges are an underrated method for earning stubs. Purchase cheap Silver cards near their quick-sell value, then exchange them for Gold players. These Gold players can either be used in your lineup or sold for a profit. This method is especially effective early in the game when Gold cards hold higher value.   5. Selling Things You Don't Need Don't let unused items clutter your inventory. Regularly check for duplicate cards, equipment, or other items you don't need. Sell these through the Marketplace to free up space and earn extra stubs. Even Bronze and Silver cards can add up over time, so don't overlook them. With these strategies, you'll be well on your way to building a dream team without spending real money. Let me know if you'd like to dive deeper into any of these methods!   Final Thoughts Building your dream team in MLB The Show 25 doesn't have to cost real money. With these five strategies—earning rewards through Diamond Quest, conquering Conquest Maps, flipping cards in the Marketplace, leveraging Player Exchanges, and selling unused items—you'll be well on your way to amassing stubs and creating a roster that rivals even the best in the game. Remember, consistency is key! Whether you're grinding through challenges or flipping cards daily, every little bit adds up over time. Stick with these methods, and soon enough, you'll have the stubs you need to dominate the diamond. Let us know which strategy works best for you—or if you've discovered any additional tips that deserve a spot on this list! Happy grinding!   
    • I don't see that ur account got unbanned https://maxcheaters.com/profile/80641-∽ave∽/  
    • Looking for gracia final/gracia epilogue server files including source.
  • Topics

×
×
  • Create New...