Skip to content

Commit df7a8d5

Browse files
authored
Same update auth (metaplex-foundation#166)
* (feat) update auth and wip js * (feat) fill 1.1.0 spec implemented and wip tests * (feat) fill 1.1.0 spec implemented and wip tests * (fix) store bumps * (fix) seperate from workspace * (chore) fixes versions and CI builds * (fix) fix candy machine * (fix) add new lock files * (fix) tests, gen auction house * (fix) lint and add useAuthority * (fix) lint * (fix) lint * (fix) add metadata lockfile * (fix) lint, beet version for token entangler * (fix) pr comments and lints
1 parent 5d051e4 commit df7a8d5

File tree

75 files changed

+12358
-1249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+12358
-1249
lines changed

.github/actions/build-token-metadata/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
# - ./.github/actions/install-solana
55
# - ./.github/actions/install-rust
66

7-
name: Build Token Metadata
7+
name: Build Token Metadata
88
runs:
9-
using: "composite"
9+
using: 'composite'
1010
steps:
1111
- name: build-token-metadata-program
1212
working-directory: ./token-metadata/program
1313
run: |
1414
cargo +${{ env.RUST_STABLE }} build-bpf --version
15-
cargo +${{ env.RUST_STABLE }} build-bpf
15+
cargo +${{ env.RUST_STABLE }} build-bpf --bpf-out-dir ../../target/deploy/
1616
shell: bash

.github/workflows/program-candy-machine.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ jobs:
6868
run: |
6969
cargo +${{ env.RUST_TOOLCHAIN }} test -- --nocapture --test-threads 1
7070
cargo +${{ env.RUST_TOOLCHAIN }} test-bpf --version
71-
cargo +${{ env.RUST_TOOLCHAIN }} test-bpf -- --nocapture --test-threads 1
71+
cargo +${{ env.RUST_TOOLCHAIN }} test-bpf --bpf-out-dir ../../target/deploy/ -- --nocapture --test-threads 1

.github/workflows/program-token-metadata.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ jobs:
6868
run: |
6969
cargo +${{ env.RUST_TOOLCHAIN }} test -- --nocapture --test-threads 1
7070
cargo +${{ env.RUST_TOOLCHAIN }} test-bpf --version
71-
cargo +${{ env.RUST_TOOLCHAIN }} test-bpf -- --nocapture --test-threads 1
71+
cargo +${{ env.RUST_TOOLCHAIN }} test-bpf --bpf-out-dir ../../target/deploy/ -- --nocapture --test-threads 1

0 commit comments

Comments
 (0)