Navid TehraniFar
Navid TehraniFar
With the release of [storage iteration](https://developers.flow.com/cadence/language/accounts#storage-iteration), it should be possible to enumerate all NFTs an account owns and return the metadata without explicitly importing the specific NFT contract. Currently, this...
## Overview Following the declarative design principles of Flow CLI we want to build a simple dependency manager that enables developers to: - Import a known contract from supported locations...
## Goal `flow contracts install` should check and fetch contracts defined in `flow.json` from the NFT catalog into the `imports` folder. - The simple syntax is `nft-catalog/NETWORK/COLLECTION_IDENTIFIER` e.g. `nft-catalog/mainnet/CoolNFT` -...
## Goal `flow contracts install` should check and fetch contracts defined in `flow.json` from GitHub into the `imports` folder. - The simple syntax is `github.com/ORGANIZATION/REPOSITORY/PATH` e.g. `github.com/onflow/flow-nft/NonFungibleToken.cdc` - The contract...
Currently, contract initialization parameters are not supported in `flow.json`. If you try to use `flow dev` with a contract that has init params, you'll get this error: ``` Deploying a...
We need to explore how we can enable everyone to be able to add a new item to the NFT catalog without requiring a review. We also need to examine...
Most catalog scripts rely on temporary linking to return data (like [this](https://github.com/dapperlabs/nft-catalog/blob/main/cadence/scripts/get_nft_ids_in_account.cdc)): ``` let tempPathStr = "catalog".concat(key) let tempPublicPath = PublicPath(identifier: tempPathStr)! account.link( tempPublicPath, target: value.collectionData.storagePath ) ``` This leads...
### Issue to be solved Ref https://github.com/onflow/flow-nft/pull/126#discussion_r1542158931 In the above discussion we observed there will be some side effects with accessing stored values after migration. For example, an NFT collection...
[ChainCustomizer](https://github.com/onflow/flow-go-sdk/blob/master/address.go#L105) should be updated to support address generation for PreviewNet ([ref](https://github.com/onflow/flow-go/blob/b7a7d157a99bfc2e942627da2f4e723df37787d0/model/flow/chain.go#L67))
FLIP #281