Skip to content

Commit 0d797bb

Browse files
authored
Merge pull request #8715 from danierod/add-exchange-moonpay
Resolves #8583 Add exchange: Moonpay
2 parents c1721a7 + f9d03df commit 0d797bb

File tree

4 files changed

+34
-23
lines changed

4 files changed

+34
-23
lines changed

src/assets/exchanges/moonpay.png

568 Bytes
Loading

src/components/EthExchanges.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ type ExchangeName =
161161
| "kraken"
162162
| "kucoin"
163163
| "mtpelerin"
164+
| "moonpay"
164165
| "okx"
165166
| "rain"
166167
| "shakepay"
@@ -336,6 +337,9 @@ const EthExchanges = () => {
336337
kucoin: file(relativePath: { eq: "exchanges/kucoin.png" }) {
337338
...cardListImage
338339
}
340+
moonpay: file(relativePath: { eq: "exchanges/moonpay.png" }) {
341+
...cardListImage
342+
}
339343
mtpelerin: file(relativePath: { eq: "exchanges/mtpelerin.png" }) {
340344
...cardListImage
341345
}
@@ -487,6 +491,12 @@ const EthExchanges = () => {
487491
image: data.kucoin,
488492
usaExceptions: [],
489493
},
494+
moonpay: {
495+
name: "MoonPay",
496+
url: "https://www.moonpay.com/",
497+
image: data.moonpay,
498+
usaExceptions: ["VI"],
499+
},
490500
mtpelerin: {
491501
name: "Mt Pelerin",
492502
url: "https://www.mtpelerin.com/",

src/content/developers/docs/smart-contracts/verifying/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,16 @@ Additionally, one can also retrieve the source code files over IPFS, as IPFS has
9191
[More on verifying contracts on Sourcify](https://blog.soliditylang.org/2020/06/25/sourcify-faq/).
9292

9393
### Tenderly {#tenderly}
94-
The [Tenderly platform](https://tenderly.co/) enables Web3 developers to build, test, monitor, and operate smart contracts. Combining debugging tools with observability and infrastructure building blocks, Tenderly helps developers accelerate smart contract development. To fully enable Tenderly features, developers need to [perform source code verification](https://docs.tenderly.co/monitoring/contract-verification) using several methods.
94+
95+
The [Tenderly platform](https://tenderly.co/) enables Web3 developers to build, test, monitor, and operate smart contracts. Combining debugging tools with observability and infrastructure building blocks, Tenderly helps developers accelerate smart contract development. To fully enable Tenderly features, developers need to [perform source code verification](https://docs.tenderly.co/monitoring/contract-verification) using several methods.
9596

9697
It's possible to verify a contract privately or publicly. If verified privately, the smart contract is visible only to you (and other members in your project). Verifying a contract publicly makes it visible to everyone using the Tenderly platform.
9798

9899
You can verify your contracts using the [Dashboard](https://docs.tenderly.co/monitoring/smart-contract-verification/verifying-a-smart-contract), [Tenderly Hardhat plugin](https://docs.tenderly.co/monitoring/smart-contract-verification/verifying-contracts-using-the-tenderly-hardhat-plugin), or [CLI](https://docs.tenderly.co/monitoring/smart-contract-verification/verifying-contracts-using-cli).
99100

100101
When verifying contracts through the Dashboard, you need to import the source file or the metadata file generated by the Solidity compiler, the address/network, and compiler settings.
101102

102-
Using the Tenderly Hardhat plugin allows for more control over the verification process with less effort, enabling you to choose between automatic (no-code) and manual (code-based) verification.
103+
Using the Tenderly Hardhat plugin allows for more control over the verification process with less effort, enabling you to choose between automatic (no-code) and manual (code-based) verification.
103104

104105
## Further reading {#further-reading}
105106

0 commit comments

Comments
 (0)