Skip to content

Updates to bridge docs for Custom Associations #1185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/build/guides/fungible-token.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ keywords:
- Flow development
- token contract
- blockchain tokens
- bridge
---

:::info
Expand Down Expand Up @@ -1130,3 +1131,4 @@ The transfer transaction also has a [generic version](https://github.com/onflow/
- [View a repo of this example code](https://github.com/chasefleming/FooToken)
- [Review an `ExampleToken` contract implementing all of the remaining FungibleToken interface](https://github.com/onflow/flow-ft/blob/master/contracts/ExampleToken.cdc)
- [View the Flow Token Standard](https://github.com/onflow/flow-ft/blob/master/contracts/FungibleToken.cdc)
- Learn about how you can [bridge your FTs to Flow-EVM](../../tutorials/cross-vm-apps/vm-bridge.md#cross-vm-bridge) and how you can build your FT project [to be compatible with the Flow VM bridge](../../tutorials/cross-vm-apps/vm-bridge.md#prep-your-assets-for-bridging).
11 changes: 11 additions & 0 deletions docs/build/guides/nft.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ keywords:
- Flow development
- NFT contract
- blockchain NFTs
- bridge
---

:::info
Expand Down Expand Up @@ -618,6 +619,15 @@ about your projects on their apps and websites and are critical
for every project to include if we want to have a vibrant and interoperable
ecosystem.

## Flow VM Bridge NFTs

Flow provides an EVM environment where projects can deploy
their solidity smart contracts as an easier on-ramp to building on Flow.
The [Cross-VM Bridge](https://www.github.com/onflow/flow-evm-bridge) enables the movement of
fungible and non-fungible tokens between Flow-Cadence & Flow-EVM.

Learn about how you can [bridge your NFTs to Flow-EVM](../../tutorials/cross-vm-apps/vm-bridge.md#cross-vm-bridge) and how you can build your NFT project [to be compatible with the Flow VM bridge](../../tutorials/cross-vm-apps/vm-bridge.md#prep-your-assets-for-bridging).

## Deploying the Contract

With your contract ready, it's time to deploy it.
Expand Down Expand Up @@ -926,4 +936,5 @@ Congrats, you did it! You're now ready to launch the next fun NFT project on Flo
- Check out the [`Burner` contract](../core-contracts/14-burner.md), which is the standard
that all projects should use for handling the destruction of any resource.
- For a deeper dive into `MetadataViews`, consult the [introduction guide](../advanced-concepts/metadata-views.md) or [the FLIP that introduced this feature](https://github.com/onflow/flips/blob/main/application/20210916-nft-metadata.md).
- Learn about how you can [bridge your NFTs to Flow-EVM](../../tutorials/cross-vm-apps/vm-bridge.md#cross-vm-bridge) and how you can build your NFT project [to be compatible with the Flow VM bridge](../../tutorials/cross-vm-apps/vm-bridge.md#prep-your-assets-for-bridging).
- Use a [no code tool for creating NFT projects on Flow](https://www.touchstone.city/)
Loading