Skip to content

Commit

Permalink
chore: added utm source to base node url (coinbase#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAlec authored Feb 29, 2024
1 parent c5f7b15 commit a345590
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const getRandomNumber = () => {
randomNumber = 0;
} else {
// 75% chance of getting a number between 1 and 3
randomNumber = Math.floor(randomValue * 3) + 1;
randomNumber = Math.ceil(randomValue * 3);
}
return randomNumber;
};
Expand Down
4 changes: 3 additions & 1 deletion template/web/app/paymaster-bundler/_components/Guide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ export default function Guide() {
<Ul>
<Li>
Navigate to the{' '}
<A href="https://coinbase.com/cloud/products/base/rpc">Base Node homepage</A>
<A href="https://coinbase.com/cloud/products/base/rpc?utm_source=boat">
Base Node homepage
</A>
</Li>
<Li>Sign up for a Coinbase Cloud account, if you don&apos;t have one already</Li>
<Li>
Expand Down
2 changes: 1 addition & 1 deletion template/web/app/paymaster-bundler/_components/Vault.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Vault({ ownedTokens }: VaultProps) {
<div className="w-full rounded-bl-xl bg-boat-color-gray-900 px-8 py-10">
<h2 className={clsx('mb-5 text-2xl', roboto.className)}>VAULT</h2>

<h3 className={clsx('mb-1 text-lg', roboto.className)}>Weapons</h3>
<h3 className={clsx('mb-1 text-lg', roboto.className)}>Items</h3>
<div className="border border-x-0 border-t-0 border-boat-gold" />

<div className="my-4 flex gap-4">
Expand Down

0 comments on commit a345590

Please sign in to comment.