🟩
flowmap land experiment
  • πŸ—ΊοΈflowmap
  • πŸ“–how to inscribe a flowmap
  • πŸ’Žrare blocks
  • 🌎metaverse
  • πŸ”’inscription numbers
  • πŸ–ΌοΈblock info and visualization
  • πŸͺ‚airdrop
Powered by GitBook
On this page
  • Easy mode
  • Hardcore mode

how to inscribe a flowmap

Each flowmap inscription needs 0.025 flow to be inscribed which ensures its value.

PreviousflowmapNextrare blocks

Last updated 1 year ago

Easy mode

  1. Visit

  2. Click on the "inscribe flowmap" button.

  3. Choose the number of flowmaps to inscribe & submit.

  4. If you don't have a wallet you can choose Flow Reference Wallet as it provides the easiest way to buy flow tokens.

Hardcore mode

  1. Choose mainnet.

  2. Insert the transaction and input the quantity you want to inscribe. (Adjust quantity if the transaction does not go through)

  3. Run the transaction.

import FlowToken from 0x1654653399040a61
import NonFungibleToken from 0x1d7e57aa55817448
import Flowmap from 0x483f0fe77f0d59fb

transaction(qty: UFix64) {
  prepare(signer: AuthAccount) {
      if(signer.borrow<&Flowmap.Collection>(from: Flowmap.CollectionStoragePath) == nil) {
          signer.save<@NonFungibleToken.Collection>(<- Flowmap.createEmptyCollection(), to: Flowmap.CollectionStoragePath)
          signer.unlink(Flowmap.CollectionPublicPath)
          signer.link<&{Flowmap.CollectionPublic}>(Flowmap.CollectionPublicPath, target: Flowmap.CollectionStoragePath)
      }

      let vaultRef = signer.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault)?? panic("Could not borrow reference to the owner's Vault!")

      let inscriptionFee <- vaultRef.withdraw(amount: Flowmap.inscriptionFee * qty) as! @FlowToken.Vault

      Flowmap.batchInscribe(inscriptionFee: <-inscriptionFee, quantity: qty, receiver: signer.address)

  }
}

Go to or open your terminal with flow-cli.

πŸ“–
https://run.ecdao.org/
https://www.flowmap.vip/
Click on the "inscribe flowmap" button to claim ownership of a Flow block.
Choose a wallet. Flow reference wallet is recommended on desktop.
Fund your wallet with Flow tokens by clicking buy.
Cadence Transaction to inscribe Flowmap on
https://run.ecdao.org/