@flowtyio/flow-contracts 0.0.16 → 0.0.18
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 +5 -0
- package/contracts/emerald-city/FLOAT.cdc +1161 -0
- package/contracts/find/FindViews.cdc +392 -0
- package/contracts/flow-utils/ScopedFTProviders.cdc +120 -0
- package/contracts/flow-utils/ScopedNFTProviders.cdc +162 -0
- package/flow.json +37 -1
- package/package.json +1 -1
package/flow.json
CHANGED
|
@@ -291,6 +291,38 @@
|
|
|
291
291
|
"testnet": "0x31ad40c07a2a9788",
|
|
292
292
|
"mainnet": "0xa340dc0a4ec828ab"
|
|
293
293
|
}
|
|
294
|
+
},
|
|
295
|
+
"ScopedFTProviders": {
|
|
296
|
+
"source": "./contracts/flow-utils/ScopedFTProviders.cdc",
|
|
297
|
+
"aliases": {
|
|
298
|
+
"emulator": "0xf8d6e0586b0a20c7",
|
|
299
|
+
"testnet": "0x31ad40c07a2a9788",
|
|
300
|
+
"mainnet": "0xa340dc0a4ec828ab"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"ScopedNFTProviders": {
|
|
304
|
+
"source": "./contracts/flow-utils/ScopedNFTProviders.cdc",
|
|
305
|
+
"aliases": {
|
|
306
|
+
"emulator": "0xf8d6e0586b0a20c7",
|
|
307
|
+
"testnet": "0x31ad40c07a2a9788",
|
|
308
|
+
"mainnet": "0xa340dc0a4ec828ab"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"FindViews": {
|
|
312
|
+
"source": "./contracts/find/FindViews.cdc",
|
|
313
|
+
"aliases": {
|
|
314
|
+
"emulator": "0xf8d6e0586b0a20c7",
|
|
315
|
+
"mainnet": "0x097bafa4e0b48eef",
|
|
316
|
+
"testnet": "0x35717efbbce11c74"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"FLOAT": {
|
|
320
|
+
"source": "./contracts/emerald-city/FLOAT.cdc",
|
|
321
|
+
"aliases": {
|
|
322
|
+
"emulator": "0xf8d6e0586b0a20c7",
|
|
323
|
+
"mainnet": "0x2d4c3caffbeab845",
|
|
324
|
+
"testnet": "0x4d47bf3ce5e4393f"
|
|
325
|
+
}
|
|
294
326
|
}
|
|
295
327
|
},
|
|
296
328
|
"deployments": {
|
|
@@ -315,7 +347,11 @@
|
|
|
315
347
|
"TopShotLocking",
|
|
316
348
|
"ArrayUtils",
|
|
317
349
|
"StringUtils",
|
|
318
|
-
"AddressUtils"
|
|
350
|
+
"AddressUtils",
|
|
351
|
+
"ScopedNFTProviders",
|
|
352
|
+
"ScopedFTProviders",
|
|
353
|
+
"FindViews",
|
|
354
|
+
"FLOAT"
|
|
319
355
|
],
|
|
320
356
|
"emulator-ft": [
|
|
321
357
|
"FungibleToken",
|