@sudobility/auctions_contracts 0.1.14 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -73,13 +73,13 @@ The `OnchainAuctionClient` uses dynamic `import()` to lazy-load platform-specifi
|
|
|
73
73
|
|
|
74
74
|
## Key Constants
|
|
75
75
|
|
|
76
|
-
| Constant
|
|
77
|
-
|
|
78
|
-
| Fee Rate
|
|
79
|
-
| Max Fee Rate
|
|
80
|
-
| Acceptance Period
|
|
81
|
-
| Penny Timer
|
|
82
|
-
| Max Items Per Auction | 255
|
|
76
|
+
| Constant | Value |
|
|
77
|
+
| --------------------- | ----------------------- |
|
|
78
|
+
| Fee Rate | 0.5% (50 basis points) |
|
|
79
|
+
| Max Fee Rate | 10% (1000 basis points) |
|
|
80
|
+
| Acceptance Period | 24 hours |
|
|
81
|
+
| Penny Timer | 5 minutes |
|
|
82
|
+
| Max Items Per Auction | 255 |
|
|
83
83
|
|
|
84
84
|
## License
|
|
85
85
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sudobility/auctions_contracts",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/unified/src/unified/index.js",
|
|
6
6
|
"types": "dist/unified/src/unified/index.d.ts",
|
|
@@ -196,5 +196,9 @@
|
|
|
196
196
|
"resolutions": {
|
|
197
197
|
"bigint-buffer": "^1.1.5",
|
|
198
198
|
"@solana/buffer-layout-utils/bigint-buffer": "^1.1.5"
|
|
199
|
+
},
|
|
200
|
+
"repository": {
|
|
201
|
+
"type": "git",
|
|
202
|
+
"url": "https://github.com/johnqh/auctions_contracts.git"
|
|
199
203
|
}
|
|
200
204
|
}
|