Getting Started with Halliday on Unreal Engine

🚧

Contact Halliday for more details!

Before getting started below, please contact a Halliday representative ([email protected]) to activate this functionality.

Installation

Download the latest source code from the releases page.

Drag and drop the contents, e.i. the HallidaySDK and Web3AuthSDK folders, from the source code into the Plugins directory of your project.

Build

Click on your .uproject file to open Unreal Engine and select Yes when you get this message: "Missing Modules [...] Would you like to rebuild them now?".

Usage

You can access the HallidaySDK through C++ or Blueprints. The HallidaySDK comes with an example found in the HallidaySDK Content folder where you will find two assets: HallidaySDKTest and Web3AuthInstance. Drag and drop these two into your game and update the event graph of the LoginWidget and ApiWidget with your public API key and press play.

All SDK responses are handled with delegates. You can bind an event in C++ or in Blueprints (as shown in the ApiWidget event graph).

Account Access

// Get the Halliday Component
AHalliday* HallidayClient = Cast<AHalliday>(UGameplayStatics::GetActorOfClass(GetWorld(), AHalliday::StaticClass()));

// Initialize the component with your public Halliday API Key
HallidayClient.Initialize("INSERT_HALLIDAY_PUBLIC_API_KEY", EBlockchainType::MUMBAI, true, "INSERT_YOUR_CLIENT_VERIFIER_ID");

// Get your player's wallets
// If your player is new, the HallidayClient will create a new wallet and return it.
// If this is a returning player, HallidayClient will return the wallet stored for the player.
HallidayClient->GetOrCreateHallidayAAWallet(InGamePlayerId);

// Get Player NFTs
HallidayClient->GetAssets(InGamePlayerId);

// Get Player ERC-20 and Native Token balances
HallidayClient->GetBalances(InGamePlayerId);

Token Transfers

// Get the Halliday Component
AHalliday* HallidayClient = Cast<AHalliday>(UGameplayStatics::GetActorOfClass(GetWorld(), AHalliday::StaticClass()));

// Initialize the component with your public Halliday API Key
HallidayClient.Initialize("INSERT_HALLIDAY_PUBLIC_API_KEY", EBlockchainType::MUMBAI, true, "INSERT_YOUR_CLIENT_VERIFIER_ID");

// Assuming GetOrCreateHallidayAAWallet() has been called already
// Call BalanceTransfer to transfer native tokens
HallidayClient->TransferBalance(
    from_in_game_player_id: PlayerIdOne,
    to_in_game_player_id: PlayerIdTwo,
    blockchain_type: EBlockchainType::MUMBAI,
    sponsor_gas: true,
    value: "0.025"
);

// Assuming GetOrCreateHallidayAAWallet() has been called already
// Call BalanceTransfer to transfer ERC20 tokens
HallidayClient->TransferBalance(
    from_in_game_player_id: PlayerIdOne,
    to_in_game_player_id: PlayerIdTwo,
    blockchain_type: EBlockchainType::MUMBAI,
    sponsor_gas: true,
    value: "1000000000000000000", // 1 ETH
    token_address: ERC20TokenAddress
);

Asset Transfers

// Get the Halliday Component
AHalliday* HallidayClient = Cast<AHalliday>(UGameplayStatics::GetActorOfClass(GetWorld(), AHalliday::StaticClass()));

// Initialize the component with your public Halliday API Key
HallidayClient.Initialize("INSERT_HALLIDAY_PUBLIC_API_KEY", EBlockchainType::MUMBAI, true, "INSERT_YOUR_CLIENT_VERIFIER_ID");

// Assuming GetOrCreateHallidayAAWallet() has been called already
// Send NFT from one player to another
HallidayClient->TransferAsset(
    from_in_game_player_id: PlayerIdOne,
    to_in_game_player_id: PlayerIdTwo,
    collection_address: ERC721ContractAddress,
    token_id: ERC721TokenId,
    blockchain_type: EBlockchainType::MUMBAI,
    sponsor_gas: true
);

Contract Calls

// Get the Halliday Component
AHalliday* HallidayClient = Cast<AHalliday>(UGameplayStatics::GetActorOfClass(GetWorld(), AHalliday::StaticClass()));

// Initialize the component with your public Halliday API Key
HallidayClient.Initialize("INSERT_HALLIDAY_PUBLIC_API_KEY", EBlockchainType::MUMBAI, true, "INSERT_YOUR_CLIENT_VERIFIER_ID");

// Assuming GetOrCreateHallidayAAWallet() has been called already
// Make Contract Call
HallidayClient->CallContract(
    from_in_game_player_id: PlayerIdOne,
    target_address: ERC20ContractAddress,
    calldata: Calldata,
    value: "0",
    blockchain_type: EBlockchainType::MUMBAI,
    sponsor_gas: true
);