Skip to content

Commit

Permalink
added metadata, image and edited tagline (#6724)
Browse files Browse the repository at this point in the history
  • Loading branch information
SantiagoDevRel authored Jan 15, 2024
1 parent a3fe342 commit 882631c
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const packages = [
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'web3.js',
tagline: 'The ultimate JavaScript library for Ethereum',
tagline: 'Powerful TypeScript libraries for Ethereum interaction and utility functions',
url: 'https://docs.web3js.org',
baseUrl: '/',
onBrokenLinks: 'throw',
Expand Down Expand Up @@ -179,6 +179,20 @@ const config = {
*/
playgroundPosition: 'bottom',
},
image:"https://pbs.twimg.com/profile_images/1746099108937363456/duG_Pqem_400x400.jpg",
metadata: [
{ name: 'keywords', content: 'web3.js, web3, web3js, ethereum, ethereum json rpc, blockchain development, smart contracts, dapps, dApp development' },
{ name: 'description', content: 'Collection of comprehensive TypeScript libraries for Interaction with the Ethereum JSON RPC API and utility functions.' },
{ name: 'og:title', content: 'Web3.js Documentation' },
{ name: 'og:description', content: 'Collection of comprehensive TypeScript libraries for Interaction with the Ethereum JSON RPC API and utility functions.' },
{ name: 'og:type', content: 'website' },
{ name: 'og:url', content: 'https://docs.web3js.org' },
{ name: 'og:image', content: 'https://pbs.twimg.com/profile_images/1746099108937363456/duG_Pqem_400x400.jpg' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:title', content: 'Web3.js Documentation' },
{ name: 'twitter:description', content: 'Official documentation for web3.js, the Type/JavaScript library for interacting with the Ethereum blockchain.' },
{ name: 'twitter:image', content: 'https://pbs.twimg.com/profile_images/1746099108937363456/duG_Pqem_400x400.jpg' },
],
}),
};

Expand Down

1 comment on commit 882631c

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 882631c Previous: 6c075db Ratio
processingTx 9570 ops/sec (±4.36%) 9301 ops/sec (±4.81%) 0.97
processingContractDeploy 37567 ops/sec (±7.78%) 39129 ops/sec (±7.62%) 1.04
processingContractMethodSend 19821 ops/sec (±4.73%) 19443 ops/sec (±5.19%) 0.98
processingContractMethodCall 39199 ops/sec (±4.81%) 38971 ops/sec (±6.34%) 0.99
abiEncode 43906 ops/sec (±9.32%) 44252 ops/sec (±6.92%) 1.01
abiDecode 31630 ops/sec (±6.84%) 30419 ops/sec (±8.89%) 0.96
sign 1666 ops/sec (±4.32%) 1656 ops/sec (±4.08%) 0.99
verify 384 ops/sec (±0.31%) 373 ops/sec (±0.78%) 0.97

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.