Skip to main content

SponsoredTransfer

fromstringrequired

Investor's own Venly custodial wallet. It is the on-chain sender (msg.sender) and the only signer of the transfer. The platform tops up this wallet with native POL so it can pay its own gas (gas-station model); it never grants an allowance to the platform nor originates the movement on the investor's behalf.

Possible values: Value must match regular expression ^0x[0-9a-fA-F]{40}$

Example: 0xAc563420722cbcfc84857129bef775e0dc5f1401
tostringrequired

Recipient account address that will receive the tokens.

Possible values: Value must match regular expression ^0x[0-9a-fA-F]{40}$

Example: 0x2b563420722cbcfc84857129bef775e0dc5f1401
amountstringrequired

Amount of tokens to transfer, expressed human-readable — Venly applies the token decimals. Send 10.5, not the raw base-unit integer.

Example: 10.5
encryptedSigningMethodstringrequired

Venly-encrypted signing blob that authorizes the investor's wallet to sign the transaction. Treated as a secret credential — never logged or stored.

Example: eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0..
SponsoredTransfer
{
"from": "0xAc563420722cbcfc84857129bef775e0dc5f1401",
"to": "0x2b563420722cbcfc84857129bef775e0dc5f1401",
"amount": "10.5",
"encryptedSigningMethod": "eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2R0NNIn0.."
}