Hey everyone!
So once again my pea brain is failing me lol.
I'm trying to figure out how to merge 4 Arrays into an Array of Objects
(each of the Arrays has up to 20 strings inside it).
Here are a sample of the Arrays I'm attempting to merge (only with 2 Strings per to save space)
Array 1 memos
:
[
"0x4275696c6420546865204368616e6765210000000000000000000000000000000000",
"0x4f6e6520536d616c6c204368696d6520666f722048756d616e697479210000000000"
]
Array 2 txids
:
[
"0xf85e3ec5c3aa06e3c960f137c94caf5af282005edd2f05ab3253d3c70141569d",
"0x5b9f832db5ecc6024368ee134abc94c78324731d7f79f6491c1cd420bddf9633"
]
Array 3 senders
:
[
"SP1TA84JTP4YRFWBK7PYKBA33H3YB60XP654RAR7M",
"SP1TA84JTP4YRFWBK7PYKBA33H3YB60XP654RAR7M"
]
Array 4 times
:
[
"2021-08-30T02:31:02.000Z",
"2021-08-30T00:25:29.000Z"
]
I've tried to use the Join node but End results never turn out the way I need them to be.
I want the final output to be an Array of Objects (obviously upto 20 objects) looking something like:
[
{
"memo":"0x4275696c6420546865204368616e6765210000000000000000000000000000000000",
"txid":"0xf85e3ec5c3aa06e3c960f137c94caf5af282005edd2f05ab3253d3c70141569d",
"sender":"SP1TA84JTP4YRFWBK7PYKBA33H3YB60XP654RAR7M",
"time":"2021-08-30T02:31:02.000Z"
},
{
"memo":"0x4f6e6520536d616c6c204368696d6520666f722048756d616e697479210000000000",
"txid":"0x5b9f832db5ecc6024368ee134abc94c78324731d7f79f6491c1cd420bddf9633",
"sender":"SP1TA84JTP4YRFWBK7PYKBA33H3YB60XP654RAR7M",
"time":"2021-08-30T00:25:29.000Z"
}
]
If anyone has the skills to help get me sorted out I'd really appreciate it!
Thanks!