Split.distributeToken() method
Distribute Funds
Example
// The address of the currency to distribute funds
const tokenAddress = "0x...";
await contract.distributeToken(tokenAddress);
Signature:
distributeToken(tokenAddress: string): Promise<TransactionResult>;
Parameters
Parameter | Type | Description |
---|---|---|
tokenAddress | string | The address of the currency contract to distribute funds |
Returns:
Promise<TransactionResult>
Remarks
Distribute funds held by the contract in the native currency to all recipients.