@@ -1704,26 +1704,29 @@ export class MatchingEngineProgram {
1704
1704
auctionConfig ?: PublicKey ;
1705
1705
bestOfferToken ?: PublicKey ;
1706
1706
initialOfferToken ?: PublicKey ;
1707
+ initialParticipant ?: PublicKey ;
1707
1708
} ,
1708
1709
opts : {
1709
1710
targetChain ?: wormholeSdk . ChainId ;
1710
1711
} = { } ,
1711
1712
) {
1713
+ const connection = this . program . provider . connection ;
1714
+
1712
1715
const { payer, fastVaa, auctionConfig, bestOfferToken } = accounts ;
1713
1716
1714
- let { auction, executorToken, initialOfferToken } = accounts ;
1717
+ let { auction, executorToken, initialOfferToken, initialParticipant } = accounts ;
1715
1718
let { targetChain } = opts ;
1716
1719
1717
1720
executorToken ??= splToken . getAssociatedTokenAddressSync ( this . mint , payer ) ;
1718
1721
1719
1722
let fastVaaAccount : VaaAccount | undefined ;
1720
1723
if ( auction === undefined ) {
1721
- fastVaaAccount = await VaaAccount . fetch ( this . program . provider . connection , fastVaa ) ;
1724
+ fastVaaAccount = await VaaAccount . fetch ( connection , fastVaa ) ;
1722
1725
auction = this . auctionAddress ( fastVaaAccount . digest ( ) ) ;
1723
1726
}
1724
1727
1725
1728
if ( targetChain === undefined ) {
1726
- fastVaaAccount ??= await VaaAccount . fetch ( this . program . provider . connection , fastVaa ) ;
1729
+ fastVaaAccount ??= await VaaAccount . fetch ( connection , fastVaa ) ;
1727
1730
1728
1731
const { fastMarketOrder } = LiquidityLayerMessage . decode ( fastVaaAccount . payload ( ) ) ;
1729
1732
if ( fastMarketOrder === undefined ) {
@@ -1742,6 +1745,11 @@ export class MatchingEngineProgram {
1742
1745
initialOfferToken = info . initialOfferToken ;
1743
1746
}
1744
1747
1748
+ if ( initialParticipant === undefined ) {
1749
+ const token = await splToken . getAccount ( connection , initialOfferToken ) ;
1750
+ initialParticipant = token . owner ;
1751
+ }
1752
+
1745
1753
const {
1746
1754
custodian,
1747
1755
routerEndpoint : toRouterEndpoint ,
@@ -1781,6 +1789,7 @@ export class MatchingEngineProgram {
1781
1789
) ,
1782
1790
executorToken,
1783
1791
initialOfferToken,
1792
+ initialParticipant,
1784
1793
} ,
1785
1794
toRouterEndpoint : this . routerEndpointComposite ( toRouterEndpoint ) ,
1786
1795
custodian : this . checkedCustodianComposite ( custodian ) ,
@@ -1818,21 +1827,25 @@ export class MatchingEngineProgram {
1818
1827
auctionConfig ?: PublicKey ;
1819
1828
bestOfferToken ?: PublicKey ;
1820
1829
initialOfferToken ?: PublicKey ;
1830
+ initialParticipant ?: PublicKey ;
1821
1831
toRouterEndpoint ?: PublicKey ;
1822
1832
} ,
1823
1833
opts : {
1824
1834
sourceChain ?: wormholeSdk . ChainId ;
1825
1835
} = { } ,
1826
1836
) {
1837
+ const connection = this . program . provider . connection ;
1838
+
1827
1839
const { payer, fastVaa, auctionConfig, bestOfferToken } = accounts ;
1828
1840
1829
- let { auction, executorToken, toRouterEndpoint, initialOfferToken } = accounts ;
1841
+ let { auction, executorToken, toRouterEndpoint, initialOfferToken, initialParticipant } =
1842
+ accounts ;
1830
1843
let { sourceChain } = opts ;
1831
1844
executorToken ??= splToken . getAssociatedTokenAddressSync ( this . mint , payer ) ;
1832
1845
toRouterEndpoint ??= this . routerEndpointAddress ( wormholeSdk . CHAIN_ID_SOLANA ) ;
1833
1846
1834
1847
if ( auction === undefined ) {
1835
- const vaaAccount = await VaaAccount . fetch ( this . program . provider . connection , fastVaa ) ;
1848
+ const vaaAccount = await VaaAccount . fetch ( connection , fastVaa ) ;
1836
1849
auction = this . auctionAddress ( vaaAccount . digest ( ) ) ;
1837
1850
}
1838
1851
@@ -1852,6 +1865,11 @@ export class MatchingEngineProgram {
1852
1865
initialOfferToken ??= auctionInfo . initialOfferToken ;
1853
1866
}
1854
1867
1868
+ if ( initialParticipant === undefined ) {
1869
+ const token = await splToken . getAccount ( connection , initialOfferToken ) ;
1870
+ initialParticipant = token . owner ;
1871
+ }
1872
+
1855
1873
const {
1856
1874
custodian,
1857
1875
coreMessage,
@@ -1879,6 +1897,7 @@ export class MatchingEngineProgram {
1879
1897
) ,
1880
1898
executorToken,
1881
1899
initialOfferToken,
1900
+ initialParticipant,
1882
1901
} ,
1883
1902
toRouterEndpoint : this . routerEndpointComposite ( toRouterEndpoint ) ,
1884
1903
wormhole : {
0 commit comments