@flowtyio/flow-contracts 0.1.0-beta.24 → 0.1.0-beta.26
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 +1 -1
- package/contracts/capability-cache/CapabilityCache.cdc +97 -0
- package/contracts/flowty-drops/ContractManager.cdc +47 -0
- package/contracts/flowty-drops/DropFactory.cdc +75 -0
- package/contracts/flowty-drops/DropTypes.cdc +278 -0
- package/contracts/flowty-drops/FlowtyAddressVerifiers.cdc +64 -0
- package/contracts/flowty-drops/FlowtyDrops.cdc +431 -0
- package/contracts/flowty-drops/FlowtyPricers.cdc +48 -0
- package/contracts/flowty-drops/FlowtySwitchers.cdc +113 -0
- package/contracts/flowty-drops/initializers/ContractBorrower.cdc +14 -0
- package/contracts/flowty-drops/initializers/ContractInitializer.cdc +7 -0
- package/contracts/flowty-drops/initializers/OpenEditionInitializer.cdc +58 -0
- package/contracts/flowty-drops/nft/BaseCollection.cdc +97 -0
- package/contracts/flowty-drops/nft/BaseNFT.cdc +107 -0
- package/contracts/flowty-drops/nft/ContractFactory.cdc +13 -0
- package/contracts/flowty-drops/nft/ContractFactoryTemplate.cdc +48 -0
- package/contracts/flowty-drops/nft/NFTMetadata.cdc +119 -0
- package/contracts/flowty-drops/nft/OpenEditionNFT.cdc +41 -0
- package/contracts/flowty-drops/nft/OpenEditionTemplate.cdc +52 -0
- package/contracts/flowty-drops/nft/UniversalCollection.cdc +23 -0
- package/flow.json +148 -4
- package/package.json +1 -1
package/flow.json
CHANGED
|
@@ -141,8 +141,8 @@
|
|
|
141
141
|
"mainnet": "0xd8a7e05a7ac670c0"
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
|
-
"
|
|
145
|
-
"source": "./contracts/hybrid-custody/factories/
|
|
144
|
+
"NFTProviderAndCollectionFactory": {
|
|
145
|
+
"source": "./contracts/hybrid-custody/factories/NFTProviderAndCollectionFactory.cdc",
|
|
146
146
|
"aliases": {
|
|
147
147
|
"emulator": "0xf8d6e0586b0a20c7",
|
|
148
148
|
"testnet": "0x294e44e1ec6993c6",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"aliases": {
|
|
187
187
|
"emulator": "0xf8d6e0586b0a20c7",
|
|
188
188
|
"testnet": "0x8c5303eaa26202d6",
|
|
189
|
-
"mainnet": "
|
|
189
|
+
"mainnet": "0xe467b9dd11fa00df"
|
|
190
190
|
}
|
|
191
191
|
},
|
|
192
192
|
"TokenForwarding": {
|
|
@@ -346,6 +346,150 @@
|
|
|
346
346
|
"emulator": "0xf8d6e0586b0a20c7",
|
|
347
347
|
"testing": "0x0000000000000007"
|
|
348
348
|
}
|
|
349
|
+
},
|
|
350
|
+
"ContractManager": {
|
|
351
|
+
"source": "./contracts/flowty-drops/ContractManager.cdc",
|
|
352
|
+
"aliases": {
|
|
353
|
+
"testing": "0x0000000000000006",
|
|
354
|
+
"testnet": "0xd20430774404a7e8",
|
|
355
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"ContractInitializer": {
|
|
359
|
+
"source": "./contracts/flowty-drops/initializers/ContractInitializer.cdc",
|
|
360
|
+
"aliases": {
|
|
361
|
+
"testing": "0x0000000000000006",
|
|
362
|
+
"testnet": "0xd20430774404a7e8",
|
|
363
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
"ContractBorrower": {
|
|
367
|
+
"source": "./contracts/flowty-drops/initializers/ContractBorrower.cdc",
|
|
368
|
+
"aliases": {
|
|
369
|
+
"testing": "0x0000000000000006",
|
|
370
|
+
"testnet": "0xd20430774404a7e8",
|
|
371
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
"OpenEditionInitializer": {
|
|
375
|
+
"source": "./contracts/flowty-drops/initializers/OpenEditionInitializer.cdc",
|
|
376
|
+
"aliases": {
|
|
377
|
+
"testing": "0x0000000000000006",
|
|
378
|
+
"testnet": "0xd20430774404a7e8",
|
|
379
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"BaseCollection": {
|
|
383
|
+
"source": "./contracts/flowty-drops/nft/BaseCollection.cdc",
|
|
384
|
+
"aliases": {
|
|
385
|
+
"testing": "0x0000000000000006",
|
|
386
|
+
"testnet": "0xd20430774404a7e8",
|
|
387
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"ContractFactoryTemplate": {
|
|
391
|
+
"source": "./contracts/flowty-drops/nft/ContractFactoryTemplate.cdc",
|
|
392
|
+
"aliases": {
|
|
393
|
+
"testing": "0x0000000000000006",
|
|
394
|
+
"testnet": "0xd20430774404a7e8",
|
|
395
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"ContractFactory": {
|
|
399
|
+
"source": "./contracts/flowty-drops/nft/ContractFactory.cdc",
|
|
400
|
+
"aliases": {
|
|
401
|
+
"testing": "0x0000000000000006",
|
|
402
|
+
"testnet": "0xd20430774404a7e8",
|
|
403
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"OpenEditionTemplate": {
|
|
407
|
+
"source": "./contracts/flowty-drops/nft/OpenEditionTemplate.cdc",
|
|
408
|
+
"aliases": {
|
|
409
|
+
"testing": "0x0000000000000006",
|
|
410
|
+
"testnet": "0xd20430774404a7e8",
|
|
411
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
"UniversalCollection": {
|
|
415
|
+
"source": "./contracts/flowty-drops/nft/UniversalCollection.cdc",
|
|
416
|
+
"aliases": {
|
|
417
|
+
"testing": "0x0000000000000006",
|
|
418
|
+
"testnet": "0xd20430774404a7e8",
|
|
419
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"BaseNFT": {
|
|
423
|
+
"source": "./contracts/flowty-drops/nft/BaseNFT.cdc",
|
|
424
|
+
"aliases": {
|
|
425
|
+
"testing": "0x0000000000000006",
|
|
426
|
+
"testnet": "0xd20430774404a7e8",
|
|
427
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"NFTMetadata": {
|
|
431
|
+
"source": "./contracts/flowty-drops/nft/NFTMetadata.cdc",
|
|
432
|
+
"aliases": {
|
|
433
|
+
"testing": "0x0000000000000006",
|
|
434
|
+
"testnet": "0xd20430774404a7e8",
|
|
435
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
"FlowtyDrops": {
|
|
439
|
+
"source": "./contracts/flowty-drops/FlowtyDrops.cdc",
|
|
440
|
+
"aliases": {
|
|
441
|
+
"testing": "0x0000000000000006",
|
|
442
|
+
"testnet": "0xd20430774404a7e8",
|
|
443
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"DropFactory": {
|
|
447
|
+
"source": "./contracts/flowty-drops/DropFactory.cdc",
|
|
448
|
+
"aliases": {
|
|
449
|
+
"testing": "0x0000000000000006",
|
|
450
|
+
"testnet": "0xd20430774404a7e8",
|
|
451
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
"FlowtySwitchers": {
|
|
455
|
+
"source": "./contracts/flowty-drops/FlowtySwitchers.cdc",
|
|
456
|
+
"aliases": {
|
|
457
|
+
"testing": "0x0000000000000006",
|
|
458
|
+
"testnet": "0xd20430774404a7e8",
|
|
459
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"FlowtyPricers": {
|
|
463
|
+
"source": "./contracts/flowty-drops/FlowtyPricers.cdc",
|
|
464
|
+
"aliases": {
|
|
465
|
+
"testing": "0x0000000000000006",
|
|
466
|
+
"testnet": "0xd20430774404a7e8",
|
|
467
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
"FlowtyAddressVerifiers": {
|
|
471
|
+
"source": "./contracts/flowty-drops/FlowtyAddressVerifiers.cdc",
|
|
472
|
+
"aliases": {
|
|
473
|
+
"testing": "0x0000000000000006",
|
|
474
|
+
"testnet": "0xd20430774404a7e8",
|
|
475
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
"DropTypes": {
|
|
479
|
+
"source": "./contracts/flowty-drops/DropTypes.cdc",
|
|
480
|
+
"aliases": {
|
|
481
|
+
"testing": "0x0000000000000006",
|
|
482
|
+
"testnet": "0x3d49bb33997bd91e",
|
|
483
|
+
"emulator": "0xf8d6e0586b0a20c7"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"CapabilityCache": {
|
|
487
|
+
"source": "./contracts/capability-cache/CapabilityCache.cdc",
|
|
488
|
+
"aliases": {
|
|
489
|
+
"testing": "0x0000000000000007",
|
|
490
|
+
"emulator": "0xf8d6e0586b0a20c7",
|
|
491
|
+
"testnet": "0x83d75469f66d2ee6"
|
|
492
|
+
}
|
|
349
493
|
}
|
|
350
494
|
},
|
|
351
495
|
"deployments": {
|
|
@@ -387,7 +531,7 @@
|
|
|
387
531
|
"FTProviderFactory",
|
|
388
532
|
"FTReceiverFactory",
|
|
389
533
|
"NFTCollectionPublicFactory",
|
|
390
|
-
"
|
|
534
|
+
"NFTProviderAndCollectionFactory",
|
|
391
535
|
"NFTProviderFactory"
|
|
392
536
|
],
|
|
393
537
|
"emulator-ft": [
|