@polymarket/liquidity-requests-sdk
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "@polymarket/liquidity-requests-sdk", | ||
"description": "Polymarket Liquidity Request Log SDK", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"author": "Dylan Golow <dylangolow@gmail.com>", | ||
@@ -6,0 +6,0 @@ "homepage": "https://github.com/Polymarket/polymarket-liquidity-requests/tree/main/packages/sdk", |
@@ -41,2 +41,19 @@ # Liquidity Requests SDK ![npm](https://img.shields.io/npm/v/@polymarket/liquidity-requests-sdk) | ||
The event to subscribe to with the relevant struct are listed below, see the complete contract here: [`LiquidityRequestLog.sol`](../contracts/contracts/LiquidityRequestLog.sol) | ||
```solidity | ||
interface LiquidityRequestLog { | ||
struct LiquidityRequest { | ||
address requesterAddress; | ||
uint256 requestDate; | ||
string reason; | ||
address marketMakerAddress; | ||
uint256 tradeAmount; | ||
} | ||
event LiquidityRequestAdded(address indexed requesterAddress, LiquidityRequest liquidityRequest); | ||
} | ||
``` | ||
### Reasons | ||
@@ -43,0 +60,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61389
77