Defenceman Jake Walman set to make Oilers debut vs. Stars

Jake Walman will make his Oilers debut playing alongside Troy Stecher when Edmonton takes on the Stars.

Defenceman Jake Walman set to make Oilers debut vs. Stars

The Edmonton Oilers will get reinforcements in the lineup against the Dallas Stars.

Newly acquired defenceman Jake Walman will dress for Saturday’s game against the Dallas Stars.

Walman was skating on a pairing with Troy Stecher during the morning skate in his first practice with the team.

The move comes at an important time for Edmonton with defencemen Mattias Ekholm and John Klingberg both sidelined with minor injuries.

Watch Edmonton host the Stars, who are also expected to have Mikko Rantanen make his debut, on Hockey Night in Canada on Sportsnet at 8 p.m. MT/10 p.m. ET.

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_c1b4d79935cbc9d5e85bdb63d576f987', 'NHL', 'bc43b454-4de0-4a5e-bed0-8273db7402e3');

Edmonton acquired Walman from the San Jose Sharks in exchange for forward Carl Berglund and a conditional first-round pick in 2026.

According to Sportsnet’s Elliotte Friedman, the conditions on the 2026 first-round pick are that if it falls within the top 12, the Oilers can transfer their 2027 first-round pick to San Jose instead. However, if Edmonton trades their 2027 first-round pick before the 2026 NHL trade deadline, the 2026 first-round pick goes to San Jose unconditionally.

Walman, a 29-year-old Toronto native, has six goals and 26 assists in 50 games for last-place San Jose this season.

Walman is under contract through next season at $3.4 million AAV on a deal originally signed with the Red Wings. Detroit traded him to San Jose at last June’s NHL Draft for a second-round pick.

He also joins an Oilers team that also added forwards Trent Frederic and Max Jones from the Boston Bruins.