Skip to content

Commit

Permalink
Merge branch 'main' into feature/handle-actions-list
Browse files Browse the repository at this point in the history
  • Loading branch information
siandreev committed Nov 21, 2023
2 parents 0f64481 + 0b95549 commit d7746f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Run tests

on:
push:
branches: [ "main" ]
branches: [ "main", "feature/optimisation" ]
pull_request:
branches: [ "main" ]
branches: [ "main", "feature/optimisation" ]

jobs:
test:
Expand Down
6 changes: 4 additions & 2 deletions scripts/printWalletCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ import { compile } from '@ton-community/blueprint';
import { LibraryDeployer } from '../wrappers/library-deployer';

export async function run() {
const code = LibraryDeployer.exportLibCode(await compile('wallet_v5'));
const walletCode = await compile('wallet_v5');
const code = LibraryDeployer.exportLibCode(walletCode);

console.log('WALLET CODE HEX', code.toBoc().toString('hex'), '\n');
console.log('WALLET CODE BASE64', code.toBoc().toString('base64'));
console.log('WALLET CODE BASE64', code.toBoc().toString('base64'), '\n');
console.log('WALLET FULL CODE BASE64', walletCode.toBoc().toString('base64'));
}

run();

0 comments on commit d7746f3

Please sign in to comment.