Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Solana Relay to Discovery #6782

Merged
merged 18 commits into from
Nov 28, 2023
Merged

Add Solana Relay to Discovery #6782

merged 18 commits into from
Nov 28, 2023

Conversation

rickyrombo
Copy link
Contributor

@rickyrombo rickyrombo commented Nov 27, 2023

Description

Moves the Solana Relay from Identity to Discovery (Both will exist until we migrate)

Added some review comments to help guide the review.

@sliptype / @alecsavvy to review pedalboard/audius-compose infra changes
@dharit-tan (and $ team) to review relay code

How Has This Been Tested?

Ran locally, pointed local libs to new endpoint, and added a small change to userbank indexing to use the cache to verify that works with solders.

timeout: 5s
deploy:
mode: replicated
replicas: '${DISCOVERY_PROVIDER_REPLICAS}'
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Adds a unique redis container for each DN locally

args:
app_name: solana-relay
env_file: .env # used by the startup script
environment:
Copy link
Contributor Author

Choose a reason for hiding this comment

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

would be nice to share these env vars with DN's configuration?

@@ -18,6 +18,8 @@ x-common: &common
- 'audius-protocol-creator-node-2:host-gateway'
- 'audius-protocol-creator-node-3:host-gateway'
- 'audius-protocol-discovery-provider-1:host-gateway'
- 'audius-protocol-discovery-provider-2:host-gateway'
- 'audius-protocol-discovery-provider-3:host-gateway'
Copy link
Contributor Author

Choose a reason for hiding this comment

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

needed this to get DNs to be able to see each other

@@ -5,6 +5,10 @@ if [[ "$audius_db_url" == "" ]]; then
export audius_db_url_read_replica="postgresql+psycopg2://postgres:postgres@db:5432/discovery_provider_${replica}"
fi

if [[ "$audius_redis_url" == "" ]]; then
export audius_redis_url="redis://audius-protocol-discovery-provider-redis-${replica}:6379/00"
Copy link
Contributor Author

Choose a reason for hiding this comment

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

instead of defaulting DN to connect to localhost redis, point to its matching Redis replica

@@ -49,7 +49,7 @@ npm i ./packages/storage

# Building and running apps in isolation

At the root of this project is a [docker compose](./docker-compose.yml) file that houses all of the applications. Building and running your new application alongside the other is as simple as following the `app-template` example.
Inside `/dev-tools/compose` is a [docker compose for pedalboard](../../../../dev-tools/compose/docker-compose.pedalboard.dev.yml) file that houses all of the applications. Building and running your new application alongside the other is as simple as following the `app-template` example.
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@alecsavvy I think this is correct now?

Copy link
Contributor

Choose a reason for hiding this comment

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

ty!

