@flowtyio/flow-contracts 0.1.0-beta.2 → 0.1.0-beta.4

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/flow.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "networks": {
3
3
  "emulator": "127.0.0.1:3569",
4
+ "testing": "127.0.0.1:3569",
4
5
  "mainnet": "access.mainnet.nodes.onflow.org:9000",
5
6
  "sandboxnet": "access.sandboxnet.nodes.onflow.org:9000",
6
7
  "testnet": "access.devnet.nodes.onflow.org:9000"
@@ -28,6 +29,14 @@
28
29
  "mainnet": "0x1d7e57aa55817448"
29
30
  }
30
31
  },
32
+ "Burner": {
33
+ "source": "./contracts/Burner.cdc",
34
+ "aliases": {
35
+ "emulator": "0xf8d6e0586b0a20c7",
36
+ "testnet": "0x631e88ae7f1d7c20",
37
+ "mainnet": "0x1d7e57aa55817448"
38
+ }
39
+ },
31
40
  "MetadataViews": {
32
41
  "source": "./contracts/MetadataViews.cdc",
33
42
  "aliases": {
@@ -323,11 +332,26 @@
323
332
  "mainnet": "0x2d4c3caffbeab845",
324
333
  "testnet": "0x4d47bf3ce5e4393f"
325
334
  }
335
+ },
336
+ "ExampleNFT": {
337
+ "source": "./contracts/example/ExampleNFT.cdc",
338
+ "aliases": {
339
+ "emulator": "0xf8d6e0586b0a20c7",
340
+ "testing": "0x0000000000000007"
341
+ }
342
+ },
343
+ "ExampleToken": {
344
+ "source": "./contracts/example/ExampleToken.cdc",
345
+ "aliases": {
346
+ "emulator": "0xf8d6e0586b0a20c7",
347
+ "testing": "0x0000000000000007"
348
+ }
326
349
  }
327
350
  },
328
351
  "deployments": {
329
352
  "emulator": {
330
353
  "emulator-account": [
354
+ "Burner",
331
355
  "NonFungibleToken",
332
356
  "MetadataViews",
333
357
  "ViewResolver",
@@ -351,7 +375,9 @@
351
375
  "ScopedNFTProviders",
352
376
  "ScopedFTProviders",
353
377
  "FindViews",
354
- "FLOAT"
378
+ "FLOAT",
379
+ "ExampleNFT",
380
+ "ExampleToken"
355
381
  ],
356
382
  "emulator-ft": [
357
383
  "FungibleToken",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowtyio/flow-contracts",
3
- "version": "0.1.0-beta.2",
3
+ "version": "0.1.0-beta.4",
4
4
  "main": "index.json",
5
5
  "description": "An NPM package for common flow contracts",
6
6
  "author": "flowtyio",