From 7407641c7c647fe2ec494fba8e49fb8a4aeedd39 Mon Sep 17 00:00:00 2001 From: Lucian Date: Tue, 5 Dec 2023 08:10:20 -0800 Subject: [PATCH] feat(platforms): updated Coinbase stamp info with reference to onchain attestations (#1972) --- platforms/src/Coinbase/App-Bindings.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/platforms/src/Coinbase/App-Bindings.tsx b/platforms/src/Coinbase/App-Bindings.tsx index cf335040e9..a16ca0c4fc 100644 --- a/platforms/src/Coinbase/App-Bindings.tsx +++ b/platforms/src/Coinbase/App-Bindings.tsx @@ -14,6 +14,17 @@ export class CoinbasePlatform extends Platform { clientId: string = null; redirectUri: string = null; + banner = { + content: `Integrate your Coinbase account with your onchain identity to unlock a realm of + digital possibilities. This stamp requires you to have an active Coinbase account + and to establish your onchain identity on Base, bridging the gap between + traditional and decentralized finance.`.replace(/\s+/gm, " "), + cta: { + label: "Begin Your Onchain Verification Journey with Coinbase", + url: "https://www.coinbase.com/onchain-verify", + }, + }; + constructor(options: PlatformOptions = {}) { super(); this.clientId = options.clientId as string;