cronos-labs / play-unreal-plugin

Unreal Engine plugin repo for GameFi
Other
14 stars 13 forks source link

Problem: Dynamic Array is not supported #331

Closed leejw51crypto closed 6 months ago

leejw51crypto commented 11 months ago
EthAbiToken::FixedArray(values) => Token::FixedArray(
                values
                    .iter()
                    .map(TryInto::try_into)
                    .collect::<Result<_, _>>()?,
            ),
            EthAbiToken::Array(values) => Token::FixedArray(

modify like below EthAbiToken::Array(values) => Token::Array(

MindlessSteel commented 11 months ago

Thanks for the update and work you have done on this.

331

@.***

On Mon, Jul 24, 2023, 9:10 AM Jongwhan Lee @.***> wrote:

EthAbiToken::FixedArray(values) => Token::FixedArray( values .iter() .map(TryInto::tryinto) .collect::<Result<, _>>()?, ), EthAbiToken::Array(values) => Token::FixedArray(

modify like below EthAbiToken::Array(values) => Token::Array(

— Reply to this email directly, view it on GitHub https://github.com/cronos-labs/play-unreal-plugin/issues/331, or unsubscribe https://github.com/notifications/unsubscribe-auth/AVV3IW7TZ3XYMJOQ5HII6Z3XRZX3BANCNFSM6AAAAAA2VSBAJE . You are receiving this because you are subscribed to this thread.Message ID: @.***>

MindlessSteel commented 11 months ago

Good work on issue (#331) Thanks for the update and work you have done on this token behalf.

leejw51crypto commented 6 months ago

done