"private": true,
"scripts": {
"start": "ts-node ./src/index.ts",
"start:dev": "ts-node-dev ./src/index.ts",
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Opted for ts-node-dev instead of tsc + node so I could get hot reloads

@@ -8,4 +8,4 @@ ENV APP_NAME=${app_name}

WORKDIR /app/packages/discovery-provider/plugins/pedalboard/apps/${APP_NAME}

CMD npm run start
CMD sh ../../docker/startup.sh
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Need to use a script to get the replica number so we get proper config

export audius_elasticsearch_run_indexer="true"
fi

npm run start:dev
Copy link
Contributor Author

Choose a reason for hiding this comment

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

nb: defaulting to npm run start:dev instead of npm run start

@@ -70,7 +70,7 @@ def bytes32_to_str(bytes32input):

# Regex used to verify valid FQDN
fqdn_regex = re.compile(
r"^(?:^|[ \t])((https?:\/\/)?(?:localhost|(cn[0-9]_creator-node_1:[0-9]+)|(audius-protocol-creator-node-[0-9])|[\w-]+(?:\.[\w-]+)+)(:\d+)?(\/\S*)?)$"
r"^(?:^|[ \t])((https?:\/\/)?(?:localhost|(cn[0-9]_creator-node_1:[0-9]+)|(audius-protocol-creator-node-[0-9])|(audius-protocol-discovery-provider-[0-9])|[\w-]+(?:\.[\w-]+)+)(:\d+)?(\/\S*)?)$"
Copy link
Contributor Author

Choose a reason for hiding this comment

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

needed for the list of network discovery nodes in health check when running locally

@@ -355,14 +355,14 @@ export class SolanaWeb3Manager {
ethAddress?: string
mint?: MintName
} = {}) {
if (!this.web3Manager) {
if (!ethAddress && !this.web3Manager) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

If we have the eth address, web3manager is not actually required

Copy link
Contributor Author

Choose a reason for hiding this comment

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

moved this file from identity, should be identical

Copy link
Contributor Author

@rickyrombo rickyrombo Nov 27, 2023

Choose a reason for hiding this comment

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

moved this file from identity, should be nearly identical - stripped out the social score things and changed config loading

EDIT: OOH, also removed libs dep

Copy link
Contributor Author

Choose a reason for hiding this comment

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

copied from identity, should be nearly identical save for config things and conversions to vitest

@rickyrombo rickyrombo requested a review from alecsavvy November 27, 2023 18:53
@rickyrombo rickyrombo marked this pull request as ready for review November 27, 2023 18:54
Copy link
Contributor

@sliptype sliptype left a comment

Choose a reason for hiding this comment

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

So sick! Pedalboard/monorepo stuff looks good to me

"private": true,
"scripts": {
"start": "ts-node ./src/index.ts",
"start:dev": "ts-node-dev ./src/index.ts",
Copy link
Contributor

Choose a reason for hiding this comment

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

I would like us to standardize on dev as the dev task. It seems to be the standard in most modern repos, including the turborepo examples: https://github.com/vercel/turbo/blob/main/examples/kitchen-sink/package.json

Copy link
Contributor Author

Choose a reason for hiding this comment

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

nice, can do

@audius-infra
Copy link
Collaborator

Preview this change https://demo.audius.co/mjp-solana-relay-dn

) => {
const startTime = new Date().getTime()
response.locals.requestStartTime = startTime
const requestId = uuidv4()
Copy link
Contributor

Choose a reason for hiding this comment

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

nit: client does send a request id under the X-Request-Id header, you could capture that here
something like this

const requestId = request.headers["X-Request-Id"] || uuidv4()

Copy link
Contributor

@alecsavvy alecsavvy left a comment

Choose a reason for hiding this comment

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

looks great!

Copy link
Contributor

@dharit-tan dharit-tan left a comment

Choose a reason for hiding this comment

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

looks good to me, i'm not clear on the control flow of relay yet. also i'm assuming the assertRelayAllowsInstructions.ts file was copied over.

@rickyrombo
Copy link
Contributor Author

@dharit-tan

also i'm assuming the assertRelayAllowsInstructions.ts file was copied over.

It's nearly identical with some minor changes:

  • Took out the social score stuff since DN doesn't know about that and it was unused
  • Replaced libs usage with manually deriving userbanks
  • Config looks different

@rickyrombo rickyrombo enabled auto-merge (squash) November 28, 2023 22:52
@rickyrombo rickyrombo merged commit 00b0d25 into main Nov 28, 2023
22 of 27 checks passed
@rickyrombo rickyrombo deleted the mjp-solana-relay-dn branch November 28, 2023 23:03
Copy link
Contributor

@sddioulde sddioulde left a comment

Choose a reason for hiding this comment

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

big lift. generally makes sense to me

audius-infra pushed a commit that referenced this pull request Dec 2, 2023
[97ee16b] Fix routing for legacy sign-on (#6834) Dylan Jeffers
[c5f150f] [C-3374] Fix play/pause on trending mobile (#6833) Dylan Jeffers
[3612090] [C-3417] Cover photos default to blurred profile photo if unset (#6811) Andrew Mendelsohn
[fb74614] [PROTO-1458] Expose postgres upgrade logs in mediorum (#6830) Theo Ilie
[6deaeab] [C-2591] Fix Follow All button on mobile (#6831) Andrew Mendelsohn
[d952d16] [C-3453] Replace edit collection form with new fields (#6829) Andrew Mendelsohn
[3ed1747] Make mobile buy buttons stick to bottom (#6827) Reed
[4d02605] [PAY-2209] Use single modal for purchase and transfer (#6810) Reed
[f84f24e] [PAY-2227] Set min-width for NavPopupMenu (#6826) Reed
[17ca613] Auto-hide scheduled releases and index as utc (#6824) Isaac Solo
[3d8fbaa] [C-3421] Add email-in-use hint (#6825) Dylan Jeffers
[b88999f] [PAY-2215] Play full purchased tracks from mobile library (#6821) Reed
[46c953e] Bump version to 0.5.29 audius-infra
[1d688a2] Track number of blobs served from mediorum and expose metric endpoint (#6816) Michelle Brier
[958ff2b] Fix merchant id (#6822) Raymond Jacobson
[d168c29] [C-3403] Fix sign-up e2e (#6815) Dylan Jeffers
[534a405] [PAY-2228] Add coinflow merchant id (#6820) Raymond Jacobson
[fe57135] Fix analytics after vite migration (#6819) Raymond Jacobson
[16fc48c] [C-3399] Fix trending links and twitter embed (#6818) Dylan Jeffers
[6517400] [C-3414] Update password reset modals to use harmony components (#6817) Kyle Shanks
[7f37ee2] Fix embed player playlist styles (#6813) Raymond Jacobson
[1e66d4f] Bump version to 0.5.28 audius-infra
[f519ae2] [PAY-2213] Fix closing Add Funds modal (#6814) Raymond Jacobson
[28d7f35] Set up test jail doc & skip current flaky tests (#6774) JD Francis
[0ca4675] Make DN a thin container when running locally, add createSender on DN start (#6335) Marcus Pasell
[8df08b3] trending: use aggregate tables (#6806) Steve Perkins
[16e2d08] [C-3389] Native harmony layout components (#6808) JD Francis
[e863af4] [C-3419] Add common sign-up components (#6809) Dylan Jeffers
[53772e6] [C-3415] Add confirm handle page (#6797) Dylan Jeffers
[3e82b69] Negative error codes for allowing (#6807) Isaac Solo
[1b7c76f] add arm builds for uptime (#6805) alecsavvy
[eadeadb] Update payment router readme (#6804) Saliou Diallo
[fc28641] [PAY-2208] Make payment router test e2e (#6803) Raymond Jacobson
[19eed3f] Bump version to 0.5.27 audius-infra
[d786864] [C-3391] Update native harmony Text component to use harmony theme values (#6798) Kyle Shanks
[40c3e18] [PAY-2211] Remove borders around withdraw/purchase tab empty states (#6796) Reed
[30a6674] Improve harmony font consistency (#6802) Raymond Jacobson
[8c377a4] Protocol dashboard entrypoint (#6776) Michelle Brier
[81ae2a1] [PAY-2219] Address Embed QA (#6801) Raymond Jacobson
[a5e5d56] Fix FixedDecimal.toShorthand() for numbers less than a tenth (#6742) Marcus Pasell
[00b0d25] Add Solana Relay to Discovery (#6782) Marcus Pasell
[f2a8150] Fix redirect protocol (#6800) Raymond Jacobson
[9ddbf19] [PAY-2220] Use slot_diff in user_bank health (#6799) Reed
[12f39f1] fix: Update welcome modal cover photo to use saved cover photos (#6781) JD Francis
[0c70996] [PAY-2216] DN health_check 500's if index user bank unhealthy (#6795) Reed
[7f35a50] Bump version to 0.5.26 audius-infra
[d8cf15c] require push-uptime to deploy (#6794) Michelle Brier
[76de38b] [C-3354, C-3396, C-3397] Sign up QA (#6780) Dylan Jeffers
[051c6c2] [PAY-2212] Don't grow fullWidth buttons (#6791) Reed
[5fe1c83] Fix uptime ts errors (#6793) Michelle Brier
[1124ae5] Fix dashboard prod deploy (#6787) Michelle Brier
[2fefdad] Enable embed ci workflow on main (#6792) Raymond Jacobson
[9b00279] [PROTO-1449] Make mediorum query eth directly for service providers (#6788) Theo Ilie
[5bc0a23] [PAY-2176] Implement remote config hooks via context (#6778) Randy Schott
[d734058] Default retry for verified user bot (#6783) Isaac Solo
[d58dbb4] [PAY-2210] Change crpyto transfer modal button to secondary (#6790) Reed
[9624aaa] Fix user bank indexing (#6789) Raymond Jacobson
[8448c37] [PAY-2214] Change require to import in AnimatedIconbutton (#6786) Reed
[26f89a8] Fix web lint (#6784) Reed
[22a34b1] [PAY-2066] Buy Crypto via SOL recovery flow (#6598) Marcus Pasell
[b47402a] Connect social to finish profile page, fix account header z index C-3384 (#6779) nicoback2
[d4d6b71] Bump version to 0.5.25 audius-infra
[c846f7a] d contracts interface (#6767) Michelle Brier
audius-infra pushed a commit that referenced this pull request Feb 29, 2024
[skip ci]
## Changelog

- 2024-02-29 [b9c440e] Test pt 3 [sliptype]
- 2024-02-28 [63494e0] Use turbo to build sdk in release workflow [sliptype]
- 2024-02-22 [21f5d8e] [DVRL-10] Ensure history uses track activity model (#7678) [Raymond Jacobson]
- 2024-02-21 [fc4ead6] ⚠️ [PAY-2421] Upload stems in parallel (#7644) [Marcus Pasell]
- 2024-02-21 [0c37ede] Revert "PROTO-1574: sepolia config and register all nodes" (#7667) [alecsavvy]
- 2024-02-21 [51cdfd6] [DVRL-10] Add auth middleware sdk changes for history (#7663) [Raymond Jacobson]
- 2024-02-21 [01563db] v1.5.67 [audius-infra]
- 2024-02-20 [eaacf44] [PROTO-1667] Add DDEX sessions and admin+artist auth (#7645) [Theo Ilie]
- 2024-02-20 [04bb965] PROTO-1574: sepolia config and register all nodes (#7648) [alecsavvy]
- 2024-02-15 [fa33251] Add priority fee ixs to purchase txs (#7613) [Reed]
- 2024-02-14 [23edd81] ⚠️ [ONC-19] Error on failed gas estimation (#7569) [Raymond Jacobson]
- 2024-02-14 [a22dc7a] rework relay selection (#7539) [alecsavvy]
- 2024-02-10 [8ecf162] v1.5.66 [audius-infra]
- 2024-02-09 [d924e3d] [PAY-2464] Add access to purchases + sales endpoints (#7526) [Reed]
- 2024-02-08 [85194b5] force reselection on relay 500s (#7529) [alecsavvy]
- 2024-02-08 [328e805] [PAY-2450][PAY-2451] Purchase indexing uses access from memo (#7510) [Reed]
- 2024-02-07 [4b39b68] ⚠️ [PAY-2387][PAY-2385] Web/Mobile Web: Change Email and Change Password (#7352) [Marcus Pasell]
- 2024-02-05 [e513ff3] [PAY-2329] Use download_conditions in purchase flow (#7385) [Reed]
- 2024-02-03 [42966c1] v1.5.65 [audius-infra]
- 2024-02-02 [4140f4c] [PAY-2448] Exclude system USDC transactions by default (#7429) [Randy Schott]
- 2024-02-01 [ba35a42] [PAY-2373][PAY-2406][PAY-2374] Support file sizes for stems / downloads (#7421) [Raymond Jacobson]
- 2024-01-31 [3c898a8] Unbundle @audius/common (#7379) [Dylan Jeffers]
- 2024-01-27 [6da6f9a] v1.5.64 [audius-infra]
- 2024-01-24 [7b53f91] ⚠️ [INF-547] SSR Track Page (#7213) [Sebastian Klingler]
- 2024-01-23 [439f10b] Add ChallengesApi, RewardManager to SDK (#7026) [Marcus Pasell]
- 2024-01-23 [17f3a6c] [Web][Libs] QA for Link Audius Profile to Dashboard Wallet feature [C-3683] [C-3686] (#7283) [nicoback2]
- 2024-01-20 [6a332ac] v1.5.63 [audius-infra]
- 2024-01-19 [1599367] [PROTO-1598] Use tRPC in ddex (#7150) [Theo Ilie]
- 2024-01-18 [2a15a64] v1.5.62 (#7243) [Dylan Jeffers]
- 2024-01-17 [c3c2148] [Web] [Libs] Disconnect dashboard wallet - web and SDK changes (#7209) [nicoback2]
- 2024-01-16 [ab1d3e9] Add USDC gated downloads flow (#6899) [Saliou Diallo]
- 2024-01-14 [8d031a4] [PROTO-1599] Add OTP support (#7193) [Raymond Jacobson]
- 2024-01-13 [39448b8] v1.5.61 [audius-infra]
- 2024-01-12 [6e2927a] repairEntityManagerUserV2 (#7189) [Marcus Pasell]
- 2024-01-12 [2b5cc0e] v1.5.60 (#7187) [Raymond Jacobson]
- 2024-01-12 [a021a74] [Web][SDK] Send EM transaction from Audius client for connect wallet feature (previously reviewed) (#7186) [nicoback2]
- 2024-01-12 [c8efc84] [Discovery] Allow `wallet_signature` message in CreateDashboardWalletUser tx metadata to contain user handle (#7173) [nicoback2]
- 2024-01-12 [60652a0] Fix top_listeners restx schema (#7157) [Steve Perkins]
- 2024-01-11 [a0a5c01] rest endpoint for track top_listeners (#7139) [Steve Perkins]
- 2024-01-09 [274bc9c] Support creating dashboard wallet user in SDK (#7106) [nicoback2]
- 2024-01-06 [b9f0b43] v1.5.59 [audius-infra]
- 2024-01-02 [7928e12] Improve sdk track upload logs (#7007) [Sebastian Klingler]
- 2023-12-30 [8ae982c] v1.5.58 [audius-infra]
- 2023-12-29 [8300ad0] [C-3550] Upgrade react native to 0.73.1 (#7042) [Dylan Jeffers]
- 2023-12-29 [116a19a] [SDK] Fix validate ETH address util (#7043) [nicoback2]
- 2023-12-28 [8c1e557] Reland "Add Solana Support to SDK with sdk.users.sendTip() (#6891)" (#7025) [Marcus Pasell]
- 2023-12-28 [858da9f] [SDK] Export DashboardWalletUsersAPI + types in SDK index file, add missing param (#7039) [nicoback2]
- 2023-12-28 [a2d87ca] [SDK] Have DashboardWalletUsers extend generated dashboard wallet users API (#7033) [nicoback2]
- 2023-12-27 [ad3f877] [C-3547] Upgrade eslint, typescript, and prettier (#7036) [Dylan Jeffers]
- 2023-12-27 [dea3dfb] Run comms locally via audius-compose (#7028) [Marcus Pasell]
- 2023-12-26 [44b99b6] Re-gen SDK for DashboardWalletUsers APIs (#7027) [nicoback2]
- 2023-12-23 [daa5a9b] v1.5.57 [audius-infra]
- 2023-12-22 [179ba8a] [SDK] Add dashboard wallet users API to SDK [C-3530] (#6971) [nicoback2]
- 2023-12-21 [a002560] Fix sdk Storage retry logic (#7006) [Sebastian Klingler]
- 2023-12-21 [500f9a7] Publish sdk and fix publish flow (#6995) [Sebastian Klingler]
- 2023-12-20 [9eefe64] Revert "Add Solana Support to SDK with sdk.users.sendTip() (#6891)" (#7002) [Marcus Pasell]
- 2023-12-20 [a542274] Add Solana Support to SDK with sdk.users.sendTip() (#6891) [Marcus Pasell]
- 2023-12-19 [8967859] Fix sdk write w/ vite and fix npm publish (#6986) [Sebastian Klingler]
- 2023-12-16 [7bb95df] v1.5.56 [audius-infra]
- 2023-12-15 [7a8d979] Use retry logic for coinflow (#6957) [Marcus Pasell]
- 2023-12-13 [b18a138] rm does_follow_current_user from API response (#6836) [Steve Perkins]
- 2023-12-11 [7929dd0] [PAY-2128] Implement general coinflow scaffolding (#6847) [Raymond Jacobson]
- 2023-12-11 [ab24471] Add memo for purchaser user id (#6846) [Reed]
- 2023-12-09 [7e1dbfc] v1.5.55 [audius-infra]
- 2023-12-08 [976b787] [PAY-2221] Purchase content through payment router (#6880) [Reed]
- 2023-12-07 [f9de2f3] [INF-557] Convert libs to esm so vite HMR works (#6882) [Sebastian Klingler]
- 2023-12-05 [9946c48] Payment router instructions in @audius/spl (#6862) [Reed]
- 2023-12-05 [cd431cb] Fix typo in libs solana decimals constants (#6863) [Reed]
- 2023-12-02 [f3398f6] v1.5.54 [audius-infra]
- 2023-11-28 [00b0d25] Add Solana Relay to Discovery (#6782) [Marcus Pasell]
- 2023-11-25 [e794c14] v1.5.53 [audius-infra]
- 2023-11-20 [db88ed2] Fix electron w/ vite (#6747) [Sebastian Klingler]
- 2023-11-18 [32514e5] v1.5.52 [audius-infra]
- 2023-11-11 [d4d13e6] v1.5.51 [audius-infra]
- 2023-11-09 [62de2d4] Update default RPCs (#6639) [Raymond Jacobson]
- 2023-11-06 [fd12b98] [PAY-2091] Update aao error emojis and libs mapped error (#6593) [Saliou Diallo]
- 2023-11-06 [6c473bb] ⚠️ [INF-507] Migrate from CRA to Vite (#6567) [Sebastian Klingler]
- 2023-11-04 [41a3c27] v1.5.50 [audius-infra]
- 2023-10-28 [f5cf244] v1.5.48 [audius-infra]
- 2023-10-26 [76b14ce] [PAY-2041] Connect stripe session creation errors to analytics (#6465) [Randy Schott]
- 2023-10-25 [3a176a2] Add fallbacks to SDK upload (#5970) [Theo Ilie]
- 2023-10-21 [5c4aba5] v1.5.47 [audius-infra]
- 2023-10-19 [785a815] [PAY-2060] Fix wrong challenge claimed so far amounts (#6398) [Reed]
- 2023-10-18 [492a51a] [INF-484] Remove postinstall builds (#6381) [Sebastian Klingler]
- 2023-10-17 [8cc5a64] [PAY-2009] Challenge cooldown UI (#6363) [Reed]
- 2023-10-17 [741a0a6] Revert "Revert "[INF-498] Leverage turborepo cache in docker builds i… (#6365) [Sebastian Klingler]
- 2023-10-16 [5162831] PROTO-1335: relay upload delay (#6281) [Alec Savvy]
- 2023-10-14 [11fd490] v1.5.46 [audius-infra]
- 2023-10-13 [5781951] [PAY-1886] Challenge cooldown: created_at migration + backend updates (#6326) [Reed]
- 2023-10-12 [d133591] Fix audio balance error C-3207 C-3208 (#6317) [nicoback2]
- 2023-10-12 [a384b2f] Revert "[INF-498] Leverage turborepo cache in docker builds in CI (#6… (#6320) [Isaac Solo]
- 2023-10-11 [efd5ba7] [INF-498] Leverage turborepo cache in docker builds in CI (#6293) [Sebastian Klingler]
- 2023-10-07 [7c00f48] v1.5.45 [audius-infra]
- 2023-10-05 [faa348d] @audius/sdk: v3.0.11-beta.21 [audius-infra]
audius-infra pushed a commit that referenced this pull request Feb 29, 2024
[skip ci]
## Changelog

- 2024-02-29 [b9c440e] Test pt 3 [sliptype]
- 2024-02-28 [63494e0] Use turbo to build sdk in release workflow [sliptype]
- 2024-02-22 [21f5d8e] [DVRL-10] Ensure history uses track activity model (#7678) [Raymond Jacobson]
- 2024-02-21 [fc4ead6] ⚠️ [PAY-2421] Upload stems in parallel (#7644) [Marcus Pasell]
- 2024-02-21 [0c37ede] Revert "PROTO-1574: sepolia config and register all nodes" (#7667) [alecsavvy]
- 2024-02-21 [51cdfd6] [DVRL-10] Add auth middleware sdk changes for history (#7663) [Raymond Jacobson]
- 2024-02-21 [01563db] v1.5.67 [audius-infra]
- 2024-02-20 [eaacf44] [PROTO-1667] Add DDEX sessions and admin+artist auth (#7645) [Theo Ilie]
- 2024-02-20 [04bb965] PROTO-1574: sepolia config and register all nodes (#7648) [alecsavvy]
- 2024-02-15 [fa33251] Add priority fee ixs to purchase txs (#7613) [Reed]
- 2024-02-14 [23edd81] ⚠️ [ONC-19] Error on failed gas estimation (#7569) [Raymond Jacobson]
- 2024-02-14 [a22dc7a] rework relay selection (#7539) [alecsavvy]
- 2024-02-10 [8ecf162] v1.5.66 [audius-infra]
- 2024-02-09 [d924e3d] [PAY-2464] Add access to purchases + sales endpoints (#7526) [Reed]
- 2024-02-08 [85194b5] force reselection on relay 500s (#7529) [alecsavvy]
- 2024-02-08 [328e805] [PAY-2450][PAY-2451] Purchase indexing uses access from memo (#7510) [Reed]
- 2024-02-07 [4b39b68] ⚠️ [PAY-2387][PAY-2385] Web/Mobile Web: Change Email and Change Password (#7352) [Marcus Pasell]
- 2024-02-05 [e513ff3] [PAY-2329] Use download_conditions in purchase flow (#7385) [Reed]
- 2024-02-03 [42966c1] v1.5.65 [audius-infra]
- 2024-02-02 [4140f4c] [PAY-2448] Exclude system USDC transactions by default (#7429) [Randy Schott]
- 2024-02-01 [ba35a42] [PAY-2373][PAY-2406][PAY-2374] Support file sizes for stems / downloads (#7421) [Raymond Jacobson]
- 2024-01-31 [3c898a8] Unbundle @audius/common (#7379) [Dylan Jeffers]
- 2024-01-27 [6da6f9a] v1.5.64 [audius-infra]
- 2024-01-24 [7b53f91] ⚠️ [INF-547] SSR Track Page (#7213) [Sebastian Klingler]
- 2024-01-23 [439f10b] Add ChallengesApi, RewardManager to SDK (#7026) [Marcus Pasell]
- 2024-01-23 [17f3a6c] [Web][Libs] QA for Link Audius Profile to Dashboard Wallet feature [C-3683] [C-3686] (#7283) [nicoback2]
- 2024-01-20 [6a332ac] v1.5.63 [audius-infra]
- 2024-01-19 [1599367] [PROTO-1598] Use tRPC in ddex (#7150) [Theo Ilie]
- 2024-01-18 [2a15a64] v1.5.62 (#7243) [Dylan Jeffers]
- 2024-01-17 [c3c2148] [Web] [Libs] Disconnect dashboard wallet - web and SDK changes (#7209) [nicoback2]
- 2024-01-16 [ab1d3e9] Add USDC gated downloads flow (#6899) [Saliou Diallo]
- 2024-01-14 [8d031a4] [PROTO-1599] Add OTP support (#7193) [Raymond Jacobson]
- 2024-01-13 [39448b8] v1.5.61 [audius-infra]
- 2024-01-12 [6e2927a] repairEntityManagerUserV2 (#7189) [Marcus Pasell]
- 2024-01-12 [2b5cc0e] v1.5.60 (#7187) [Raymond Jacobson]
- 2024-01-12 [a021a74] [Web][SDK] Send EM transaction from Audius client for connect wallet feature (previously reviewed) (#7186) [nicoback2]
- 2024-01-12 [c8efc84] [Discovery] Allow `wallet_signature` message in CreateDashboardWalletUser tx metadata to contain user handle (#7173) [nicoback2]
- 2024-01-12 [60652a0] Fix top_listeners restx schema (#7157) [Steve Perkins]
- 2024-01-11 [a0a5c01] rest endpoint for track top_listeners (#7139) [Steve Perkins]
- 2024-01-09 [274bc9c] Support creating dashboard wallet user in SDK (#7106) [nicoback2]
- 2024-01-06 [b9f0b43] v1.5.59 [audius-infra]
- 2024-01-02 [7928e12] Improve sdk track upload logs (#7007) [Sebastian Klingler]
- 2023-12-30 [8ae982c] v1.5.58 [audius-infra]
- 2023-12-29 [8300ad0] [C-3550] Upgrade react native to 0.73.1 (#7042) [Dylan Jeffers]
- 2023-12-29 [116a19a] [SDK] Fix validate ETH address util (#7043) [nicoback2]
- 2023-12-28 [8c1e557] Reland "Add Solana Support to SDK with sdk.users.sendTip() (#6891)" (#7025) [Marcus Pasell]
- 2023-12-28 [858da9f] [SDK] Export DashboardWalletUsersAPI + types in SDK index file, add missing param (#7039) [nicoback2]
- 2023-12-28 [a2d87ca] [SDK] Have DashboardWalletUsers extend generated dashboard wallet users API (#7033) [nicoback2]
- 2023-12-27 [ad3f877] [C-3547] Upgrade eslint, typescript, and prettier (#7036) [Dylan Jeffers]
- 2023-12-27 [dea3dfb] Run comms locally via audius-compose (#7028) [Marcus Pasell]
- 2023-12-26 [44b99b6] Re-gen SDK for DashboardWalletUsers APIs (#7027) [nicoback2]
- 2023-12-23 [daa5a9b] v1.5.57 [audius-infra]
- 2023-12-22 [179ba8a] [SDK] Add dashboard wallet users API to SDK [C-3530] (#6971) [nicoback2]
- 2023-12-21 [a002560] Fix sdk Storage retry logic (#7006) [Sebastian Klingler]
- 2023-12-21 [500f9a7] Publish sdk and fix publish flow (#6995) [Sebastian Klingler]
- 2023-12-20 [9eefe64] Revert "Add Solana Support to SDK with sdk.users.sendTip() (#6891)" (#7002) [Marcus Pasell]
- 2023-12-20 [a542274] Add Solana Support to SDK with sdk.users.sendTip() (#6891) [Marcus Pasell]
- 2023-12-19 [8967859] Fix sdk write w/ vite and fix npm publish (#6986) [Sebastian Klingler]
- 2023-12-16 [7bb95df] v1.5.56 [audius-infra]
- 2023-12-15 [7a8d979] Use retry logic for coinflow (#6957) [Marcus Pasell]
- 2023-12-13 [b18a138] rm does_follow_current_user from API response (#6836) [Steve Perkins]
- 2023-12-11 [7929dd0] [PAY-2128] Implement general coinflow scaffolding (#6847) [Raymond Jacobson]
- 2023-12-11 [ab24471] Add memo for purchaser user id (#6846) [Reed]
- 2023-12-09 [7e1dbfc] v1.5.55 [audius-infra]
- 2023-12-08 [976b787] [PAY-2221] Purchase content through payment router (#6880) [Reed]
- 2023-12-07 [f9de2f3] [INF-557] Convert libs to esm so vite HMR works (#6882) [Sebastian Klingler]
- 2023-12-05 [9946c48] Payment router instructions in @audius/spl (#6862) [Reed]
- 2023-12-05 [cd431cb] Fix typo in libs solana decimals constants (#6863) [Reed]
- 2023-12-02 [f3398f6] v1.5.54 [audius-infra]
- 2023-11-28 [00b0d25] Add Solana Relay to Discovery (#6782) [Marcus Pasell]
- 2023-11-25 [e794c14] v1.5.53 [audius-infra]
- 2023-11-20 [db88ed2] Fix electron w/ vite (#6747) [Sebastian Klingler]
- 2023-11-18 [32514e5] v1.5.52 [audius-infra]
- 2023-11-11 [d4d13e6] v1.5.51 [audius-infra]
- 2023-11-09 [62de2d4] Update default RPCs (#6639) [Raymond Jacobson]
- 2023-11-06 [fd12b98] [PAY-2091] Update aao error emojis and libs mapped error (#6593) [Saliou Diallo]
- 2023-11-06 [6c473bb] ⚠️ [INF-507] Migrate from CRA to Vite (#6567) [Sebastian Klingler]
- 2023-11-04 [41a3c27] v1.5.50 [audius-infra]
- 2023-10-28 [f5cf244] v1.5.48 [audius-infra]
- 2023-10-26 [76b14ce] [PAY-2041] Connect stripe session creation errors to analytics (#6465) [Randy Schott]
- 2023-10-25 [3a176a2] Add fallbacks to SDK upload (#5970) [Theo Ilie]
- 2023-10-21 [5c4aba5] v1.5.47 [audius-infra]
- 2023-10-19 [785a815] [PAY-2060] Fix wrong challenge claimed so far amounts (#6398) [Reed]
- 2023-10-18 [492a51a] [INF-484] Remove postinstall builds (#6381) [Sebastian Klingler]
- 2023-10-17 [8cc5a64] [PAY-2009] Challenge cooldown UI (#6363) [Reed]
- 2023-10-17 [741a0a6] Revert "Revert "[INF-498] Leverage turborepo cache in docker builds i… (#6365) [Sebastian Klingler]
- 2023-10-16 [5162831] PROTO-1335: relay upload delay (#6281) [Alec Savvy]
- 2023-10-14 [11fd490] v1.5.46 [audius-infra]
- 2023-10-13 [5781951] [PAY-1886] Challenge cooldown: created_at migration + backend updates (#6326) [Reed]
- 2023-10-12 [d133591] Fix audio balance error C-3207 C-3208 (#6317) [nicoback2]
- 2023-10-12 [a384b2f] Revert "[INF-498] Leverage turborepo cache in docker builds in CI (#6… (#6320) [Isaac Solo]
- 2023-10-11 [efd5ba7] [INF-498] Leverage turborepo cache in docker builds in CI (#6293) [Sebastian Klingler]
- 2023-10-07 [7c00f48] v1.5.45 [audius-infra]
- 2023-10-05 [faa348d] @audius/sdk: v3.0.11-beta.21 [audius-infra]
audius-infra pushed a commit that referenced this pull request Feb 29, 2024
[skip ci]
## Changelog

- 2024-02-29 [2738765] Use turbo for sdk release (#7748) [Sebastian Klingler]
- 2024-02-28 [c2a9c46] Add ddex_app field for ddex tracks/playlists to discovery (#7734) [Michelle Brier]
- 2024-02-26 [398db27] PROTO-1574: sepolia (#7698) [alecsavvy]
- 2024-02-26 [beb054b] Remove all usage of PROTOCOL_DIR env var (#7714) [Danny]
- 2024-02-24 [5452dcb] v1.5.68 [audius-infra]
- 2024-02-22 [21f5d8e] [DVRL-10] Ensure history uses track activity model (#7678) [Raymond Jacobson]
- 2024-02-21 [fc4ead6] ⚠️ [PAY-2421] Upload stems in parallel (#7644) [Marcus Pasell]
- 2024-02-21 [0c37ede] Revert "PROTO-1574: sepolia config and register all nodes" (#7667) [alecsavvy]
- 2024-02-21 [51cdfd6] [DVRL-10] Add auth middleware sdk changes for history (#7663) [Raymond Jacobson]
- 2024-02-21 [01563db] v1.5.67 [audius-infra]
- 2024-02-20 [eaacf44] [PROTO-1667] Add DDEX sessions and admin+artist auth (#7645) [Theo Ilie]
- 2024-02-20 [04bb965] PROTO-1574: sepolia config and register all nodes (#7648) [alecsavvy]
- 2024-02-15 [fa33251] Add priority fee ixs to purchase txs (#7613) [Reed]
- 2024-02-14 [23edd81] ⚠️ [ONC-19] Error on failed gas estimation (#7569) [Raymond Jacobson]
- 2024-02-14 [a22dc7a] rework relay selection (#7539) [alecsavvy]
- 2024-02-10 [8ecf162] v1.5.66 [audius-infra]
- 2024-02-09 [d924e3d] [PAY-2464] Add access to purchases + sales endpoints (#7526) [Reed]
- 2024-02-08 [85194b5] force reselection on relay 500s (#7529) [alecsavvy]
- 2024-02-08 [328e805] [PAY-2450][PAY-2451] Purchase indexing uses access from memo (#7510) [Reed]
- 2024-02-07 [4b39b68] ⚠️ [PAY-2387][PAY-2385] Web/Mobile Web: Change Email and Change Password (#7352) [Marcus Pasell]
- 2024-02-05 [e513ff3] [PAY-2329] Use download_conditions in purchase flow (#7385) [Reed]
- 2024-02-03 [42966c1] v1.5.65 [audius-infra]
- 2024-02-02 [4140f4c] [PAY-2448] Exclude system USDC transactions by default (#7429) [Randy Schott]
- 2024-02-01 [ba35a42] [PAY-2373][PAY-2406][PAY-2374] Support file sizes for stems / downloads (#7421) [Raymond Jacobson]
- 2024-01-31 [3c898a8] Unbundle @audius/common (#7379) [Dylan Jeffers]
- 2024-01-27 [6da6f9a] v1.5.64 [audius-infra]
- 2024-01-24 [7b53f91] ⚠️ [INF-547] SSR Track Page (#7213) [Sebastian Klingler]
- 2024-01-23 [439f10b] Add ChallengesApi, RewardManager to SDK (#7026) [Marcus Pasell]
- 2024-01-23 [17f3a6c] [Web][Libs] QA for Link Audius Profile to Dashboard Wallet feature [C-3683] [C-3686] (#7283) [nicoback2]
- 2024-01-20 [6a332ac] v1.5.63 [audius-infra]
- 2024-01-19 [1599367] [PROTO-1598] Use tRPC in ddex (#7150) [Theo Ilie]
- 2024-01-18 [2a15a64] v1.5.62 (#7243) [Dylan Jeffers]
- 2024-01-17 [c3c2148] [Web] [Libs] Disconnect dashboard wallet - web and SDK changes (#7209) [nicoback2]
- 2024-01-16 [ab1d3e9] Add USDC gated downloads flow (#6899) [Saliou Diallo]
- 2024-01-14 [8d031a4] [PROTO-1599] Add OTP support (#7193) [Raymond Jacobson]
- 2024-01-13 [39448b8] v1.5.61 [audius-infra]
- 2024-01-12 [6e2927a] repairEntityManagerUserV2 (#7189) [Marcus Pasell]
- 2024-01-12 [2b5cc0e] v1.5.60 (#7187) [Raymond Jacobson]
- 2024-01-12 [a021a74] [Web][SDK] Send EM transaction from Audius client for connect wallet feature (previously reviewed) (#7186) [nicoback2]
- 2024-01-12 [c8efc84] [Discovery] Allow `wallet_signature` message in CreateDashboardWalletUser tx metadata to contain user handle (#7173) [nicoback2]
- 2024-01-12 [60652a0] Fix top_listeners restx schema (#7157) [Steve Perkins]
- 2024-01-11 [a0a5c01] rest endpoint for track top_listeners (#7139) [Steve Perkins]
- 2024-01-09 [274bc9c] Support creating dashboard wallet user in SDK (#7106) [nicoback2]
- 2024-01-06 [b9f0b43] v1.5.59 [audius-infra]
- 2024-01-02 [7928e12] Improve sdk track upload logs (#7007) [Sebastian Klingler]
- 2023-12-30 [8ae982c] v1.5.58 [audius-infra]
- 2023-12-29 [8300ad0] [C-3550] Upgrade react native to 0.73.1 (#7042) [Dylan Jeffers]
- 2023-12-29 [116a19a] [SDK] Fix validate ETH address util (#7043) [nicoback2]
- 2023-12-28 [8c1e557] Reland "Add Solana Support to SDK with sdk.users.sendTip() (#6891)" (#7025) [Marcus Pasell]
- 2023-12-28 [858da9f] [SDK] Export DashboardWalletUsersAPI + types in SDK index file, add missing param (#7039) [nicoback2]
- 2023-12-28 [a2d87ca] [SDK] Have DashboardWalletUsers extend generated dashboard wallet users API (#7033) [nicoback2]
- 2023-12-27 [ad3f877] [C-3547] Upgrade eslint, typescript, and prettier (#7036) [Dylan Jeffers]
- 2023-12-27 [dea3dfb] Run comms locally via audius-compose (#7028) [Marcus Pasell]
- 2023-12-26 [44b99b6] Re-gen SDK for DashboardWalletUsers APIs (#7027) [nicoback2]
- 2023-12-23 [daa5a9b] v1.5.57 [audius-infra]
- 2023-12-22 [179ba8a] [SDK] Add dashboard wallet users API to SDK [C-3530] (#6971) [nicoback2]
- 2023-12-21 [a002560] Fix sdk Storage retry logic (#7006) [Sebastian Klingler]
- 2023-12-21 [500f9a7] Publish sdk and fix publish flow (#6995) [Sebastian Klingler]
- 2023-12-20 [9eefe64] Revert "Add Solana Support to SDK with sdk.users.sendTip() (#6891)" (#7002) [Marcus Pasell]
- 2023-12-20 [a542274] Add Solana Support to SDK with sdk.users.sendTip() (#6891) [Marcus Pasell]
- 2023-12-19 [8967859] Fix sdk write w/ vite and fix npm publish (#6986) [Sebastian Klingler]
- 2023-12-16 [7bb95df] v1.5.56 [audius-infra]
- 2023-12-15 [7a8d979] Use retry logic for coinflow (#6957) [Marcus Pasell]
- 2023-12-13 [b18a138] rm does_follow_current_user from API response (#6836) [Steve Perkins]
- 2023-12-11 [7929dd0] [PAY-2128] Implement general coinflow scaffolding (#6847) [Raymond Jacobson]
- 2023-12-11 [ab24471] Add memo for purchaser user id (#6846) [Reed]
- 2023-12-09 [7e1dbfc] v1.5.55 [audius-infra]
- 2023-12-08 [976b787] [PAY-2221] Purchase content through payment router (#6880) [Reed]
- 2023-12-07 [f9de2f3] [INF-557] Convert libs to esm so vite HMR works (#6882) [Sebastian Klingler]
- 2023-12-05 [9946c48] Payment router instructions in @audius/spl (#6862) [Reed]
- 2023-12-05 [cd431cb] Fix typo in libs solana decimals constants (#6863) [Reed]
- 2023-12-02 [f3398f6] v1.5.54 [audius-infra]
- 2023-11-28 [00b0d25] Add Solana Relay to Discovery (#6782) [Marcus Pasell]
- 2023-11-25 [e794c14] v1.5.53 [audius-infra]
- 2023-11-20 [db88ed2] Fix electron w/ vite (#6747) [Sebastian Klingler]
- 2023-11-18 [32514e5] v1.5.52 [audius-infra]
- 2023-11-11 [d4d13e6] v1.5.51 [audius-infra]
- 2023-11-09 [62de2d4] Update default RPCs (#6639) [Raymond Jacobson]
- 2023-11-06 [fd12b98] [PAY-2091] Update aao error emojis and libs mapped error (#6593) [Saliou Diallo]
- 2023-11-06 [6c473bb] ⚠️ [INF-507] Migrate from CRA to Vite (#6567) [Sebastian Klingler]
- 2023-11-04 [41a3c27] v1.5.50 [audius-infra]
- 2023-10-28 [f5cf244] v1.5.48 [audius-infra]
- 2023-10-26 [76b14ce] [PAY-2041] Connect stripe session creation errors to analytics (#6465) [Randy Schott]
- 2023-10-25 [3a176a2] Add fallbacks to SDK upload (#5970) [Theo Ilie]
- 2023-10-21 [5c4aba5] v1.5.47 [audius-infra]
- 2023-10-19 [785a815] [PAY-2060] Fix wrong challenge claimed so far amounts (#6398) [Reed]
- 2023-10-18 [492a51a] [INF-484] Remove postinstall builds (#6381) [Sebastian Klingler]
- 2023-10-17 [8cc5a64] [PAY-2009] Challenge cooldown UI (#6363) [Reed]
- 2023-10-17 [741a0a6] Revert "Revert "[INF-498] Leverage turborepo cache in docker builds i… (#6365) [Sebastian Klingler]
- 2023-10-16 [5162831] PROTO-1335: relay upload delay (#6281) [Alec Savvy]
- 2023-10-14 [11fd490] v1.5.46 [audius-infra]
- 2023-10-13 [5781951] [PAY-1886] Challenge cooldown: created_at migration + backend updates (#6326) [Reed]
- 2023-10-12 [d133591] Fix audio balance error C-3207 C-3208 (#6317) [nicoback2]
- 2023-10-12 [a384b2f] Revert "[INF-498] Leverage turborepo cache in docker builds in CI (#6… (#6320) [Isaac Solo]
- 2023-10-11 [efd5ba7] [INF-498] Leverage turborepo cache in docker builds in CI (#6293) [Sebastian Klingler]
- 2023-10-07 [7c00f48] v1.5.45 [audius-infra]
- 2023-10-05 [faa348d] @audius/sdk: v3.0.11-beta.21 [audius-infra]
audius-infra pushed a commit that referenced this pull request Feb 29, 2024
[skip ci]
## Changelog

- 2024-02-29 [2738765] Use turbo for sdk release (#7748) [Sebastian Klingler]
- 2024-02-28 [c2a9c46] Add ddex_app field for ddex tracks/playlists to discovery (#7734) [Michelle Brier]
- 2024-02-26 [398db27] PROTO-1574: sepolia (#7698) [alecsavvy]
- 2024-02-26 [beb054b] Remove all usage of PROTOCOL_DIR env var (#7714) [Danny]
- 2024-02-24 [5452dcb] v1.5.68 [audius-infra]
- 2024-02-22 [21f5d8e] [DVRL-10] Ensure history uses track activity model (#7678) [Raymond Jacobson]
- 2024-02-21 [fc4ead6] ⚠️ [PAY-2421] Upload stems in parallel (#7644) [Marcus Pasell]
- 2024-02-21 [0c37ede] Revert "PROTO-1574: sepolia config and register all nodes" (#7667) [alecsavvy]
- 2024-02-21 [51cdfd6] [DVRL-10] Add auth middleware sdk changes for history (#7663) [Raymond Jacobson]
- 2024-02-21 [01563db] v1.5.67 [audius-infra]
- 2024-02-20 [eaacf44] [PROTO-1667] Add DDEX sessions and admin+artist auth (#7645) [Theo Ilie]
- 2024-02-20 [04bb965] PROTO-1574: sepolia config and register all nodes (#7648) [alecsavvy]
- 2024-02-15 [fa33251] Add priority fee ixs to purchase txs (#7613) [Reed]
- 2024-02-14 [23edd81] ⚠️ [ONC-19] Error on failed gas estimation (#7569) [Raymond Jacobson]
- 2024-02-14 [a22dc7a] rework relay selection (#7539) [alecsavvy]
- 2024-02-10 [8ecf162] v1.5.66 [audius-infra]
- 2024-02-09 [d924e3d] [PAY-2464] Add access to purchases + sales endpoints (#7526) [Reed]
- 2024-02-08 [85194b5] force reselection on relay 500s (#7529) [alecsavvy]
- 2024-02-08 [328e805] [PAY-2450][PAY-2451] Purchase indexing uses access from memo (#7510) [Reed]
- 2024-02-07 [4b39b68] ⚠️ [PAY-2387][PAY-2385] Web/Mobile Web: Change Email and Change Password (#7352) [Marcus Pasell]
- 2024-02-05 [e513ff3] [PAY-2329] Use download_conditions in purchase flow (#7385) [Reed]
- 2024-02-03 [42966c1] v1.5.65 [audius-infra]
- 2024-02-02 [4140f4c] [PAY-2448] Exclude system USDC transactions by default (#7429) [Randy Schott]
- 2024-02-01 [ba35a42] [PAY-2373][PAY-2406][PAY-2374] Support file sizes for stems / downloads (#7421) [Raymond Jacobson]
- 2024-01-31 [3c898a8] Unbundle @audius/common (#7379) [Dylan Jeffers]
- 2024-01-27 [6da6f9a] v1.5.64 [audius-infra]
- 2024-01-24 [7b53f91] ⚠️ [INF-547] SSR Track Page (#7213) [Sebastian Klingler]
- 2024-01-23 [439f10b] Add ChallengesApi, RewardManager to SDK (#7026) [Marcus Pasell]
- 2024-01-23 [17f3a6c] [Web][Libs] QA for Link Audius Profile to Dashboard Wallet feature [C-3683] [C-3686] (#7283) [nicoback2]
- 2024-01-20 [6a332ac] v1.5.63 [audius-infra]
- 2024-01-19 [1599367] [PROTO-1598] Use tRPC in ddex (#7150) [Theo Ilie]
- 2024-01-18 [2a15a64] v1.5.62 (#7243) [Dylan Jeffers]
- 2024-01-17 [c3c2148] [Web] [Libs] Disconnect dashboard wallet - web and SDK changes (#7209) [nicoback2]
- 2024-01-16 [ab1d3e9] Add USDC gated downloads flow (#6899) [Saliou Diallo]
- 2024-01-14 [8d031a4] [PROTO-1599] Add OTP support (#7193) [Raymond Jacobson]
- 2024-01-13 [39448b8] v1.5.61 [audius-infra]
- 2024-01-12 [6e2927a] repairEntityManagerUserV2 (#7189) [Marcus Pasell]
- 2024-01-12 [2b5cc0e] v1.5.60 (#7187) [Raymond Jacobson]
- 2024-01-12 [a021a74] [Web][SDK] Send EM transaction from Audius client for connect wallet feature (previously reviewed) (#7186) [nicoback2]
- 2024-01-12 [c8efc84] [Discovery] Allow `wallet_signature` message in CreateDashboardWalletUser tx metadata to contain user handle (#7173) [nicoback2]
- 2024-01-12 [60652a0] Fix top_listeners restx schema (#7157) [Steve Perkins]
- 2024-01-11 [a0a5c01] rest endpoint for track top_listeners (#7139) [Steve Perkins]
- 2024-01-09 [274bc9c] Support creating dashboard wallet user in SDK (#7106) [nicoback2]
- 2024-01-06 [b9f0b43] v1.5.59 [audius-infra]
- 2024-01-02 [7928e12] Improve sdk track upload logs (#7007) [Sebastian Klingler]
- 2023-12-30 [8ae982c] v1.5.58 [audius-infra]
- 2023-12-29 [8300ad0] [C-3550] Upgrade react native to 0.73.1 (#7042) [Dylan Jeffers]
- 2023-12-29 [116a19a] [SDK] Fix validate ETH address util (#7043) [nicoback2]
- 2023-12-28 [8c1e557] Reland "Add Solana Support to SDK with sdk.users.sendTip() (#6891)" (#7025) [Marcus Pasell]
- 2023-12-28 [858da9f] [SDK] Export DashboardWalletUsersAPI + types in SDK index file, add missing param (#7039) [nicoback2]
- 2023-12-28 [a2d87ca] [SDK] Have DashboardWalletUsers extend generated dashboard wallet users API (#7033) [nicoback2]
- 2023-12-27 [ad3f877] [C-3547] Upgrade eslint, typescript, and prettier (#7036) [Dylan Jeffers]
- 2023-12-27 [dea3dfb] Run comms locally via audius-compose (#7028) [Marcus Pasell]
- 2023-12-26 [44b99b6] Re-gen SDK for DashboardWalletUsers APIs (#7027) [nicoback2]
- 2023-12-23 [daa5a9b] v1.5.57 [audius-infra]
- 2023-12-22 [179ba8a] [SDK] Add dashboard wallet users API to SDK [C-3530] (#6971) [nicoback2]
- 2023-12-21 [a002560] Fix sdk Storage retry logic (#7006) [Sebastian Klingler]
- 2023-12-21 [500f9a7] Publish sdk and fix publish flow (#6995) [Sebastian Klingler]
- 2023-12-20 [9eefe64] Revert "Add Solana Support to SDK with sdk.users.sendTip() (#6891)" (#7002) [Marcus Pasell]
- 2023-12-20 [a542274] Add Solana Support to SDK with sdk.users.sendTip() (#6891) [Marcus Pasell]
- 2023-12-19 [8967859] Fix sdk write w/ vite and fix npm publish (#6986) [Sebastian Klingler]
- 2023-12-16 [7bb95df] v1.5.56 [audius-infra]
- 2023-12-15 [7a8d979] Use retry logic for coinflow (#6957) [Marcus Pasell]
- 2023-12-13 [b18a138] rm does_follow_current_user from API response (#6836) [Steve Perkins]
- 2023-12-11 [7929dd0] [PAY-2128] Implement general coinflow scaffolding (#6847) [Raymond Jacobson]
- 2023-12-11 [ab24471] Add memo for purchaser user id (#6846) [Reed]
- 2023-12-09 [7e1dbfc] v1.5.55 [audius-infra]
- 2023-12-08 [976b787] [PAY-2221] Purchase content through payment router (#6880) [Reed]
- 2023-12-07 [f9de2f3] [INF-557] Convert libs to esm so vite HMR works (#6882) [Sebastian Klingler]
- 2023-12-05 [9946c48] Payment router instructions in @audius/spl (#6862) [Reed]
- 2023-12-05 [cd431cb] Fix typo in libs solana decimals constants (#6863) [Reed]
- 2023-12-02 [f3398f6] v1.5.54 [audius-infra]
- 2023-11-28 [00b0d25] Add Solana Relay to Discovery (#6782) [Marcus Pasell]
- 2023-11-25 [e794c14] v1.5.53 [audius-infra]
- 2023-11-20 [db88ed2] Fix electron w/ vite (#6747) [Sebastian Klingler]
- 2023-11-18 [32514e5] v1.5.52 [audius-infra]
- 2023-11-11 [d4d13e6] v1.5.51 [audius-infra]
- 2023-11-09 [62de2d4] Update default RPCs (#6639) [Raymond Jacobson]
- 2023-11-06 [fd12b98] [PAY-2091] Update aao error emojis and libs mapped error (#6593) [Saliou Diallo]
- 2023-11-06 [6c473bb] ⚠️ [INF-507] Migrate from CRA to Vite (#6567) [Sebastian Klingler]
- 2023-11-04 [41a3c27] v1.5.50 [audius-infra]
- 2023-10-28 [f5cf244] v1.5.48 [audius-infra]
- 2023-10-26 [76b14ce] [PAY-2041] Connect stripe session creation errors to analytics (#6465) [Randy Schott]
- 2023-10-25 [3a176a2] Add fallbacks to SDK upload (#5970) [Theo Ilie]
- 2023-10-21 [5c4aba5] v1.5.47 [audius-infra]
- 2023-10-19 [785a815] [PAY-2060] Fix wrong challenge claimed so far amounts (#6398) [Reed]
- 2023-10-18 [492a51a] [INF-484] Remove postinstall builds (#6381) [Sebastian Klingler]
- 2023-10-17 [8cc5a64] [PAY-2009] Challenge cooldown UI (#6363) [Reed]
- 2023-10-17 [741a0a6] Revert "Revert "[INF-498] Leverage turborepo cache in docker builds i… (#6365) [Sebastian Klingler]
- 2023-10-16 [5162831] PROTO-1335: relay upload delay (#6281) [Alec Savvy]
- 2023-10-14 [11fd490] v1.5.46 [audius-infra]
- 2023-10-13 [5781951] [PAY-1886] Challenge cooldown: created_at migration + backend updates (#6326) [Reed]
- 2023-10-12 [d133591] Fix audio balance error C-3207 C-3208 (#6317) [nicoback2]
- 2023-10-12 [a384b2f] Revert "[INF-498] Leverage turborepo cache in docker builds in CI (#6… (#6320) [Isaac Solo]
- 2023-10-11 [efd5ba7] [INF-498] Leverage turborepo cache in docker builds in CI (#6293) [Sebastian Klingler]
- 2023-10-07 [7c00f48] v1.5.45 [audius-infra]
- 2023-10-05 [faa348d] @audius/sdk: v3.0.11-beta.21 [audius-infra]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants