Skip to content

Commit

Permalink
deploy to mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
austinkline committed Aug 15, 2022
1 parent ba9ffa2 commit f9bff2f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ integrate with that they can own allowing users to claim their items in the Lost

|Network|Address|
|-------|-------|
|testnet|0x16494f311b09283d|
|testnet|0xbe4635353f55bbd4|
|mainnnet|0x473d6a2c37eab5be|

## Structure
This contract is organized into a few key components:
Expand Down
24 changes: 21 additions & 3 deletions flow.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,16 @@
"source": "./cadence/contracts/FlowToken.cdc",
"aliases": {
"emulator": "0x0ae53cb6e3f42a79",
"testnet": "7e60df042a9c0868"
"testnet": "0x7e60df042a9c0868",
"mainnet": "0x1654653399040a61"
}
},
"FlowStorageFees": {
"source": "./cadence/contracts/FlowStorageFees.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7",
"testnet": "0x8c5303eaa26202d6"
"testnet": "0x8c5303eaa26202d6",
"mainnet": "0xe467b9dd11fa00df"
}
}
},
Expand All @@ -68,14 +70,24 @@
"key": "f2e846bd4c1fbf17839ae59e111c6b1c98579eda7a841412f102d6621ec671cb"
},
"lost-and-found-testnet": {
"address": "0x16494f311b09283d",
"address": "0xbe4635353f55bbd4",
"key": {
"type": "google-kms",
"index": 0,
"signatureAlgorithm": "ECDSA_P256",
"hashAlgorithm": "SHA2_256",
"resourceID": "projects/lost-and-found-355423/locations/us-west1/keyRings/contract/cryptoKeys/testnet/cryptoKeyVersions/1"
}
},
"lost-and-found-mainnet": {
"address": "0x473d6a2c37eab5be",
"key": {
"type": "google-kms",
"index": 0,
"signatureAlgorithm": "ECDSA_P256",
"hashAlgorithm": "SHA2_256",
"resourceID": "projects/lost-and-found-355423/locations/us-west1/keyRings/contract/cryptoKeys/mainnet/cryptoKeyVersions/1"
}
}
},
"deployments": {
Expand All @@ -96,6 +108,12 @@
"LostAndFound",
"FeeEstimator"
]
},
"mainnet": {
"lost-and-found-mainnet": [
"LostAndFound",
"FeeEstimator"
]
}
},
"emulatorAccounts": {
Expand Down

0 comments on commit f9bff2f

Please sign in to comment.