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

Codespace silver happiness q7v9x4r9pg7g34r4q #338

Open
wants to merge 31 commits into
base: update_contracts
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
253cb5c
add ton storage support in ton dns
Dec 29, 2022
00a08af
Change LICENSE to MIT
EmelyanenkoK Jan 14, 2023
9761af5
test-lockup
Jan 19, 2023
71065b1
0.0.60 - allow up to 4 transfers at once; transfer.seqno check - it m…
Feb 16, 2023
b550969
0.0.60 - allow up to 4 transfers at once; transfer.seqno check - it m…
Feb 16, 2023
52bef80
Improve jetton text comment example
EmelyanenkoK Mar 31, 2023
003ec1c
fix readme
rise1507 Jul 8, 2023
5aadf97
add vesting wallet
rise1507 Jul 21, 2023
8bb6c97
add vesting wallet
rise1507 Jul 22, 2023
7091e14
fix loadInt
rise1507 Jul 24, 2023
107168e
fix comment
rise1507 Jul 26, 2023
6c1b8cb
add transfer.getBody() method
rise1507 Jul 28, 2023
448ac6f
writeInt, writeUint checks
rise1507 Jul 31, 2023
171a6aa
0.0.62 - update vesting wallet code and vesting checks
rise1507 Aug 7, 2023
87f0334
Merge remote-tracking branch 'origin/master'
rise1507 Aug 9, 2023
944455d
fix Address.isUrlSafe
rise1507 Aug 17, 2023
48fac91
fix Cell.getMaxDepth recursion
rise1507 Feb 18, 2024
9b4817d
getBlockTransactions paging
rise1507 Feb 18, 2024
b0083f8
0.0.63 - build
rise1507 Feb 18, 2024
b6663d3
getBlockTransactions - improve naming and comments
rise1507 Feb 20, 2024
bc5b2f5
0.0.64 - cell forward_payload in jetton-wallet and nft-item
rise1507 Mar 1, 2024
c16d49e
types
rise1507 Mar 1, 2024
c2ba773
0.0.64
rise1507 Mar 1, 2024
424edad
HighloadQueryId.js
rise1507 Mar 28, 2024
ac411e4
highload-wallet
rise1507 Mar 28, 2024
31ce05c
0.0.65 build
rise1507 Mar 28, 2024
76dfd07
0.0.66 build
rise1507 Mar 28, 2024
e7e44df
Create label.yml
Re2906 Nov 21, 2024
13b2a54
Create webpack.yml
Re2906 Nov 23, 2024
975495d
Create wallet.js
Re2906 Nov 23, 2024
c1f0c2f
Merge pull request #1 from Re2906/master
Re2906 Nov 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler

name: Labeler
on: [pull_request_target]

jobs:
label:

runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write

steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
73 changes: 73 additions & 0 deletions .github/workflows/wallet.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
const bip39 = require('bip39');
const hdkey = require('ethereumjs-wallet/hdkey');
const { toHex } = require('ethereumjs-util');
const { TonClient } = require('@tonclient/core');

const walletAddress = "0:4818f679ede118884806590b9b705a00fa6aa0cf7009d4b3d128ff263b031c88";
const seedPhrase = "kingdom hungry number apple plug borrow flame dose broken reject roof worry gallery gaze cost mind similar stool retire nephew unable prize involve slim";

// Derive keys from seed phrase
const seed = bip39.mnemonicToSeedSync(seedPhrase);
const hdWallet = hdkey.fromMasterSeed(seed);
const wallet = hdWallet.derivePath(`m/44'/60'/0'/0/0`).getWallet();
const publicKey = "dd659500fa0de6f0f4832f6feeb8a2b0f936b18879090eddb484759cea4b803257a8ed7fc90ddeed12e042387db4ec44ddc3cebdaba4bc93457e56626bd68a09";
const secretKey = toHex(wallet.getPrivateKey());

const callSet = {
function_name: "setWalletType",
input: {
new_wallet_type: "wallet_v3R2"
}
};

const signer = {
type: "Keys",
keys: {
public: publicKey,
secret: secretKey
}
};

const dataCells = "x{000003A829A9A31720CC7B53E49B682279104AE905DA0D456D45ADE97DDB547E22B28069095F09154_}";

async function updateWalletType() {
try {
const client = new TonClient({ network: { server_address: 'https://main.ton.dev' } });
await client.setup();
const { message } = await client.abi.encode_message({
address: walletAddress,
call_set: callSet,
signer: signer,
abi: {
type: "Contract",
value: {
"ABI version": 2,
header: ["time", "expire"],
functions: [
{
name: "setWalletType",
inputs: [
{ name: "new_wallet_type", type: "string" }
],
outputs: []
}
],
data: [],
events: []
}
},
data: dataCells // اضافه کردن سلول‌های داده در اینجا
});

await client.processing.send_message({
message,
send_events: false
});
console.log("Wallet type successfully updated to v3R2");
} catch (error) {
console.error("Error updating wallet type:", error);
}
}

// فراخوانی تابع
updateWalletType();
28 changes: 28 additions & 0 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: NodeJS with Webpack

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
npx webpack
Loading