Ben Guidarelli
Ben Guidarelli
WIP draft but parsing new format into local objects Should write actual tests and make better use of the new stack type aliases
 ``` Compiling auction.tl to build/auction.teal Error: Pattern ((?P.*): (?P.*)) does not match for SwitchOption for line "# test" ```
So far only trying with bigint No mapping of ops based on TealishType is done in this PR For bool/address I think we'd need to get them in the langspec.json...
Similar to hex looking for `0x...` in #60, this looks for `addr(...)` where the contents are valid b32 strings. ``` const bytes ADMIN_ADDR = addr(RIKLQ5HEVXAOAWYSW2LGQFYGWVO4J6LIAQQ72ZRULHZ4KS5NRPCCKYPCUU) ``` This also changes the...
Since Statements and Expressions both inherit from `BaseNode` some issues arise in accessing attributes that are not defined in one or the other. We can change the inheritance structure to...
## Description and context The Solana Token Bridge requires the recipient of an inbound transfer to be the Associated Token Address (ATA) for the receiver + mint address. Without knowing...