<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monero_c.git/monero_libwallet2_api_c/CMakeLists.txt, branch v0.18.3.3-RC39</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<id>https://git-private.cyanek.com/monero_c.git/atom?h=v0.18.3.3-RC39</id>
<link rel='self' href='https://git-private.cyanek.com/monero_c.git/atom?h=v0.18.3.3-RC39'/>
<link rel='alternate' type='text/html' href='https://git-private.cyanek.com/monero_c.git/'/>
<updated>2024-04-25T08:07:36+00:00</updated>
<entry>
<title>wownero-seed support</title>
<updated>2024-04-25T08:07:36+00:00</updated>
<author>
<name>Czarek Nakamoto</name>
<email>cyjan@mrcyjanek.net</email>
</author>
<published>2024-04-25T08:07:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git-private.cyanek.com/monero_c.git/commit/?id=b7eab542df8e5be2cdc2180dba2dfedc66f07a14'/>
<id>urn:sha1:b7eab542df8e5be2cdc2180dba2dfedc66f07a14</id>
<content type='text'>
</content>
</entry>
<entry>
<title>actually fix and not workaround the iOS issue.</title>
<updated>2024-04-02T17:14:43+00:00</updated>
<author>
<name>Czarek Nakamoto</name>
<email>cyjan@mrcyjanek.net</email>
</author>
<published>2024-04-02T17:14:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git-private.cyanek.com/monero_c.git/commit/?id=3eb727598b71e4f6eab4dd2d5b17a31ef432149d'/>
<id>urn:sha1:3eb727598b71e4f6eab4dd2d5b17a31ef432149d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat: iOS builds</title>
<updated>2024-04-02T15:09:22+00:00</updated>
<author>
<name>Czarek Nakamoto</name>
<email>cyjan@mrcyjanek.net</email>
</author>
<published>2024-04-02T15:09:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git-private.cyanek.com/monero_c.git/commit/?id=e2ad1410071041f7953c1600ac47b6052b366f3a'/>
<id>urn:sha1:e2ad1410071041f7953c1600ac47b6052b366f3a</id>
<content type='text'>
includes patches to
- randomx: https://github.com/tevador/RandomX/pull/294
- randomwow: https://git.wownero.com/wownero/RandomWOW/pulls/2
</content>
</entry>
<entry>
<title>un-conflict exported symbols on macos</title>
<updated>2024-04-01T12:00:33+00:00</updated>
<author>
<name>Czarek Nakamoto</name>
<email>cyjan@mrcyjanek.net</email>
</author>
<published>2024-04-01T12:00:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git-private.cyanek.com/monero_c.git/commit/?id=f6ca8ee9fb5ef36aa11fb894fc6fc1111960503a'/>
<id>urn:sha1:f6ca8ee9fb5ef36aa11fb894fc6fc1111960503a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat: macos host builds</title>
<updated>2024-04-01T06:51:37+00:00</updated>
<author>
<name>Czarek Nakamoto</name>
<email>cyjan@mrcyjanek.net</email>
</author>
<published>2024-04-01T06:51:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git-private.cyanek.com/monero_c.git/commit/?id=365c444b05d19c210ff10cdb71b80040b04bbcef'/>
<id>urn:sha1:365c444b05d19c210ff10cdb71b80040b04bbcef</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix: wownero and monero wallets in the same process</title>
<updated>2024-04-01T04:54:50+00:00</updated>
<author>
<name>Czarek Nakamoto</name>
<email>cyjan@mrcyjanek.net</email>
</author>
<published>2024-04-01T04:54:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git-private.cyanek.com/monero_c.git/commit/?id=f2057a23630901a76a12bf876a6f9a28d7fc52fd'/>
<id>urn:sha1:f2057a23630901a76a12bf876a6f9a28d7fc52fd</id>
<content type='text'>
ci: cache ~/.ccache directory
</content>
</entry>
<entry>
<title>feat: split MONERO and WOWNERO prefixed functions</title>
<updated>2024-03-31T07:19:47+00:00</updated>
<author>
<name>Czarek Nakamoto</name>
<email>cyjan@mrcyjanek.net</email>
</author>
<published>2024-03-31T07:19:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git-private.cyanek.com/monero_c.git/commit/?id=b72d2dff623665f42985ef9b6419636ca35a51d1'/>
<id>urn:sha1:b72d2dff623665f42985ef9b6419636ca35a51d1</id>
<content type='text'>
So basically: when we open the .so file, we define some
symbols, and it appears that if we load something else,
with the same symbols, under the same thread we cause
some funky behaviour - like calling function a wownero
function MONERO_Wallet_address() resulting in a monero
address being generated.
Needless to say, this is undesired, and a blocker for
https://github.com/cypherstack/stack_wallet/pull/818

I'm afraid that this may not solve all of our issues (but
will solve some significant roadblocks), because of the
"genesis block" issue, as output of
nm -gDC release/wownero/x86_64-linux-gnu_libwallet2_api_c.so | grep genesis
indicate that these functions may share *something* in
common across both WOW and XMR libraries.
In a case in which this fix won't be sufficient, I think that
the way forward would be to close the dynamic libraries,
but before we do that I want to check if maybe there is
a change to run multiple wallets at once.
</content>
</entry>
</feed>
