const hallidayClient = new Halliday(
"A5A778C5-74E5-4D4E-AB30-08C6DC902999",
BlockchainType.ETHEREUM
);
hallidayClient.logInWithGoogle();
const userInfo = await hallidayClient.getUserInfo();
const wallet = await hallidayClient.getOrCreateHallidayAAWallet(
"your_player_id"
);
const transferAssetTxInfo = await hallidayClient.transferAsset({
from_in_game_player_id: "your_player_id",
to_in_game_player_id: "other_player_id",
collection_address: "0x83b0911405eD6A9d2A18d081b24CC6163273E3d1",
token_id: "3988",
sponsor_gas: true,
});
console.log(transferAssetTxInfo.on_chain_id);