Transaction Pool Generation
Flex is a community-owned platform that rapidly boosts dApp user growth through a multi-chain, proof-of-collaboration protocol. The Validator node's Data layer creates a Transaction pool:
Last updated
Flex is a community-owned platform that rapidly boosts dApp user growth through a multi-chain, proof-of-collaboration protocol. The Validator node's Data layer creates a Transaction pool:
Last updated
// Transaction Structure
{
"wallets": [
{
"address": "0x1234567890abcdef1234567890abcdef12345678",
"actions": {
"onchain": [
{
"action_id": "onchain_001"
},
{
"action_id": "onchain_002"
}
],
"offchain": [
{
"action_id": "offchain_001"
},
{
"action_id": "offchain_002"
}
]
}
},
{
"address": "0xabcdef1234567890abcdef1234567890abcdef12",
"actions": {
"onchain": [
{
"action_id": "onchain_003"
},
{
"action_id": "onchain_004"
}
],
"offchain": [
{
"action_id": "offchain_003"
},
{
"action_id": "offchain_004"
}
]
}
}
]
}